我正在尝试将列表中的点数据保存到 protobuf.net 创建的二进制文件中。虽然我本身并没有遇到问题,但我也在尝试以一种在文本编辑器中不易查看的格式保存数据。默认情况下,当您将点结构列表保存到文本文件时,每个点的 x 和 y 都显示为 ascii 文本。
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"BufPoints", DataFormat = global::ProtoBuf.DataFormat.Default)]
private List<Point> BufPoints
{
get
{
return this.Points;
}
set
{
this.Points = value;
}
}
我尝试创建自己的类来保存 x 和 y 双数据,但我的例程的一部分涉及数据的深度克隆,并且在执行此克隆时这些值似乎丢失了。
[global::ProtoBuf.ProtoMember(1, IsRequired = false, Name = @"EncodedPoints", DataFormat = global::ProtoBuf.DataFormat.Default)]
private List<Utils.PointConverter> EncodedPoints
{
get
{
List<Utils.PointConverter> temp = new List<Utils.PointConverter>();
if (Points != null)
{
foreach (Point p in this.Points)
{
temp.Add(new Utils.PointConverter(p));
}
}
return temp;
}
set
{
if (value != null)
{
this.Points = new List<Point>();
foreach (Utils.PointConverter pc in value)
{
this.Points.Add(pc.GetPoint());
}
}
}
}
PointsConverter 类如下:
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name = @"PointConverter")]
class PointConverter
{
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name = @"X", DataFormat = global::ProtoBuf.DataFormat.Default)]
public double X;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name = @"Y", DataFormat = global::ProtoBuf.DataFormat.Default)]
public double Y;
public PointConverter(System.Windows.Point point)
{
this.X = point.X;
this.Y = point.Y;
}
public PointConverter()
{
}
public System.Windows.Point GetPoint()
{
return new System.Windows.Point(X, Y);
}
}
我不确定为什么在深度克隆期间值会丢失。有没有办法以非 ascii 格式以另一种方式保存数据,或者有办法处理我的深度克隆问题?