在配置文件中存储决策表的最佳方法是什么?
我希望存储类似于此示例的决策表 http://en.wikipedia.org/ wiki/Decision_table#example 在某种配置文件中,但无法想到干净的格式。
有什么建议吗?
I'm looking to store a decision table similar to this example http://en.wikipedia.org/wiki/Decision_table#example in some sort of config file but can't think of a format that would be clean.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想使用配置文件,您应该编写自己的配置部分。
如何:使用 ConfigurationSection 创建自定义配置部分
If you want to use a config file, you should write your own config section.
How to: Create Custom Configuration Sections Using ConfigurationSection
您还可以制作 Excel 电子表格并将该工作表另存为 XML。解析 Excel XML 格式是合理且可行的,但这实际上取决于您的需求。
You could also make an Excel Spreadsheet and save the sheet as XML. Parsing the Excel XML format is reasonable okay to do, but it really depends on your needs how far you want to go.