You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
460 B
C#

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