Computer >> Máy Tính >  >> Lập trình >> C#

Lấy các loại được lồng trong Loại C # hiện tại

Để lấy các loại được lồng trong Loại hiện tại, mã như sau -

Ví dụ

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 {
      //
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

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 {
      //
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject