Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

รับประเภทที่ซ้อนกันภายใน Type C # ปัจจุบัน


เพื่อให้ได้ประเภทที่ซ้อนอยู่ในประเภทปัจจุบัน รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
public class Demo {
   public static void Main() {
      Type type1 = typeof(Subject);
      try {
         Type[] type2 = type1.GetNestedTypes();
         Console.WriteLine("Nested Types...");
         for (int i = 0; i < type2.Length; i++)
            Console.WriteLine("{0} ", type2[i]);
      }
      catch (ArgumentNullException e) {
         Console.Write("{0}", e.GetType(), e.Message);
      }
   }
}
public class Subject {
   public class BasicSubject {
      //
   }
   public class AdvSubject {
      //
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Reflection;
public class Demo {
   public static void Main() {
      Type type1 = typeof(Subject);
      try {
         Type[] type2 = type1.GetNestedTypes(BindingFlags.Public);
         Console.WriteLine("Nested Types...");
         for (int i = 0; i < type2.Length; i++)
            Console.WriteLine("{0} ", type2[i]);
      }
      catch (ArgumentNullException e) {
         Console.Write("{0}", e.GetType(), e.Message);
      }
   }
}
public class Subject {
   public class BasicSubject {
      //
   }
   public class AdvSubject {
      //
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject