如何使用DataContract将xml输出中的数字序列化为百分比

本文关键字:数字 序列化 百分比 输出 何使用 DataContract xml | 更新日期: 2023-09-27 17:52:44

我想知道我是否可以像ToString那样自定义xml输出。例如,使用%表示输出80%,而不是0.8我还需要稍后对它进行反序列化…

谢谢。

如何使用DataContract将xml输出中的数字序列化为百分比

不要将属性与数字直接序列化。相反,创建一个虚拟字符串属性来格式化和解析数字:

[DataContract]
public class MyClass
{
    // No DataMember attribute here
    public double MyProperty { get; set; }
    // Serialize this property instead
    [DataMember(Name = "MyProperty")]
    private string MyPropertyXml
    {
        get { return MyProperty.ToString("P", CultureInfo.InvariantCulture); }
        set
        {
            if (string.IsNullOrEmpty(value))
            {
                MyProperty = 0;
            }
            else
            {
                string s = value.TrimEnd('%', ' ');
                MyProperty = double.Parse(s, CultureInfo.InvariantCulture) / 100;
            }
        }
    }
}

输出如下:

<?xml version="1.0" encoding="utf-16"?>
<MyClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <MyProperty>42.00 %</MyProperty>
</MyClass>