What's the prefered way to store binary data in .NET?
I've tried this:
byte data __gc [] = __gc new byte [100];
And got this error:
error C2726: '__gc new' may only be used to create an object with managed type
Is there a way to have managed array of bytes?