本文介绍了具有字符串参数的主方法入口点给出“不包含...合适的...入口点".错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么下面的代码块会给出不包含适用于入口点的静态'Main'方法"的编译错误?
Why does the code block below give a compile error of "does not contain a static 'Main' method suitable for an entry point"?
namespace MyConApp
{
class Program
{
static void Main(string args)
{
string tmpString;
tmpString = args;
Console.WriteLine("Hello" + tmpString);
}
}
}
推荐答案
请参见此以了解 Main
方法签名选项.
See this to understand Main
method signature options.
这篇关于具有字符串参数的主方法入口点给出“不包含...合适的...入口点".错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!