2013-05-25 78 views
0

我有代碼反思與子類

public static class A { 
    public static class B { } 
    public static class C { } 
} 

我使用反射類A,找出它包含的子類?如何找出子類?

回答

2

哪些不叫小類嵌套類。看看Type.GetNestedTypes method;這很容易做到。

var nestedTypes=typeof(A).GetNestedTypes();