diff --git a/reflect/Type.cs b/reflect/Type.cs index 3a9613fa..8f8d9c7e 100644 --- a/reflect/Type.cs +++ b/reflect/Type.cs @@ -756,7 +756,8 @@ namespace IKVM.Reflection { foreach (Type type in GetNestedTypes(bindingAttr)) { - if (type.Name == name) + // FXBUG the namespace is ignored + if (type.__Name == name) { return type; }