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
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志