Click here to Skip to main content
16,004,974 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: .NET Languages Pin
J. Dunlap6-Dec-03 9:56
J. Dunlap6-Dec-03 9:56 
GeneralRe: .NET Languages Pin
Colin Angus Mackay7-Dec-03 6:09
Colin Angus Mackay7-Dec-03 6:09 
GeneralRe: .NET Languages Pin
J. Dunlap11-Dec-03 9:58
J. Dunlap11-Dec-03 9:58 
GeneralRe: .NET Languages Pin
Anonymous9-Dec-03 21:33
Anonymous9-Dec-03 21:33 
GeneralRe: .NET Languages Pin
J. Dunlap11-Dec-03 10:00
J. Dunlap11-Dec-03 10:00 
GeneralRe: .NET Languages Pin
eggie527-Dec-03 7:22
eggie527-Dec-03 7:22 
GeneralI need help Pin
LOSTTWARE.com5-Dec-03 13:20
LOSTTWARE.com5-Dec-03 13:20 
GeneralRe: I need help Pin
tbrammer9-Dec-03 2:11
professionaltbrammer9-Dec-03 2:11 
>> I have read an article about the .Net
>> having CVS capability

I don't know about that.

>> I have found that every time I do a search
>> for Visual C++ 7.0, .net comes up.
>> I figure that .net is what came after 6.0

That's right. The current version is .NET 2003, which is also called VC 7.1. VC 7.0 (.NET 2002) is not sold any more.

>> Will I be able to import my incomplete,
>> 6.0 project into .net...

Yes. You can import dsp project files from VC60. .NET will convert them to .vcproj project files without changing your original DSPs.

>> ...with no problems? Will all of the
>> code still function? I am using MFC allot.

Propably NOT. I had to port our C++ application to .NET 2002. The module size is about 10MB, also using much MFC. There are some API changes to .NET. One thing, that took me much time was, that CString is no class anymore but a typedef to a ATL template class. All forward references like
class CString;
that we used in headers had to be removed.
The .NET's compiler is much more restrictive than the VC60's (what is good). You may have to fix some bugs, that passed the VC60 compiler.

The following reflects my personal experience with .NET 2002 and our C++ projects:

Compared to VC60 the .NET IDE is
- unstable (especially the debugger)
- unreliable
- slow
- Resource hungry
- MUCH less user friendly.

In fact the most important functions of the source code browser are gone. You don't get Call Graphs and Class Hierarchies anymore!

I say "unreliable" because .NET seems to forget to recompile sources after header changes. I've lost many hours hunting down bugs, that just disappeared after a complete rebuild.

I'm sure if you have a huge project, you'll cry tears of pain if you have to use .NET 2002. I did. Maybe .NET 2003 is better. Unfortunately I cannot use it.

There are also some improvements in the IDE. The project management is much better, the editor was improved, you can browse over all projects in your workspace... Sure C# and the .NET Framework are great too. But for me, working with .NET on a huge C++ project just S U C K S.

-- Thomas
GeneralRe: I need help Pin
SiddharthAtw12-Dec-03 1:09
SiddharthAtw12-Dec-03 1:09 
GeneralRemoting Port problem Pin
youmesh4-Dec-03 19:08
youmesh4-Dec-03 19:08 
GeneralCombining assemblies Pin
Arash Sabet4-Dec-03 9:06
Arash Sabet4-Dec-03 9:06 
GeneralRe: Combining assemblies Pin
Colin Angus Mackay7-Dec-03 6:12
Colin Angus Mackay7-Dec-03 6:12 
GeneralRe: Combining assemblies Pin
Anonymous7-Dec-03 9:55
Anonymous7-Dec-03 9:55 
GeneralRe: Combining assemblies Pin
Colin Angus Mackay7-Dec-03 13:58
Colin Angus Mackay7-Dec-03 13:58 
GeneralRe: Combining assemblies Pin
Arash Sabet8-Dec-03 2:28
Arash Sabet8-Dec-03 2:28 
GeneralRe: Combining assemblies Pin
Colin Angus Mackay8-Dec-03 3:21
Colin Angus Mackay8-Dec-03 3:21 
GeneralRe: Combining assemblies Pin
Arash Sabet8-Dec-03 4:04
Arash Sabet8-Dec-03 4:04 
GeneralRe: Combining assemblies Pin
Colin Angus Mackay8-Dec-03 4:56
Colin Angus Mackay8-Dec-03 4:56 
GeneralRe: Combining assemblies Pin
Arash Sabet8-Dec-03 5:14
Arash Sabet8-Dec-03 5:14 
GeneralOne more question Pin
Arash Sabet8-Dec-03 5:20
Arash Sabet8-Dec-03 5:20 
GeneralOne more question Pin
Arash Sabet8-Dec-03 5:22
Arash Sabet8-Dec-03 5:22 
GeneralRe: One more question Pin
Colin Angus Mackay8-Dec-03 5:50
Colin Angus Mackay8-Dec-03 5:50 
GeneralRe: One more question Pin
Arash Sabet8-Dec-03 6:18
Arash Sabet8-Dec-03 6:18 
GeneralRe: One more question Pin
Colin Angus Mackay8-Dec-03 6:58
Colin Angus Mackay8-Dec-03 6:58 
GeneralRe: One more question Pin
Arash Sabet8-Dec-03 7:08
Arash Sabet8-Dec-03 7:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.