标签: c# xsd
我正在使用xsd.exe为架构生成一个类。 模式将一个属性定义为xs:unsignedShort。
<xs:attribute name="Number" type="xs:unsignedShort" use="required"/>
在生成的类中,这被定义为一个单字节。
private byte numberField;
我需要从字符串中解析一个数字,并为该字段指定该值。我怎样才能做到这一点?