gpt4 book ai didi

c# - 有没有一种方法可以序列化实现 ICollection 的类的公共(public)属性

转载 作者:行者123 更新时间:2023-11-30 16:17:45 26 4
gpt4 key购买 nike

为了方便起见,我有一个实现 ICollection 的类。当类被序列化为 XML 时,所有公共(public)属性都将被跳过,只有实际的集合被序列化。我从 MSDN 上阅读了以下内容

Classes that implement ICollection or IEnumerable.

  • Only collections are serialized, not public properties.

有没有办法解决这个问题?有没有办法让一个类实现 ICollection 并且仍然会输出公共(public)属性?还是我必须使用 XmlWriter 并自己完成?

以防万一需要示例。

public class Batch: ICollection<Foo>
{
public string Bar { get; set; }

public int Baz { get; set; }

public List<Foo> Foos { get; private set; }

public IEnumerator<Foo> GetEnumerator()
{
return Foos.GetEnumerator();
}

IEnumerator IEnumerable.GetEnumerator()
{
return Foos.GetEnumerator();
}

public void Add(Foo item)
{
Foos.Add(item);
}

public void Clear()
{
Foos.Clear();
}

public bool Contains(Foo item)
{
return Foos.Contains(item);
}

public void CopyTo(Foo[] array, int arrayIndex)
{
Foos.CopyTo(array, arrayIndex);
}

public bool Remove(Foo item)
{
return Foos.Remove(item);
}

public int Count { get { return Foos.Count; } }

public bool IsReadOnly { get { return false; } }
}

之所以这样,是因为在我的代码的另一部分中,我正在处理事物的集合。 IList IList 等 但是对于批处理,存在适用于每个 Foo 的信息,但对于一个特定批处理的每个 foo,该信息都是相同的。就像批处理 ID 或创建日期时间一样。我希望能够在我的代码的某些部分以相同的方式处理我的批处理和我的其他集合,因为我关心的只是一个集合并且有一个计数。我不在乎某些信息与该集合中的每个项目都相同。

我想这样做的原因是为了序列化。我试图删除冗余信息。如果有另一种方法来组织我的类(class),我不会失去那个非常重要的数字,那么我会洗耳恭听。我希望避免创建另一个只包含像这样的简单事物的计数的接口(interface)。这感觉很脏,但它可能是正确的。

最佳答案

不,基本上。这不是 XmlSerializer 独有的 - 框架的大部分将 集合元素 视为互斥的。我的建议是:不要那样做。拥有或者集合xor元素的东西。

这并不意味着必须更改格式 - 您通常可以封装一个列表(而不是一个列表)并使用[XmlElement("someName ")] 得到相同类型的输出,例如:

public class PeopleWrapper
{
[XmlAttribute("someValue")]
public int SomeValue { get; set; }

private readonly List<Person> people = new List<Person>();
[XmlElement("person")]
public List<Person> Items { get { return people; } }
}

那么如果另一个类有:

public PeopleWrapper People { get; set; }

你会在 xml 中得到:

<People someValue="123">
<person>...</person>
<person>...</person>
<person>...</person>
</People>

关于c# - 有没有一种方法可以序列化实现 ICollection 的类的公共(public)属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16810133/

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