gpt4 book ai didi

c# - xsd.exe 自动实现的属性

转载 作者:太空狗 更新时间:2023-10-29 18:25:11 26 4
gpt4 key购买 nike

是否可以强制 xsd.exe 生成自动实现的属性,而不是 xsd.exe 生成的丑陋的手动实现代码?

public abstract partial class SomeClass {

private string valueField;

/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public string Value {
get {
return this.valueField;
}
set {
this.valueField = value;
}
}
}

最佳答案

好像XML Schema Definition Tool (Xsd.exe)不支持生成自动实现的属性。

但还有一个选择:Xsd2Code community edition .来自功能列表:

Support automatic properties when no special get or set is required.

相关回答:XSDObjectGen.exe vs XSD.exe .

关于c# - xsd.exe 自动实现的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17612252/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com