我想封送一个用于P/Invoke的结构,但是这个结构包含一个只与我的托管代码相关的字段,所以我不希望它被封送,因为它不属于本机结构。这有可能吗?我一直在寻找类似于NonSerialized的属性来进行序列化,但它似乎并不存在……
struct MyStructure
{
int foo;
int bar;
[NotMarshaled] // This attribute doesn't exist, but that's the kind of thing I'm looking for...
int ignored;
}
如有任何建议