是否有任何工具可以为 .Net 配置生成强类型类?
我正在寻找一个从 XML 生成强类型类的工具。 我想定义 XML 配置(部分、ConfigurationElements 等),然后生成可以通过 ConfigurationManager 处理我的配置的类。
I'm looking for a tool to generate strongly-typed classes from XML.
I would like to define XML configuration (section, ConfigurationElements etc.) and then generate classes that could handle my configuration through ConfigurationManager.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看.NET 配置代码生成器。它使用所需 XML 的示例来推断配置结构和类型并生成代码。
Take a look at .NET Configuration Code Generator. It uses a sample of the desired XML to infer the configuration structure and types and generate the code.
另一种选择是配置节设计器
Another alternative is Configuration Section Designer