本文介绍了为什么切入点允许为私有?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是如何实际工作?我以为本来是要叫。但如何是可能的,如果它标记为私有?

 公共类节目
{
    私有静态无效的主要()
    {
    }
}
 

解决方案

从乔恩斯基特上bytes.com:

Source

此外,还有另外一个问题覆盖这个话题在这里了。

How does this actually work? I thought Main was supposed to be "called". But how is that possible if it's marked private?

public class Program
{
    private static void Main()
    {
    }
}
解决方案

From Jon Skeet on bytes.com:

Source

Also, there's another question that covers this topic here already.

这篇关于为什么切入点允许为私有?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 00:45