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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/TypeSpec.cs')
-rw-r--r--mcs/class/corlib/System/TypeSpec.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mcs/class/corlib/System/TypeSpec.cs b/mcs/class/corlib/System/TypeSpec.cs
index f233bec088e..4436a77810f 100644
--- a/mcs/class/corlib/System/TypeSpec.cs
+++ b/mcs/class/corlib/System/TypeSpec.cs
@@ -455,7 +455,9 @@ namespace System {
}
if (name_start < pos)
- data.AddName (name.Substring (name_start, pos - name_start));
+ data.AddName (name.Substring (name_start, pos - name_start));
+ else if (name_start == pos)
+ data.AddName (String.Empty);
if (in_modifiers) {
for (; pos < name.Length; ++pos) {