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

Type.GetNestedType() วิธีการใน C #


Type.GetNestedType() วิธีการใน C # ถูกใช้เพื่อรับประเภทของการซ้อนภายในประเภทปัจจุบัน

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public Type GetNestedType (string name);
public abstract Type GetNestedType (string name, System.Reflection.BindingFlags bindingAttr);

ตัวอย่าง

ให้เรามาดูตัวอย่างการใช้งานเมธอด 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 {
      //
   }
}

ผลลัพธ์

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

NestedType = Subject+AdvSubject

ตัวอย่าง

ให้เราดูตัวอย่างอื่นเพื่อนำวิธีการ 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 {
      //
   }
}

ผลลัพธ์

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

System.ArgumentNullException