Gets the types nested within the current Type.
When implemented by a derived class, searches for the types nested within the current Type, using the specified binding constraints.
[Visual Basic] Overloads MustOverride Public Function GetNestedTypes(BindingFlags) As Type ()
[C#] public abstract Type[] GetNestedTypes(BindingFlags);
[C++] public: virtual Type* GetNestedTypes(BindingFlags) [] = 0;
[JScript] public abstract function GetNestedTypes(BindingFlags) : Type[];
Returns all the types nested within the current Type.
[Visual Basic] Overloads Public Function GetNestedTypes() As Type ()
[C#] public Type[] GetNestedTypes();
[C++] public: Type* GetNestedTypes() [];
[JScript] public function GetNestedTypes() : Type[];