Type::GetNestedTypes Method ()
Returns the public types nested in the current Type.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: array<System::Type^>^An array of Type objects representing the public types nested in the current Type (the search is not recursive), or an empty array of type Type if no public types are nested in the current Type.
Implements
_Type::GetNestedTypes()The GetNestedTypes method does not return types in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which types are returned, because that order varies.
Only the public types immediately nested in the current type are returned; the search is not recursive.
The following table shows what members of a base class are returned by the Get methods when reflecting on a type.
Member Type | Static | Non-Static |
|---|---|---|
Constructor | No | No |
Field | No | Yes. A field is always hide-by-name-and-signature. |
Event | Not applicable | The common type system rule is that the inheritance is the same as that of the methods that implement the property. Reflection treats properties as hide-by-name-and-signature. See note 2 below. |
Method | No | Yes. A method (both virtual and non-virtual) can be hide-by-name or hide-by-name-and-signature. |
Nested Type | No | No |
Property | Not applicable | The common type system rule is that the inheritance is the same as that of the methods that implement the property. Reflection treats properties as hide-by-name-and-signature. See note 2 below. |
Hide-by-name-and-signature considers all of the parts of the signature, including custom modifiers, return types, parameter types, sentinels, and unmanaged calling conventions. This is a binary comparison.
For reflection, properties and events are hide-by-name-and-signature. If you have a property with both a get and a set accessor in the base class, but the derived class has only a get accessor, the derived class property hides the base class property, and you will not be able to access the setter on the base class.
Custom attributes are not part of the common type system.
If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the nested types of the class constraint.
If a nested type is generic, this method returns its generic type definition. This is true even if the enclosing generic type is a closed constructed type.
Note |
|---|
If the current Type represents a generic type defined in C#, Visual Basic, or C++, its nested types are all generic even if they have no generic parameters of their own. This is not necessarily true of nested types defined in dynamic assemblies or compiled with the Ilasm.exe (IL Assembler). |
For information on nested generic types, and on constructing nested generic types from their generic type definitions, see MakeGenericType.
The following example defines a nested class and a struct in MyClass, and then obtains objects of the nested types using the type of MyClass.
using namespace System; using namespace System::Reflection; public ref class MyClass { public: ref class NestClass { public: static int myPublicInt = 0; }; ref struct NestStruct { public: static int myPublicInt = 0; }; }; int main() { try { // Get the Type object corresponding to MyClass. Type^ myType = MyClass::typeid; // Get an array of nested type objects in MyClass. array<Type^>^nestType = myType->GetNestedTypes(); Console::WriteLine( "The number of nested types is {0}.", nestType->Length ); System::Collections::IEnumerator^ myEnum = nestType->GetEnumerator(); while ( myEnum->MoveNext() ) { Type^ t = safe_cast<Type^>(myEnum->Current); Console::WriteLine( "Nested type is {0}.", t ); } } catch ( Exception^ e ) { Console::WriteLine( "Error {0}", e->Message ); } }
Available since 1.1
