Click to See Complete Forum and Search --> : vb -> vb.net , vc++ -> ????


babuji
January 20th, 2005, 01:44 PM
Hi

Can anyone tell me the similarities and difference between vc++ and vc++ .net ?

can we call vc++.net is the .NET implementation of vc++ ( like vb -> vb.net) ?

with lot of doubts

babuji

Mutilated1
January 20th, 2005, 04:46 PM
can we call vc++.net is the .NET implementation of vc++ ( like vb -> vb.net) ?


yeah basically thats it

coder0xff
January 21st, 2005, 07:31 PM
I would say the primary difference is that .net implements garbage collection. You can use 'new' to create class instances and the gc mechanism will automatically dispose of them when all the references to it are destroyed or go out of scope. Therefore, typically, you don't have to worry about using delete or tracking down memory leaks. Obviously since it is .Net it uses the windows forms framework.