c#界面问题

前端之家收集整理的这篇文章主要介绍了c#界面问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码
// IMyInterface.cs

namespace InterfaceNamespace
{
    interface IMyInterface
    {
        void MethodToImplement();
    }
}

.

// InterfaceImplementer.cs
class InterfaceImplementer : IMyInterface
{
    void IMyInterface.MethodToImplement()
    {
        Console.WriteLine("MethodToImplement() called.");
    }
}

这段代码编译得很好(为什么?).但是,当我尝试使用它时:

// Main.cs

    static void Main()
    {
        InterfaceImplementer iImp = new InterfaceImplementer();
        iImp.MethodToImplement();
    }

我明白了:

06003

即从外部看不到MethodToImplement.但是,如果我做了以下更改:

// InterfaceImplementer.cs
class InterfaceImplementer : IMyInterface
{

    public void MethodToImplement()
    {
        Console.WriteLine("MethodToImplement() called.");
    }
}

然后Main.cs编译也很好.为什么这两者有区别?

解决方法

implementing an interface explicitly,您正在创建一个只能通过强制转换到接口来调用的私有方法.
原文链接:https://www.f2er.com/csharp/99585.html

猜你在找的C#相关文章