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