c# – XML字符串数组反序列化为不同的类型名称

前端之家收集整理的这篇文章主要介绍了c# – XML字符串数组反序列化为不同的类型名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下C#类属性
private List<string>  _accountTypes;

[XmlArray(ElementName = "accountTypes")]
public List<string> AccountTypes
{
   get { return _accountTypes; }
   set { _accountTypes = value; }
}

在类构造函数中初始化为:

_accountTypes       = new List<string>( new string[] { "OHGEE","OHMY","GOLLY","GOLLYGEE" });

反序列化时,我得到了这个:

<accountTypes>
   <string>OHGEE</string>
   <string>OHMY</string>
   <string>GOLLY</string>
   <string>GOLLYGEE</string>
</accountTypes>

如果我能得到这个,我应该喜欢它:

<accountTypes>
   <accountType>OHGEE</accountType>
   <accountType>OHMY</accountType>
   <accountType>GOLLY</accountType>
   <accountType>GOLLYGEE</accountType>
</accountTypes>

如果不创建“accountType”类型的子类,怎么办呢?是否有任何XML属性属性可用于获取我需要的内容

解决方法

我认为您正在搜索[XmlArrayItem]属性.

试试这个:

[XmlArray(ElementName = "accountTypes")]
[XmlArrayItem("accountType")]
public List<string> AccountTypes
{
   get { return _accountTypes; }
   set { _accountTypes = value; }
}
原文链接:https://www.f2er.com/csharp/244840.html

猜你在找的C#相关文章