返回列表 回复 发帖

关于命名空间的问题

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace namespace1
{
    class Program
    {
        static void Main(string[] args)
        {
            
           using NS1 ;///此处提示出错 ,要求输入“(”及“)”           

           Student student1 = new Student("TOM");
           student1.OutPutName();
           Console.Read();
        }
    }
}
namespace NS1
{
    class Student
    {
        string name;
        public Student(string name)
        {
            this.name = name;
        }
        public void OutPutName()
        {
            Console.WriteLine(this.name);
        }
    };
}
using NS1 ;///此处提示出错 ,要求输入“(”及“)”           
但本句放在程序最前面 与using System;等放在一起 不再报错
using NS1 ;要放在类文件的开头处

即如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
谢谢 老师 新年快乐!
返回列表