在已经具有具有匹配签名的属性索引器的类上实现 IDataErrorInfo

发布于 2024-12-04 07:37:59 字数 140 浏览 1 评论 0原文

我想要一个具有索引器字符串 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒儿 2024-12-11 07:37:59

除了隐式实现接口之外,您还可以通过以下方式显式实现它:

string IDataErrorInfo.this[string key]{get { return [..]; }}

Instead of implicitly implementing the interface you can also implement it explicitly this way:

string IDataErrorInfo.this[string key]{get { return [..]; }}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文