gpt4 book ai didi

c# - 将对象列表保存到 XML 文件并使用 C# 加载该列表的最佳方法是什么?

转载 作者:太空狗 更新时间:2023-10-30 00:46:37 26 4
gpt4 key购买 nike

我的应用程序中有一个“手势”类列表:

List<Gesture> gestures = new List<Gesture>();

这些手势类非常简单:

public class Gesture
{
public String Name { get; set; }
public List<Point> Points { get; set; }
public List<Point> TransformedPoints { get; set; }

public Gesture(List<Point> Points, String Name)
{
this.Points = new List<Point>(Points);
this.Name = Name;
}
}

我希望允许用户既可以将“手势”的当前状态保存到文件中,也可以加载包含手势数据的文件。

在 C# 中执行此操作的标准方法是什么?

我应该使用序列化吗?我应该编写一个类来自己手动编写/读取这个 XML 文件吗?还有其他方法吗?

最佳答案

看看 .net 中的 XmlSerializer 类型和 XmlSerialization

在这里..找到了一个可以满足您要求的示例 http://www.switchonthecode.com/tutorials/csharp-tutorial-xml-serialization

关于c# - 将对象列表保存到 XML 文件并使用 C# 加载该列表的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2695860/

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