小白请教个关于Main方法的问题。
发表在C#图书答疑
2015-04-20
是否精华
是
否
版块置顶:
是
否
书里第二章2.2.4里说一个C#程序中不是只能有一个Main方法么,那么下面这个代码里怎么引用了2个Main方法?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using H1;
namespace Test
{
class Program
{
static void Main(string[] args)
{
A oa = new A();
oa.Myls();
}
}
}
namespace H1
{
class A
{
public void Myls()
{
Console.WriteLine("ABCDEFG");
Console.ReadLine();
}
}
}
我想问的是,第二个namespace里的 public void Myls()不属于Main方法吗?那是什么?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using H1;
namespace Test
{
class Program
{
static void Main(string[] args)
{
A oa = new A();
oa.Myls();
}
}
}
namespace H1
{
class A
{
public void Myls()
{
Console.WriteLine("ABCDEFG");
Console.ReadLine();
}
}
}
我想问的是,第二个namespace里的 public void Myls()不属于Main方法吗?那是什么?