私はこの構造体をC#でマーシャリングしようとしていましたが、最後の2行に問題があります。 typedef struct _modenv_
{
long lMajor; /* major version of kernel */
long lMinor; /* minor version of kernel */
long lRelease; /* rele
私のように定義されたC#コードでオブジェクトを持っているが、以下: class CSObject
{
int length;
int width;
IList<SubItem> Items;
bool OnSale;
ItemType type; //ItemType is an enum
}
Class SubItem
{