using System;
using System.Collections.Generic;
using System.Text;
namespace aa
{
private class Program
{
static void Main(string[] args)
{
Console.WriteLine("123");
}
}
}
类的修饰符包含private,这里怎么编译错误
using System;
using System.Collections.Generic;
using System.Text;
namespace aa
{
private class Program
{
static void Main(string[] args)
{
Console.WriteLine("123");
}
}
}
类的修饰符包含private,这里怎么编译错误
类是不能被定义为私有的
楼上的说的对
改为public就可以了
Main方法不能在私有类中. 可以想象下. Main方法的类都私有化了. 别的类如何访问?
反正我是这么理解的.
private是私有的
改成public 就可以了
Main方法要用public修饰
static void Main(string[] args) 入口的类是不能用private 修饰的
protected protected internal 都不行的