C
ckkwan
Dear All,
I have a C++ structure which is passed in and returned from a DLL.
struct S
{
char A[16];
char B[8];
}
Question:
How can I represents this in a CSharp structure?
Byte Array in CSharp is a reference, I can't have them in the
structure
I have a C++ structure which is passed in and returned from a DLL.
struct S
{
char A[16];
char B[8];
}
Question:
How can I represents this in a CSharp structure?
Byte Array in CSharp is a reference, I can't have them in the
structure