G
Guest
How I define the following C struction in C#
typedef struct _T_Edit
{
char Name[256];
char EditBox[256];
} T_Edit;
the struct member is :
char [256] Name;
char [256] EditBox;
but the typedef ...
typedef struct _T_Edit
{
char Name[256];
char EditBox[256];
} T_Edit;
the struct member is :
char [256] Name;
char [256] EditBox;
but the typedef ...