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

GetNestedType() public method

public GetNestedType ( string name, BindingFlags bindingAttr ) : Type
name string
bindingAttr BindingFlags
return Type
        public Type GetNestedType(string name, BindingFlags bindingAttr)
        {
            foreach (Type type in GetNestedTypes(bindingAttr))
            {
                // FXBUG the namespace is ignored
                if (type.__Name == name)
                {
                    return type;
                }
            }
            return null;
        }

Same methods

Type::GetNestedType ( string name ) : Type