我可以根据用户的输入动态创建一个类吗?
我有一个要求,比如读取 xml 文件并将值存储为对象集合。但 xml 不是预定义的,因此根据 xml 输入,我需要创建该类,以便我可以创建其实例并将其存储为集合。
谢谢...
I've a requirement like to read an xml file and to store the values as a collection of objects. but the xml is not a predifined one, so based on the xml input I need to create the class so that I can create its instance and store it as a collection.
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用c#编译器将文本(当然是c#文本)编译为类并将它们输出到dll文件中。
C# 编译器
You can use the c# compiler to compile text (c# text of course) into classes and output them into a dll file.
C# Compiler