C# 接口
2021-01-29 00:14
标签:oid sem 方法 style sig add color for code C# 接口 标签:oid sem 方法 style sig add color for code 原文地址:https://www.cnblogs.com/enych/p/11871506.html Type helloType = typeof(Hello); //Hello是一个接口
List
public interface Hello
{
void Say();
}
public class A : Hello
{
public void Say()
{
Console.WriteLine("Say Hello to A");
Console.ReadLine();
}
}
public class B : Hello
{
public void Say()
{
Console.WriteLine("Say Hello to B");
Console.ReadLine();
}
}