Phương thức Type.GetNestedTypes () trong C # được sử dụng để lấy các kiểu được lồng trong Kiểu hiện tại.
Cú pháp
Sau đây là cú pháp -
public Type[] GetNestedTypes (); public abstract Type[] GetNestedTypes (System.Reflection.BindingFlags bindingAttr);
Ví dụ
Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức Type.GetNestedTypes () -
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ụ
Bây giờ chúng ta hãy xem một ví dụ khác để triển khai phương thức Type.GetNestedTypes () -
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