using System; namespace InterfaceStudy.App { class Program { static void Main(string[] args) { Console.WriteLine("接口的各种操作!"); } /// /// 隐式实现 /// public static void Test() { } /// /// 显式实现 /// public static void Test2() { } } }