watch out which version of the .NET framework you are using
As you can see at:
http://msdn2.microsoft.com/en-us/lib...orystream.aspx
The are using the caret quite a bit in the .NET FrameWork 3.0.
MemoryStream^ memStream = gcnew MemoryStream( 100 );
However, in .NET Framework 1.1 (for example) you need to use:
MemoryStream* memStream = __gc...
Leave a comment: