C# 中的嵌套命名空間是什麼?

王林
發布: 2023-08-29 10:57:02
轉載
1082 人瀏覽過

C# 中的嵌套命名空间是什么?

命名空間內的命名空間在 C# 中稱為嵌套命名空間。這樣做主要是為了正確建立您的程式碼。

我們有一個外部命名空間-

namespace outer {}
登入後複製

其中,我們在外部命名空間內有一個內部命名空間-

namespace inner {
   public class innerClass {
      public void display() {
         Console.WriteLine("Inner Namespace");
      }
   }

}
登入後複製

現在要呼叫內部命名空間的方法,設定內部類別的類別物件並呼叫該方法,如下例所示-

namespace outer {
   class Program {
      static void Main(string[] args) {
         innerClass cls = new innerClass();
         Console.WriteLine("Welcome!");
         Program.display();
         cls.display();
         Console.ReadLine();
      }

      public static void display() {
         Console.WriteLine("Outer Namespace");
      }
   }

   namespace inner {
      public class innerClass {
         public void display() {
            Console.WriteLine("Inner Namespace");
         }
      }
   }
}
登入後複製

以上是C# 中的嵌套命名空間是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板