using System; namespace ConsoleApp1 { interface IInterface1 { void ft(); } interface IInterface2 { void ft(); } class MyClass : IInterface1, IInterfa.... ...
using System; namespace ConsoleApp1 { interface IInterface1 { void ft(); } interface IInterface2 { void ft(); } class MyClass : IInterface1, IInterface2 { void IInterface1.ft() { Console.WriteLine("1"); } void IInterface2.ft() { Console.WriteLine("2"); } } class Program { static void Main(string[] args) { MyClass myClass = new MyClass(); IInterface1 interface1 = myClass; IInterface2 interface2 = myClass; interface1.ft(); interface2.ft(); } } }