XmlSerializer - There was an error reflecting type

后端 未结 18 1654
借酒劲吻你
借酒劲吻你 2020-11-28 02:46

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passi

18条回答
  •  独厮守ぢ
    2020-11-28 03:29

    [System.Xml.Serialization.XmlElementAttribute("strFieldName", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
    

    Or

    [XmlIgnore]
    string [] strFielsName {get;set;}
    

提交回复
热议问题