码迷,mamicode.com
首页 > 其他好文 > 详细

c#学习6,命名空间

时间:2014-05-17 20:30:00      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   class   c   ext   color   int   

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,命名空间

标签:style   class   c   ext   color   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!