我试过这样的东西:
[NonSerialized] private string _DecodeText; public string DecodeText { get { return _DecodeText; } set { _DecodeText = value; } }
但它不行. “DecodeText”仍然在序列化文件中.我如何防止属性序列化?
@H_502_6@