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

更新于:2019 年 11 月 11 日

已浏览 75 次

开启您的 职业生涯

通过完成课程来获得认证

开始
广告