public class MyClass : IMyInterface (...) { (...) void IMyInterface.DoSomething() { } (...) }
Dieses Konstrukt nennt sich explizite Interface Implementierung. Ein gutes Beispiel & gute Erläuterung findet sich, wie so oft, auf Stackoverflow
public class MyClass : IMyInterface (...) { (...) void IMyInterface.DoSomething() { } (...) }
Dieses Konstrukt nennt sich explizite Interface Implementierung. Ein gutes Beispiel & gute Erläuterung findet sich, wie so oft, auf Stackoverflow