在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
using System; namespace 内部类Demo public static void Test() { Console.WriteLine("我是被内部类调用的外部静态方法"); } public void Test2() {
private string name; private int age; private string sex; public Student() { } this.name = name;
new Program().Test2();//访问外部类非静态成员 (注意)c#内部类只能直接访问外部类的静态成员若要访问非静态成员则需要实例化外部类
|
请发表评论