2004-05-13 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Thu, 13 May 2004 13:59:13 +0000 (13:59 -0000)
committerZoltan Varga <vargaz@gmail.com>
Thu, 13 May 2004 13:59:13 +0000 (13:59 -0000)
* TypeBuilder.cs (ToString): Make this consistent with MS.NET.

svn path=/trunk/mcs/; revision=27265

mcs/class/corlib/System.Reflection.Emit/ChangeLog
mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs

index ce8defbab528a486406c1825296a9c2924af2588..360f823ace56eade1452c68cfaa5a839991e1073 100644 (file)
@@ -3,6 +3,8 @@
        * TypeBuilder.cs MethodBuilder.cs ConstructorBuilder.cs: Implement
        ToString ().
 
+       * TypeBuilder.cs (ToString): Make this consistent with MS.NET.
+
 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
 
        * OpCodes.cs: Refactored to avoid the static constructor
index 407f67575059a316aa40316a47c7e9b1252193ea..2815b2449f69569d3c02c78a913725ae1bec772a 100644 (file)
@@ -1275,7 +1275,7 @@ namespace System.Reflection.Emit {
 
                public override String ToString ()
                {
-                       return "TypeBuilder [" + FullName + "]";
+                       return FullName;
                }
 
 #if NET_2_0 || BOOTSTRAP_NET_2_0