C#嵌套命名空间

using System;
using first_space;
using first_space.second_space;

namespace first_space {

   class abc {

      public void func() {
         Console.WriteLine("Inside first_space");
      }
   }

   namespace second_space {

      class efg {

         public void func() {
            Console.WriteLine("Inside second_space");
         }
      }
   }   
}

class TestClass {

   static void Main(string[] args) {
      abc fc = new abc();
      efg sc = new efg();
      fc.func();
      sc.func();
      Console.ReadKey();
   }
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265831.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论