IronRuby 支持属性吗?
我从谷歌到这个网站到处搜索,但似乎没有答案。有谁知道 IronRuby 是否支持 clr 类属性?如果是,怎么办?
提前致谢。
I searched everywhere from google to this site but seems no answer for it. Does anyone know if IronRuby supports clr class attributes? If yes, how?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前无法在 IronRuby 中应用 CLR 属性。 IronPython 通过其 clrtype 模块实验性地支持它,该模块使用自己的方式 重写 Python 对象的底层 .NET 类。
如果想在 IronRuby 中实现这一点,那将是一项艰巨的任务,但并非不可能。如果有人感兴趣,请在邮件列表上询问以开始使用。
There's no way to apply CLR attributes in IronRuby today. IronPython support it experimentally with its
clrtype
module, which uses its own way of overriding the underlying .NET class for a Python object.If one would want to implement this in IronRuby themselves, it'd be a large undertaking, but not impossible. If anyone is interesting, please ask about it on the mailing list to get started.