开发者

Explicit interface implementation in VB.NET

开发者 https://www.devze.com 2022-12-08 11:08 出处:网络
How to implement explicit inter开发者_运维问答face implementation in VB.NET?As others have said, make the routine private, and it forces clients to call through the interfaces.

How to implement explicit inter开发者_运维问答face implementation in VB.NET?


As others have said, make the routine private, and it forces clients to call through the interfaces.

Just one more word. Explicit interface implementation in C# also allows the programmer to inherit two interfaces that share the same member names and give each interface member a separate implementation. In VB.Net, that's easy, because the implementing methods can have different names from the interface names.

Function ICanUseAnyNameILike() As String Implements IFoo.Bar

Function ItsTotalAnarchy() As String Implements IFoo2.Bar, IFoo3.ItsMadnessReally


Just declare sub/function Private:

Private Function Bar() As String Implements IFoo.Bar


put the method to private.

0

精彩评论

暂无评论...
验证码 换一张
取 消