私はxmlファイルをデシリアライズしようとしています:
<?xml version="1.0" encoding="utf-8"?>
<XmlFile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<OBJECTS ITEM="ItemValue" TABLE_NAME="TableExample">
</OBJECTS>
</XmlFile>
私の逆シリアル化クラスのコードは次のようになります。
[Serializable]
[XmlRoot("XmlFile")]
public class SerializeObject
{
[XmlAttribute("ITEM")]
public string Item { get; set; }
[XmlAttribute("TABLE_NAME")]
public string Table_Name { get; set; }
}
XMLファイルを逆シリアル化しようとすると、常にエラーが発生せず、ItemとTable_Nameがnullに等しくなります。なんで?
リプレイのThx