IKVM.Reflection.Type.GetNestedType C# (CSharp) Method

GetNestedType() public method

public GetNestedType ( string name ) : Type
name string
return Type
        public Type GetNestedType(string name)
        {
            return GetNestedType(name, BindingFlags.Public);
        }

Same methods

Type::GetNestedType ( string name, BindingFlags bindingAttr ) : Type