阅读背景:

如何在python中实现接口?

来源:互联网 
public interface IInterface
{
    void show();
}

 public class MyClass : IInterface
{

    #region IInterface Members

    public void show()
    {
        Console.WriteLine("Hello World!");
    }

    #endregion
}
public interface IInterface
{
    void show();



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: