首页 > 其他 > 详细

c#学习6,命名空间

时间:2014-05-17 20:29:40      阅读:377      评论:0      收藏:0      [点我收藏+]

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using 命名空间.ir;//如果使用的类不在一个namespace,添加using引用
//同一个文件可以不一样的namespace
namespace 命名空间
{
class Program
{
static void Main(string[] args)
{
// Convert.ToInt32();//using system
person p1 = new person();
命名空间.ir.person p2 = new 命名空间.ir.person();//就像文件夹是全部途径
dog d1 = new dog();
ArrayList list = new ArrayList();
}
}
class person
{

}
}

c#学习6,命名空间,布布扣,bubuko.com

c#学习6,命名空间

原文:http://www.cnblogs.com/cyychenyijie/p/3733196.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!