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.Reflection/CustomAttributeData.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/CustomAttributeData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
index c83ffef091a..b12e0a2bfcb 100644
--- a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
+++ b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs
@@ -95,7 +95,7 @@ namespace System.Reflection {
{
StringBuilder sb = new StringBuilder ();
- sb.Append ("[" + ctorInfo.DeclaringType.Name + " (");
+ sb.Append ("[" + ctorInfo.DeclaringType.FullName + "(");
for (int i = 0; i < ctorArgs.Count; i++) {
sb.Append (ctorArgs [i].ToString ());
if (i + 1 < ctorArgs.Count)