• C#如何把XSD中HexBinary类型序列化uint类型


    xml schema中有hexBinary类型, 我们在实现C#的Serialization时,一般默认把hexBinary映射为byte[],但是有些情况我们需要把 hexBinary映射为uint、int等等这样的类型。 这样我们就需要包装下, 如下:

    xml schema中定义ID节点, 类型为hexBinary。我们通过中间byte[] IDBinary转为uint ID, 实际使用中直接使用ID即可。


                   <xs:element name="ID">
                        <xs:simpleType>
                             <xs:restriction base="xs:hexBinary">
                                  <xs:length value="4"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>

            [XmlIgnore()]
            public uint ID
            {
                get;
                set;
            }

            [XmlElement("ID", DataType = "hexBinary")]
            public byte[] IDBinary
            {
                get
                {
                    return BitConverter.GetBytes(ID).Reverse().ToArray();
                }
                set
                {
                    ID = BitConverter.ToUInt32(value.Reverse().ToArray(), 0);
                }
            }
  • 相关阅读:
    Linux系统下公式编辑器KLatexFormula
    C++11 std::chrono库详解
    Direct Visual-Inertial Odometry with Stereo Cameras
    改变机器人的初始位姿,让机器人的初始位置不在地图的原点处
    ubuntu为文件添加可执行权限
    oracle的启动和停用
    orcale创建用户、授权
    手工配置oracle数据库
    MySQL存储过程详解 mysql 存储过程
    mysql的navicat执行存储过程
  • 原文地址:https://www.cnblogs.com/muzizongheng/p/3169810.html
Copyright © 2020-2023  润新知