P
Peter Oliphant
While it does look like 2005 does use a better syntax in general for garbage
collection than 2003, here is something I think went the other way. arrays.
Do people really think that:
array<MyClass ^> ^ MyArray = gcnew array<MyClass ^>(100);
is a better syntax than:
MyClass* MyArray __gc [] = new MyClass* __gc [100] ;
[==P==]
collection than 2003, here is something I think went the other way. arrays.
Do people really think that:
array<MyClass ^> ^ MyArray = gcnew array<MyClass ^>(100);
is a better syntax than:
MyClass* MyArray __gc [] = new MyClass* __gc [100] ;
[==P==]