Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 Type.GetNestedTypes() 메서드

<시간/>

C#의 Type.GetNestedTypes() 메서드는 현재 Type 내에 중첩된 형식을 가져오는 데 사용됩니다.

구문

다음은 구문입니다 -

public Type[] GetNestedTypes ();
public abstract Type[] GetNestedTypes (System.Reflection.BindingFlags bindingAttr);

예시

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

출력

이것은 다음과 같은 출력을 생성합니다 -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject

예시

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

출력

이것은 다음과 같은 출력을 생성합니다 -

Nested Types...
Subject+BasicSubject
Subject+AdvSubject