我使用XSDObjectGen.exe工具从xsd文件自动生成了一些类。我的类包含额外的公共变量,使用前导下划线命名,我无法弄清楚原因。
以下是xsd文件中的示例:
<xs:attribute name="Fare" type="xs:int" use="required">
<xs:annotation>
<xs:documentation>The fare price in pence</xs:documentation>
</xs:annotation>
</xs:attribute>
相应的自动生成的C#代码是:
[XmlAttribute(AttributeName = "Fare", DataType = "int")]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public int __Fare;
[XmlIgnore]
[EditorBrowsable(EditorBrowsableState.Advanced)]
public bool __FareSpecified;
[XmlIgnore]
public int Fare
{
get { return __Fare; }
set { __Fare = value; __FareSpecified = true; }
}
我理解所有这些代码,包括属性。但是,我不明白为什么它已经以这种方式实现。
__Fare
而不是Fare
属性?在这种情况下,__Fare
变量将是私有的(并重命名为_fare
),或者可以使用自动属性。__FareSpecified
变量的目的是什么?我们的感觉是__
- 前缀变量只会给使用这些类的开发人员带来不便,所以计划重写如下:
[XmlAttribute(AttributeName = "Fare", DataType = "int")]
public int Fare{ get; set;}
甚至只是:
[XmlAttribute]
public int Fare{ get; set;}
任何人都可以了解__
- 前缀变量背后的基本原理吗?
请注意,我们的xsd文件预计不会经常更改,因此我们重新自动生成这些类的能力并不重要。
我在这里与团队进行了双重检查,这个源代码实际上是使用XSDObjectGen.exe生成的,而不是我原先说的xsd.exe。
答案 0 :(得分:1)