mark vanzuela
mark vanzuela

Reputation: 1391

Explicit interface implementation in VB.NET

How to implement explicit interface implementation in VB.NET?

Upvotes: 14

Views: 4284

Answers (3)

MarkJ
MarkJ

Reputation: 30398

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

Upvotes: 23

Anton Gogolev
Anton Gogolev

Reputation: 115751

Just declare sub/function Private:

Private Function Bar() As String Implements IFoo.Bar

Upvotes: 12

daxsorbito
daxsorbito

Reputation: 1810

put the method to private.

Upvotes: 11

Related Questions