I´m just wondering what´s going wrong in the following conversion:
Byte var1[] to array< Byte >^var1
It works.
Byte var2 __nogc [10] to array< Byte >^ var2
It fails.
Cheers
Printable View
I´m just wondering what´s going wrong in the following conversion:
Byte var1[] to array< Byte >^var1
It works.
Byte var2 __nogc [10] to array< Byte >^ var2
It fails.
Cheers
__nogc belongs to old Managed C++ syntax. Other code is in new syntax. Maybe you can post your actual code and describe exactly whay is the problem?