gpt4 book ai didi

c# - XML反序列化得到空值

转载 作者:数据小太阳 更新时间:2023-10-29 02:06:56 25 4
gpt4 key购买 nike

我有一个xml,我需要序列化。

<Configuration>   
<Configs>
<tester>
<test>gabc</test>
<test>def</test>
</tester>
</Configs>
</Configuration>

这是使用的类。

public class Configuration
{
public tester Configs{ get; set; }
}

public class tester
{
// The web site name
public string[] test{ get; set; }
}

Configuration obj = new Configuration();
XmlSerializer mySerializer = new XmlSerializer(typeof(Configuration));
FileStream myFileStream = new FileStream(SettingsFile, FileMode.Open);
obj = (Configuration)mySerializer.Deserialize(myFileStream);
myFileStream.Close();

我得到的 obj.configs.test 为空。

如何获取测试节点中使用的值?

最佳答案

您需要指定 XmlArrayXmlArrayItem

public class tester
{
//The web site name
[XmlArray("tester")]
[XmlArrayItem("test")]
public string[] test { get; set; }
}

关于c# - XML反序列化得到空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8926422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com