B
Bill
Can someone tell me how to get the below code working please.
System::Byte * enced = new byte[Data->Length];
///.. copy data in to array. (omitted)...
//Now pass to memory stream constructor
MemoryStream * ms = new MemoryStream(enced );
I get an error
cannot convert parameter 1 from 'unsigned char __gc *' to 'int'
System::Byte * enced = new byte[Data->Length];
///.. copy data in to array. (omitted)...
//Now pass to memory stream constructor
MemoryStream * ms = new MemoryStream(enced );
I get an error
cannot convert parameter 1 from 'unsigned char __gc *' to 'int'