c# 接口相同方法申明使用
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(); } } }
从此山高路远,纵马扬鞭。愿往后旅途,三冬暖,春不寒,天黑有灯,下雨有伞。此生尽兴,不负勇往。