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

Phương thức Type.GetNestedType () trong C #

Phương thức Type.GetNestedType () trong C # được sử dụng để lấy một kiểu cụ thể lồng trong Kiểu hiện tại.

Cú pháp

Sau đây là cú pháp -

public Type GetNestedType (string name);
public abstract Type GetNestedType (string name, 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.GetNestedType () -

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(Subject);
      try {
         Type type2 = type1.GetNestedType("AdvSubject");
         Console.Write("NestedType = "+ type2);
      }
      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 -

NestedType = 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.GetNestedType () -

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(Subject);
      try {
         Type type2 = type1.GetNestedType(null);
         Console.Write("NestedType = "+ type2);
      }
      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 -

System.ArgumentNullException