对于有backing字段的属性可以在字段上用这个属性,是不是如果想让它不能被序列化就不能用自动属性了?
//Attribute 'NonSerialized' is not valid on this declaration type. It is only valid on 'field' declarations.
        [NonSerialized]
        public string PlanOrders
        {
            get;
            set;
        }