2007-10-25 Lluis Sanchez Gual <lluis@novell.com>
[mono.git] / mcs / class / corlib / System / ChangeLog
index e133dc1b49970a4b2170ab25637508e62a306c8b..a350c04bb7f9710de7502be0b7a58543bdf9a113 100644 (file)
@@ -1,3 +1,57 @@
+2007-10-25  Lluis Sanchez Gual  <lluis@novell.com>
+
+       * AppDomain.cs: In DefaultDomain, wrap the returned domain with
+       a proxy if the current domain is not the root domain.
+
+2007-10-24  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Type.cs : implemented ReflectionOnlyGetType().
+
+2007-10-19  Zoltan Varga  <vargaz@gmail.com>
+
+       * AppDomain.cs: Add NET 3.5 DefineDynamicAssembly () overloads.
+
+2007-10-13  Zoltan Varga  <vargaz@gmail.com>
+
+       * Delegate.cs (CreateDelegate): Allow binding instance methods to 
+       delegates with an extra argument, a NET 2.0 feature. Fixes #333647.
+
+Fri Oct 12 08:11:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
+
+       * String.cs: reverted unapproved patch that breaks the build.
+
+2007-10-11  Joel Reed  <joelwreed@comcast.com>
+
+       * String.cs: fix String.Split(char[],int,StringSplitOptions)
+       with StringSplitOptions.RemoveEmptyEntries option. The correct 
+       behavior is to remove empty entries while the string is being split, 
+       and always return the maximum number of elements possible.
+       Patch from: Tyler Larson <mono-devel@tlarson.com>
+       
+2007-09-28  Jb Evain  <jbevain@novell.com>
+
+       * Object.cs: Make ToString return Type.ToString ()
+       by default instead of Type.FullName to match .net
+       behavior. Fix #329419.
+
+2007-09-28  William Holmes  <billholmes54@gmail.com>
+
+       * DateTime.cs: Check for AssumeUniversal when parsing string.
+        Fixes bug #324845
+
+2007-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * Enum.cs: Use regular single quotes in exception message.
+
+2007-09-14  Paolo Molaro <lupus@ximian.com>
+
+       * String.cs: implemented all the string ctors using CreateString
+       methods, so they can run completely in managed code.
+
+2007-09-13  Marek Safar  <marek.safar@gmail.com>
+
+       * DateTimeOffset.cs: Implemented few properties.
+
 2007-09-13  Atsushi Enomoto  <atsushi@ximian.com>
 
        * Decimal.cs, Math.cs : implemented midpoint rounding.