T
Tony Johansson
Hi!
How should I understand this with MarshalAs in this example ?
static extern void
GetSystemTime([MarshalAs(UnmanagedType.LPStruct)]MySystemTime st);
Is it correct to understand it in this way. When the managed code is excuted
we have type MySystemTime
but when the unmanaged type is called the type is changed to be LPStruct.
//Tony
How should I understand this with MarshalAs in this example ?
static extern void
GetSystemTime([MarshalAs(UnmanagedType.LPStruct)]MySystemTime st);
Is it correct to understand it in this way. When the managed code is excuted
we have type MySystemTime
but when the unmanaged type is called the type is changed to be LPStruct.
//Tony