Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-01-12 16:17:00 +0300
committerjfrijters <jfrijters>2011-01-12 16:17:00 +0300
commit48bc7ccc6c2459909dd6bc01f17b2c5d4402f6df (patch)
tree8ea3a41f3b8a860252f1fc2cd3169896fa14e158 /reflect/Reader
parent87e866af58388b046a79bb82c16af5ab7a331949 (diff)
Fix. Namespace property should not returned escaped string.
Diffstat (limited to 'reflect/Reader')
-rw-r--r--reflect/Reader/TypeDefImpl.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/reflect/Reader/TypeDefImpl.cs b/reflect/Reader/TypeDefImpl.cs
index ec6aba1b..42313b8d 100644
--- a/reflect/Reader/TypeDefImpl.cs
+++ b/reflect/Reader/TypeDefImpl.cs
@@ -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