在已经具有具有匹配签名的属性索引器的类上实现 IDataErrorInfo
我想要一个具有索引器字符串 this[string propertyName] 的类。这将访问可与类一起序列化的字典,以允许动态属性。此外,我想实现 IDataErrorInfo 以允许针对这些属性进行验证。
问题是他们有匹配的签名。我能做些什么吗?
I want a class that has an indexer string this[string propertyName]. This will access a dictionary that is serializable with the class to allow for dynamic properties. In addition, I want to implement IDataErrorInfo to allow for validation against those properties.
The problem is that they have matching signatures. Is there anything I can do about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了隐式实现接口之外,您还可以通过以下方式显式实现它:
Instead of implicitly implementing the interface you can also implement it explicitly this way: