指定一个变量实现.net中的2个接口
是否可以在 .net 中实现具有 2 个接口的类型说明符?像这样的东西:
Public Sub New(obj as ICollection and INotifyCollectionChanged)
''Initialize Code
End Sub
Is is possible to implement a type specifier with 2 interfaces in .net? Something like:
Public Sub New(obj as ICollection and INotifyCollectionChanged)
''Initialize Code
End Sub
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,您必须定义一个继承自您所需的两个接口的接口。
No, you will have to define an interface that inherits from both of your desired interfaces.
您可以使用通用约束;例如在 C# 中:
只有当
value
被输入为同时实现IFoo
和IBar< 的东西时,
Something(value)
才会起作用。 /代码>。You can with generic constraints; for example in c#:
Then
Something(value)
will work only whenvalue
is typed as something that implements bothIFoo
andIBar
.