2008-06-07 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / System / ChangeLog
index a6c786c68e7f515e33ce1e26057a99310ec9848d..aaba19c91fa29073eec8eb8c186c998cc6f264b3 100644 (file)
@@ -1,6 +1,161 @@
+2008-06-07  Zoltan Varga  <vargaz@gmail.com>
+
+       * Environment.cs: Bump corlib version.
+
+2008-06-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Managed replacement for Replace method ;)
+
+2008-06-03  Zoltan Varga  <vargaz@gmail.com>
+
+       * Decimal.cs (Divide): Move expensive equality checks to unmanaged code.
+
+2008-06-02  Ivan N. Zlatev  <contact@i-nz.net>
+
+       * MonoType.cs: For property reflection we should strictly match the return 
+       type if available.
+
+2008-06-01  Juraj Skripsky  <js@hotfeet.ch>
+
+       * String.cs (Substring): Blocking bug #395904 has been fixed,
+       re-enable optimization.
+
+2008-06-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Replace Split IndexOf
+
+2008-05-30  Marek Safar  <marek.safar@gmail.com>
+
+       * Array.cs (IndexOf): Use an array element comparer instead of tested value
+       comparer.
+
+2008-05-28  Zoltan Varga  <vargaz@gmail.com>
+
+       * Console.cs (.cctor): Make sdout synchronized in the console case too.
+       Fixes #395069.
+
+2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
+
+       * NumberFormatter.jvm.cs: Fix tables to avoid arithemtic overflow
+         in Double.ToString as exposed by Bug #383531.
+
+2008-05-24  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * String.cs: Comment out 2.0 compatibility fix for SubString, since it
+       causes regressions in System.Xml.
+
+2008-05-24  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * String.cs: Changed exception to match MS. Fixed ToCharArray to use
+       startindex for source. In PadLeft and PadRight, only return current
+       string if totalWidth is less than length.
+
+2008-05-24 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
+
+       * Enum.cs: use Array.BinarySearch on the values in IsDefined and
+       GetName instead of looping through the list. Made the cache in
+       MonoEnumInfo thread static to avoid contention.
+
+2008-05-20  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Replace Split function
+
+2008-05-19  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * Boolean.cs,
+       * Double.cs,
+       * Enum.cs,
+       * Int64.cs,
+       * Single.cs,
+       * UInt32.cs,
+       * UInt64.cs: Avoid unboxing primitive types more than one time.
+       [Found using Gendarme]
+
+2008-05-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Update Trim functions
+
+2008-05-19  Zoltan Varga  <vargaz@gmail.com>
+
+       * ConsoleDriver.cs: Avoid initializing the three driver classes when only one
+       is needed.
+
+2008-05-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Update Join and Pad functions
+
+2008-05-18  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * Environment.cs: Use String.IsNullOrEmpty inside 2.0 code.
+       [Found using Gendarme]
+
+2008-05-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Directly create charenumerator
+
+2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * String.cs: Resubmit uncritical parts of String patch
+
+2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * DateTime.cs: Fix parameter names
+
+2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Decimal.cs: Fix parameter names
+
+2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Decimal.cs: Tabbify/Format
+
+2008-05-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Version.cs
+         UnhandledExceptionEventHandler.cs
+         UInt64.cs
+         UInt32.cs
+         UInt16.cs: Fix parameter names
+         Type.cs: Fix parameter names, formatting
+         TimeSpan.cs
+         StringComparer.cs
+         Single.cs
+         SByte.cs: Fix parameter names
+
+2008-05-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Double.cs
+         Enum.cs
+         Exception.cs
+         IComparable.cs
+         IEquatable.cs
+         IFormatProvider.cs
+         IFormattable.cs
+         InsufficientMemoryException.cs: Fix parameter names
+
+2008-05-14  Jb Evain  <jbevain@novell.com>
+
+       * Exception.cs (ToString): output a new line before the 
+       inner exception separator. Fixes #390150.
+
+2008-05-12  Gert Driesen  <drieseng@users.sourceforge.net>
+
+       * Type.cs: Modifies exceptions to match MS. Changed GetTypeFromHandle
+       on 1.0 profile to throw ArgumentException when handle is invalid,
+
+2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * Activator.cs (CreateInstance): Check for null types when creating
+       the error message.
+
+2008-05-07  Robert Jordan  <robertj@gmx.net>
+
+       * RuntimeFieldHandle.cs, RuntimeTypeHandle.cs, RuntimeMethodHandle.cs:
+       Don't try to serialize uninitialized handles. Fixes #386641.
+
 2008-05-06  Marek Safar  <marek.safar@gmail.com>
 
-       * IntPtr.cs (eplicit long): Uses ToInt64.
+       * IntPtr.cs (eplicit long, GetObjectData): Use ToInt64.
 
 2008-05-05  Zoltan Varga  <vargaz@gmail.com>