我将动态属性名称及其类型存储在字典中,如何在 silverlight 中动态构建一个类?
我有一个在运行时填充的动态字典,
Dictionary
(其中 string 将具有属性名称,而 Type 将具有属性的类型)现在我想生成一个类除此之外,
我如何在 silverlight 中实现它?
I have a dynamic Dictionary that gets filled at run time,
Dictionary<string, Type>
(where string will have the property name and Type will have the type of the property ) now i want to generate a class out of it,
how do i achieve it in silverlight?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信你可以在运行时执行此操作(生成一个类),你可以做的是利用 ExpandoObject 在 .net 4.0 中可用。
I don't believe you can do this at runtime (generate a class), what you could do is make use of the ExpandoObject available in .net 4.0.