Fix. Namespace property should not returned escaped string.

This commit is contained in:
jfrijters 2011-01-12 13:17:00 +00:00
Родитель 87e866af58
Коммит 48bc7ccc6c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,5 @@
/*
Copyright (C) 2009 Jeroen Frijters
Copyright (C) 2009-2011 Jeroen Frijters
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@ -42,7 +42,7 @@ namespace IKVM.Reflection.Reader
this.module = module;
this.index = index;
this.typeName = TypeNameParser.Escape(module.GetString(module.TypeDef.records[index].TypeName));
this.typeNamespace = TypeNameParser.Escape(module.GetString(module.TypeDef.records[index].TypeNamespace));
this.typeNamespace = module.GetString(module.TypeDef.records[index].TypeNamespace);
}
public override Type BaseType