提问人:Mads Beersen 提问时间:11/16/2023 最后编辑:Mads Beersen 更新时间:11/17/2023 访问量:91
为什么可以在接口 C# 中制作默认的静态方法?[关闭]
Why is it possible to make default static methods in interface C#? [closed]
问:
为什么可以只制作默认方法?什么时候添加的?static
interface MyInterface
{
public static void Kill()
{
Console.WriteLine("jumping");
}
}
我切换了语言版本,但意识到它不是 C# 11 的一部分。在互联网上也找不到任何东西,包括 Microsoft 文档。在 C# 8.0 中也没有发现任何关于它的内容,也许包含了这种能力。
答: 暂无答案
评论