标题:
关于命名空间的问题
[打印本页]
作者:
bool_sir
时间:
2011-1-15 21:20
标题:
关于命名空间的问题
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);
}
};
}
作者:
bool_sir
时间:
2011-1-15 21:26
using NS1 ;///此处提示出错 ,要求输入“(”及“)”
但本句放在程序最前面 与using System;等放在一起 不再报错
作者:
dorient
时间:
2011-1-30 14:03
using NS1 ;要放在类文件的开头处
即如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
作者:
bool_sir
时间:
2011-2-9 14:01
谢谢 老师 新年快乐!
欢迎光临 万卷图书 (http://wanjuanchina.net/)
Powered by Discuz! 7.0.0