指定一个变量实现.net中的2个接口

发布于 2024-10-21 23:16:45 字数 163 浏览 3 评论 0原文

是否可以在 .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 技术交流群。

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

发布评论

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

评论(2

转角预定愛 2024-10-28 23:16:45

不,您必须定义一个继承自您所需的两个接口的接口。

Public Interface IMyCombinedInterface
    Inherits IColllection, INotifyCollectionChanged

End Interface

No, you will have to define an interface that inherits from both of your desired interfaces.

Public Interface IMyCombinedInterface
    Inherits IColllection, INotifyCollectionChanged

End Interface
記憶穿過時間隧道 2024-10-28 23:16:45

您可以使用通用约束;例如在 C# 中:

public void Something<T>(T obj)
    where T : IFoo, IBar
{....}

只有当 value 被输入为同时实现 IFooIBar< 的东西时,Something(value) 才会起作用。 /代码>。

You can with generic constraints; for example in c#:

public void Something<T>(T obj)
    where T : IFoo, IBar
{....}

Then Something(value) will work only when value is typed as something that implements both IFoo and IBar.

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