using System; using System.Collections.Generic; using System.Linq; using System.Text; using x类和方法_19_4_9; namespace 命名空间 { class Program { static void Main(string[] args) { //namespace开头的是命名空间,是组织类的,逻辑分组,有条理的结构 //在不同的命名空间中互相引用 //步骤:1.在现有的命名空间上添加引用(解决方案资源管理器右键命名空间) //2.用using命名打开所引用的命名空间 //3.引用的格式:命名空间.类----使得不同的命名空间里,有相同名字的类 x类和方法_19_4_9.stu a = new x类和方法_19_4_9.stu(); a.print(); //停止看结果 Console.ReadLine(); } } }
标签:19,System,空间,引用,命名,using From: https://www.cnblogs.com/bky-wang/p/18124636