2006-10-20 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / class / corlib / System / ChangeLog
blob7676f1a2de8909dea7983aee1d59f8dced6cdfae
1 2006-10-20  Jonathan Chambers  <joncham@gmail.com>
3         * Variant.cs: Add support for bool and interfaces.
4         
5 2006-10-18  Kornél Pál  <kornelpal@gmail.com>
7         * Type.cs: Removed is_subtype_of because IsSubclassOf should be used
8           that is public and virtual. IsClass: Checking for ValueType is
9           unnecessary. IsEnum: UnderlyingSystemType is not used anymore so
10           no EnumBuilder hack is necessary. Checking for Enum is
11           unnecessary. IsSerializable: Walk BaseType for user defined types.
12           IsSubclassOf: Walk BaseType for user defined types.
14         * MonoType.cs: IsValueTypeImpl is unnecessary. IsSubclassOf: Unlike
15           Type system types throw ArgumentNullException on null Type
16           argument.
18 2006-10-14  Gert Driesen  <drieseng@users.sourceforge.net>
20         * BadImageFormatException.cs: Changed message for default ctor to
21         match MS. Use internal message field of Exception to check whether
22         Message is null. Match MS default messages when no message is 
23         set. Fixed ToString to match MS.
25 2006-10-09  Miguel de Icaza  <miguel@novell.com>
27         * Environment.cs: Handle SpecialFolder.MyMusic
29 2006-10-07 Gert Driesen <drieseng@users.sourceforge.net>
31         * Enum.cs: Use different exception message depending on whether the
32         type of the passed in value is an Enum or not. Avoid looking up the
33         enum's underlying type twice in case of "D" or "d" format specifier.
35 2006-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
37         * TermInfoDriver.cs: don't allow backspace if we're at the beginning
38         position for a ReadLine.
40 2006-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
42         * TermInfoDriver.cs: ironpython autocompletion works now.
44 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
46         * Console.cs: avoid casting on windows.
48 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
50         * ConsoleDriver.cs:
51         * TermInfoDriver.cs:
52         * IConsoleDriver.cs:
53         * CStreamWriter.cs:
54         * ConsoleKeyInfo.cs:
55         * NullConsoleDriver.cs:
56         * Console.cs:
57         * CStreamReader.cs:
58         * WindowsConsoleDriver.cs: initial changes to handle cursor position
59         and screen buffers.
61 2006-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
63         * ArithmeticException.cs: Modified default message to match MS, to
64         ensure a local regression test passes on both Mono and .NET.
66 2006-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
68         * Exception.cs: Marked message internal to allow derived classes to
69         access the raw message (without changing the public API).
71 2006-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
73         * ConsoleDriver.cs:
74         * TermInfoDriver.cs:
75         * IConsoleDriver.cs:
76         * Console.cs:
77         * WindowsConsoleDriver.cs: don't switch to the alternate window.
78         Trigger the cancel event. Retrieve the cursor position at the
79         beginning, as we're going to keep track of it instead of querying it
80         all the time.
82 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
84         * Environment.cs (ProcessorCount): Implement as icall.
85         Patch by Jason McFall.
87 2006-09-05  Raja R Harinath  <rharinath@novell.com>
89         * DateTime.cs (Today) [NET_2_0]: Set kind to Local.
91 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
93         * Enum.cs (Equals): Use the generic Equals implementation from ValueType which
94         is faster and avoids allocations.
96 2006-09-01  Martin Baulig  <martin@ximian.com>
98         * Array.cs (Array.InternalArray): Removed the helper class;
99         instead we use private generic methods in System.Array which are
100         inserted into the vtable at runtime.
102 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
104         * ConsoleCancelEventArgs.cs: fix my build.
106 2006-08-22  Miguel de Icaza  <miguel@novell.com>
108         * MulticastDelegate.cs: Make DynamicInvokeImpl internal in 2.0 
110         * Converter.cs: update signature to final.
112         * ModuleHandle.cs: Removed the [Obsolete] flags as they removed
113         those in the final 2.0
115         * DateTime.cs: Fixed the signature. 
117         * Convert.cs: Removed API calls that were deprecated in final 2.0
119         * Enum.cs: Updated to use the obsoletes flagged in 2.0.
121         * ConsoleCancelEventArgs.cs: Updated to 2.0
123 2006-08-19  Miguel de Icaza  <miguel@novell.com>
125         * Attribute.cs: This needs to do a deep compare, not a shallow
126         one.   Ran into this bug with the VBNC compiler that compares two
127         separate attributes for equality using this.
129         * String.cs (StartsWith): Fix the overloaded constructor that
130         takes a CultureInfo, if that is null, it means to use the current
131         culture. 
133         * TermInfoDriver.cs: Do not throw exceptions on the driver for
134         SetWindowSize and SetWindowPosition, they can be treated as nops.
136 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
138         * *.cs: Use String.Empty instead of "" in a lot of places.
140 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
142         * DateTime.cs: Remove last patch to DateTime as the fix wasn't correct
143         and made most x.509 unit tests fails. However the original problem is 
144         back (only on 2.0).
146 2006-08-14  Raja R Harinath  <rharinath@novell.com>
148         Fix #78943
149         * Activator.cs (CreateInstance): Throw ArgumentException on open
150         generic types.
152 2006-08-14  Miguel de Icaza  <miguel@novell.com>
154         * MonoType.cs: Do the argument testinf for SetField later,
155         otherwise the implicit (and not documented, but already considered
156         side effect of checking SetProperty) did not work.
158         Bug fix #79023
160 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
162         * String.cs : Normalize() and IsNormalized() implementation.
164 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
166         * __ComObject.cs: Added defintion of IDispatch interface, and
167         property. Get CLSID of supertype for creation if class not
168         ComImport attributed (allows for inheritance of RCW).
169         * MonoType.cs: Implement IsCOMObjectImpl.
171 2006-08-09  Atsushi Enomoto  <atsushi@ximian.com>
173         * DateTime.cs : fixed X509Certificate() case that regressed only
174           under NET_2_0.
176 2006-08-07  Kornél Pál  <kornelpal@gmail.com>
178         * Console.cs: Use correct code pages on Windows and initialize
179           InputEncoding and OutputEncoding to the actual encodings used.
181 2006-08-05  Duncan Mak  <duncan@novell.com>
183         * Char.cs (TryParse): Implemented missing 2.0 method, which fixed
184         bug #79007.
186 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
188         * __ComObject.cs: Added support for marshalling objects.
189         
190 2006-07-24  Atsushi Enomoto  <atsushi@ximian.com>
192         * Char.cs : implemented utf32 conversion methods thus fixed bug #78856.
194 2006-07-19  John Luke  <john.luke@gmail.com>
196         * TermInfoDriver.cs: switch order of alt and control when
197         calling new ConsoleKeyInfo()
199 2006-07-19  Kornél Pál  <kornelpal@gmail.com>
201         * String.cs: Improve CreateString () performance when length is zero.
203 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
205         * String.cs: Added CreateString () methods. Constructors with matching
206           argument list are redirected to these methods that improves
207           performance as well as fixes bug #78703.
209 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
211         * __ComObject.cs: Begin implementing COM Interop.
212         * Environment.cs: Increment corlib version.
213         
214 2006-07-12  Zoltan Varga  <vargaz@gmail.com>
216         * Delegate.cs (DynamicInvokeImpl): Add support for bound delegates in Net 2.0.
218 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
220         * Double.cs (Parse): Fix handling of inner whitespace.
222 2006-07-09  Zoltan Varga  <vargaz@gmail.com>
224         * Int32.cs: Fix a warning.
226 2006-07-07  Atsushi Enomoto  <atsushi@ximian.com>
228         * TimeZone.cs : consider DateTimeKind in ToLocalTime() and 
229           ToUniversalTime(). Fixed bug #78784. Patch by Thong Nguyen.
230         * DateTime.cs : DateTimeKind for UtcNow should be Utc.
232 2006-06-28  Kornél Pál  <kornelpal@gmail.com>
234         * Char.cs: Implemented IsHighSurrogate and IsLowSurrogate methods.
236 2006-06-27  Atsushi Enomoto  <atsushi@ximian.com>
238         * Double.cs : don't throw Exception in TryParse() for 'E'.
239           Fixed bug #78546.
241 2006-06-20  Jb Evain  <jbevain@gmail.com>
243         * Math.cs: implement Math.Truncate.
245 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
247         * DateTime.cs :
248           Another lame win32 dependent pattern. Fixed bug #78618.
250 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
252         * Environment.cs: Implement Set/GetEnvironmentVariable for User/Machine.        
254 2006-06-07  Kornél Pál  <kornelpal@gmail.com>
256         * Environment.cs: Use Consts.FxFileVersion for Environment.Version
257           as Consts.RuntimeVersion was removed.
259 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
261         * Variant.cs: Added.
262         * Environment.cs: Incremented corlib version since adding Variant.      
263         
264 2006-06-01  Raja R Harinath  <rharinath@novell.com>
266         * Nullable.cs (operator==, operator!=): Remove.
268 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
270         * MonoDummy.cs: Removed as it is no longer needed.
272         * Environment.cs: Bump corlib version.
273         
274         * Environment.cs: Revert the last change.
275         
276         * Environment.cs: Bump corlib version.
278         * MonoAsyncCall.cs: New file.
280 2006-05-30  Gert Driesen  <drieseng@users.sourceforge.net>
282         * Char.cs: Removed duplicate (explicit) interface implementation.
283         * String.cs: Removed duplicate (explicit) interface implemenation.
284         * MulticastDelegate.cs: Fixed API mismatches.
286 2006-05-29 Paolo Molaro <lupus@ximian.com>
288         * String.cs: make sure that the chars truncated by a stringbuilder
289         are zeroed.
291 2006-05-29  Martin Baulig  <martin@ximian.com>
293         * Exception.cs
294         (Exception.StackTrace): Use the new stack trace format which is
295         very similar to the one of MS.NET - method name goes first,
296         file / line number last and in the method name, we separate class
297         and method name by `.'.
299         * Environment.cs
300         (Environment.StackTrace): Enable line-number information.
302 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
304         * DateTime.cs :
305           Implement 2.0 TryParseExact(). Patch by Seo Sanghyeon.
307 2006-05-17  Kazuki Oikawa  <kazuki@panicode.com>
309         * Array.cs : added internal sort method used
310           in System.Collections.Generics.List<T>.Sort(Comparison<T>).
312 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
314         * Environment.cs: Bump corlib version.
316 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
318         * MonoType.cs (GetMethodImpl): Fix a warning.
320 2006-05-08  Atsushi Enomoto  <atsushi@ximian.com>
322         * ArrayTest.cs : use proper comparer in IndexOf() and LastIndexOf().
323           Patch by Kazuki Oikawa. Fixed bug #77277.
325 2006-05-07  Zoltan Varga  <vargaz@gmail.com>
327         * Nullable.cs (Equals): Fix comparison to null. Fixes #78322.
329 2006-04-28  Atsushi Enomoto  <atsushi@ximian.com>
331         * Nullable.cs : updated Nullable<T> API to 2.0 RTM.
333 2006-04-26  Atsushi Enomoto  <atsushi@ximian.com>
335         * Double.cs : (Parse) handle currency symbol when
336           AllowCurrencySymbol is passed as part of the style. Patch by
337           nede@aliquant.com, modified to eliminate redundant Substring().
338           This fixes bug #77721.
340 2006-04-26  Atsushi Enomoto  <atsushi@ximian.com>
342         * MonoType.cs : (GetMethod) when zero-length type[] is explicitly
343           passed, don't return methods with some arguments. Fixed bug #77367.
345 2006-04-21  Gert Driesen  <drieseng@users.souceforge.net>
347         * Enum.cs: Provide meaningful message when type of passed in value
348         does not match enum type.
350 2006-04-19  Raja R Harinath  <rharinath@novell.com>
352         * Char.cs (Equals): Don't access 'm_value' field of other
353         instances.  Cast directly to 'char'.
355 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
357         * DateTime.cs : implement SpecifyKind(). Patch by Thong Nguyen.
359 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
361         * NumberFormatter.cs : general performance improvements. Avoid 
362           extraneous evaluation for simple formatting. Details are seen in 
363           bug #77792. Patch by Kazuki Oikawa.
365 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
367         * DateTime.cs : implement IsDaylightSavingTime().
368           Patch by Seo Sanghyeon <tinuviel@sparcs.kaist.ac.kr>.
370 2006-04-04  Atsushi Enomoto  <atsushi@ximian.com>
372         * Array.cs :
373           added some more [ReliabilityContract].
374           removed some [CLSCompliant].
375           renamed generic method parameter names.
377 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
379         * Environment.cs (SetEnvironmentVariable): Implement.
381 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
383         * Array.cs : oops, the last change caused regression. The array must
384           be transparent to ReadOnlyCollection, not create another list.
386 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
388         * Array.cs : AsReadOnly<T>() in RTM returns ReadOnlyCollection<T>.
389           Thus removed ReadOnlyArray<T> and ReadOnlyArrayEnumerator<T>.
390           In 2.0 some members became non-virtual.
392 2006-03-23  Atsushi Enomoto  <atsushi@ximian.com>
394         * String.cs : oops, NET_2_0.
396 2006-03-23  Atsushi Enomoto  <atsushi@ximian.com>
398         * String.cs : added new IndexOf() and LastIndexOf() overloads, and
399           IEnumerable<char>.GetEnumerator().
401 2006-03-21  Kornél Pál  <kornelpal@gmail.com>
403         * String.cs: Make memcpy4 private as it is a helper method.
404           Make memcpy internal to can be used from UnicodeEncoding.
406 2006-03-19  Marek Safar  <marek.safar@seznam.cz>
408         * Nullable.cs (Compare, Equals): Added constrain as gmcs now correctly
409         reports an error here.
411 2006-03-16  Atsushi Enomoto  <atsushi@ximian.com>
413         * Double.cs : (Parse) reject String.Empty.
415 Wed Mar 15 16:30:51 CET 2006 Paolo Molaro <lupus@ximian.com>
417         * LocalDataStoreSlot.cs: implement as index in an array.
418         Implemented finalizer and allow it to remove the data stored
419         in the slot.
421 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
423         * Environment.cs: Bump corlib version.
425 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
427         * MonoCustomAttrs.cs (IsDefined): Avoid a runtime assert if a type
428         overwrites GetCustomAttributes () but not IsDefined ().
430 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
432         * Environment.cs: Bumped corlib version to 48 (due to r57532)
434 2006-03-07  Martin Baulig  <martin@ximian.com>
436         * String.cs (String.FormatHelper): Try getting an `ICustomFormatter'
437         from the `provider' if possible.
439 2006-02-26  Gert Driesen  <drieseng@users.souceforge.net>
441         * DecimalFormatter.cs: Removed obsolete class, as it has been replaced
442         by NumberFormatter.
443         * DoubleFormatter.cs: Same.
444         * SingleFormatter.cs: Same.
446 2006-02-21  Marek Safar  <marek.safar@seznam.cz>
448         * String.cs (Equals): Optimized for speed.
450 2006-02-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
452         * TermInfoDriver.cs: patch by Mike Hull that fixes bug #77518.
454 Mon Feb 20 11:19:54 CET 2006 Paolo Molaro <lupus@ximian.com>
456         * MonoType.cs: patch from Joachim Ante <joe@otee.dk> to
457         improve error messages.
459 2006-02-15  Martin Baulig  <martin@ximian.com>
461         * Type.cs (Type.IsGenericInstance): Removed.
463 2006-02-14  Ankit Jain  <jankit@novell.com>
464             Raja R Harinath  <rharinath@novell.com>
466         * ArraySegment.cs (.ctor): Fix bounds check. Rename param 'length' to
467         'count'.
469 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
471         * TermInfoDriver.cs (CreateKeyInfoFromInt): Fix handling of tab and its
472         friends.
473         
474         * TermInfoDriver.cs (GetWindowDimensions): Obtain the exact terminal
475         size using an icall.
476         (GetCursorPosition): Convert the row and column to 0 based indexing. 
477         Also fix reading of large values.
478         (CreateKeyInfoFromInt): Convert LF to ConsoleKey.Enter.
480         * ConsoleDriver.cs (GetTtySize): New icall.
482 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
484         * Array.cs: Fix some methods which previously returned Nullable<T>.
486         * Nullable.cs: Add T: struct constraint and fix constructor.
488 Fri Feb 3 11:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
490         * String.cs: changed StartsWith/EndsWith to faster versions.
492 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
494         * String.cs: implement 2.0 StartsWith and EndsWith new overloads. Based
495         on a patch by Thong Nguyen.
497 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
499         * String.cs: Implement one of the new net 2.0 Split methods.
501 2006-01-31  Atsushi Enomoto  <atsushi@ximian.com>
503         * String.cs : (LastIndexOf) Fixed bug #77412. It should not expect
504           that value length is bigger than its index.
506 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
508         * DateTime.cs: Add some 2.0 methods and properties.
510 2006-01-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
512         * Console.cs: if InternalCodePage returns -1, use the default encoding.
513         Also match the UTF8 one properly. Patch by wall_john@sohu.com.
515 2006-01-19  Atsushi Enomoto  <atsushi@ximian.com>
517         * ModuleHandle.cs : GetPEKind() is not public in 2.0 RTM.
519 2006-01-16  Alp Toker  <alp@atoker.com>
521         * TimeSpan.cs: Simple implementation of NET 2.0 TryParse() using
522         try/catch
524 2006-01-05  Raja R Harinath  <rharinath@novell.com>
526         Fix regressions introduced by the fix to #71300.
527         * Activator.cs (CreateInstance): Use Binder.SelectMethod instead
528         of home-grown FindBestCtor.
529         (FindBestCtor): Delete.
531 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
533         * Nullable.cs: Update to Net 2.0 RTM.
534         
535         * Nullable.cs: Add comments about runtime dependencies on the layout of
536         this type.
538 2006-01-02  Sebastien Pouliot  <sebastien@ximian.com>
540         * Activator.cs: Now find the best ctor when null are used for 
541         paramaters. Fix bug #71300. Added checks for specific types (void,
542         TypedReference, ArgIterator and RuntimeArgumentHandle).
543         * Console.cs: Re-use Environment logic to detect Windows.
544         * Type.cs: Re-applied r45150 as the real bug was in Activator.
546 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
548         * Activator.cs: Add a 'params' to one of the CreateInstance overloads.
550         * RuntimeTypeHandle.cs RuntimeMethodHandle.cs RuntimeFieldHandle.cs:
551         Add == and != operators.
553 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
555         * Environment.cs: Bump corlib version to 46.
556         * TimeZone.cs: Partial fix for #76094. Added [Serializable] attribute 
557         and renamed internal CurrentTimeZone class to CurrentSystemTimeZone 
558         (like MS). This allows serialization roundtrip to work in Mono but 
559         there's still an issue when deserializing a stream from MS. 
561 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com> 
563         * NumberFormatter.cs: Fixed rounding for float and the string output
564         now includes all the precision (not counting preceding zeros). This
565         fix the DecimalTest.TestConstructSingleRounding_NotWorking test cases.
567 2005-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
569         * Array.cs: Fixed Sort<T> with IComparable (generic or not) bug #77039
571 2005-12-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
573         * Array.cs: Added the Sort<T> methods (generics). 
575 2005-12-19  Sebastien Pouliot  <sebastien@ximian.com> 
577         * Array.cs: Fixed BinarySearch when the array is empty (#77030). Added
578         some null check which throws ArgumentNullException under 2.0.
580 2005-12-15  Sebastien Pouliot  <sebastien@ximian.com>
582         * DateTime.cs: Added MonoTODO to ctor accepting a Calandar instance.
583         * Double.cs: Under 2.0 throw a ArgumentException when parsing with
584          NumberStyles.AllowHexSpecifier. Partial fix for #72221. Added the
585         second, simpler, TryParse method (2.0).
586         * Single.cs: Added the TryParse methods for 2.0.
588 2005-12-15  Raja R Harinath  <rharinath@novell.com>
590         * Type.cs (IsGenericType): Make virtual.
592 2005-12-08  Sebastien Pouliot  <sebastien@ximian.com> 
594         * AppDomainSetup.cs: ApplicationBase throw exception on get (not on 
595         set). New behaviour is more like MS - but most issues (unit tests)
596         were really path issues. Fix bug #71291.
597         * DateTime.cs: Add more information when throwing an exception in 
598         ctor(long). Useful for debugging.
600 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
602         * Single.cs Double.cs: Fix warnings.
604 2005-12-06  Sebastien Pouliot  <sebastien@ximian.com> 
606         * Convert.cs: ToBase64String method didn't use the option parameter so
607         we always included new lines. Fix bug #76876.
609 2005-12-06  Sebastien Pouliot  <sebastien@ximian.com>
611         * AppDomainSetup.cs: Added missing ComVisible and removed LAMESPEC 
612         (the docs were fixed).
613         * NumberFormatter.cs: Fixed the "NotWorking" case where 1.15 was 
614         misrounded compared to MS implementation. Extra care is required when
615         dealing with the extra 2 digits information (e.g. double precision is
616         15 digits but 17 are kept - for a reason ;-)
618 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
620         * Environment.cs: Bump version
622         * Nullable.cs: New Box and Unbox methods for the jit
624 2004-12-05  Peter Dennis Bartok <pbartok@novell.com>
626         * Enum.cs: Properly handle "No bits set" case even if the sorted numbers
627           list does not have enum value 0 as the first item. Fixes #76921
629 2005-12-05  Sebastien Pouliot  <sebastien@ximian.com>
631         * AppDomain.cs: CreateComInstanceFrom isn't static in any profile.
633 Mon Dec 5 15:14:59 CET 2005 Paolo Molaro <lupus@ximian.com>
635         * Double.cs: remove unused icall.
636         * BitConverter.cs: handle double binary format on ARM FPA.
638 2005-12-02  Alp Toker  <alp@atoker.com>
640         * MonoType.cs:
641         * Type.cs: DeclaringMethod should return MethodBase, not MethodInfo
643 2005-12-02  Alp Toker  <alp@atoker.com>
645         * AppDomain.cs: ReflectionOnlyPreBindAssemblyResolve renamed to
646         ReflectionOnlyAssemblyResolve in 2.0 final
648 2005-12-01  Alp Toker  <alp@atoker.com>
650         * String.cs: Add static and non-static Equals(... StringComparison) for
651         2.0.
653 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
655         * TermInfoDriver.cs: special case for the escape key. Fixes bug #76781.
657 2005-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
659         * TermInfoDriver.cs: if the cursor_address capability contains a %i, we
660         have to add 1 to x and y when setting the cursor position.
661         Fixes bug #76856.
663         * Convert.cs: remove unused variables.
665 Wed Nov 30 12:14:20 EST 2005 Paolo Molaro <lupus@ximian.com>
667         * NumberFormatter.cs: work around arch-specific ulong cast behaviour
668         with large numbers.
670 Tue Nov 29 05:38:37 EST 2005 Paolo Molaro <lupus@ximian.com>
672         * Convert.cs: fix endianess issue when converting to base-8
673         format. All the base code would need a rewrite for efficience.
675 2005-11-25  Sebastien Pouliot  <sebastien@ximian.com>
677         * String.cs: Added support for Compare(... StringComparison) in 2.0.
679 2005-11-25  Alp Toker  <alp@atoker.com>
681         * Type.cs (IsVisible): New 2.0 property, implemented recursively.
683 2005-11-17  Dick Porter  <dick@ximian.com>
685         * Environment.cs: Incremented corlib version
687 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
689         * Int32.cs, UInt32.cs, Int16.cs, UInt16.cs, Int64.cs,
690         UInt64.cs, Byte.cs, SByte.cs, Double.cs : Modify internal Parse
691         methods to return the exception as an out parameter,
692         instead of throwing it. This will be of special help
693         to TryParse methods.
694         * Environment.cs: Update corlib version to 42.
695         
696 2005-11-14  Raja R Harinath  <rharinath@novell.com>
698         * EventHandler.cs (EventHandler<TEventArgs>): Rename from EventHandler<T>.
700 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
702         * Type.cs (GetPseudoCustomAttributes): Return ComImportAttribute as well.
704 2005-11-11  Lluis Sanchez Gual  <lluis@novell.com>
706         * TimeZone.cs: Removed incorrect double-check lock and unneeded
707         hashtable access.
709 2005-11-11  Marek Safar  <marek.safar@seznam.cz>
711         * Type.cs: IsNested implemented, signature fixes.
713 2005-11-11  Raja R Harinath  <rharinath@novell.com>
715         * Array.cs (Resize<T>) [2-argument variant]: Fix nullref.
717 2005-11-10  Zoltan Varga  <vargaz@gmail.com>
719         * Array.cs (Resize<T>): New internal method which takes a 'length' argument
720         as well to avoid copying the whole array.
722 2005-11-09  Atsushi Enomoto  <atsushi@ximian.com>
724         * Int64.cs : ditto for long.
726 2005-11-09  Atsushi Enomoto  <atsushi@ximian.com>
728         * Int32.cs : Parse("2147483648", format_provider) should be rejected.
730 2005-11-09  Sebastien Pouliot  <sebastien@ximian.com>
732         * AttributeTargets.cs: Added [ComVisible (true)] and [Serializable] 
733         in 2.0 profile.
734         * Base64FormattingOptions.cs: Added missing [Flags] attribute.
735         * ConsoleKey.cs: Removed old BackSpace and WhiteSpace (they were 
736         already replaced by Backspace and Whitespace)
737         * DateTime.cs: Moved DayOfWeek enum to it's own file.
738         * DateTimeKind.cs: New (2.0) enum.
739         * DayOfWeek.cs: New file (extracted from DateTime.cs).
740         * DomainManagerInitializationFlags.cs: Removed extra [Serializable].
741         * EnvironmentVariableTarget.cs: Added [ComVisible (true)] and fixed 
742         values (-1 to all of them).
743         *  Exception.cs: Added a LinkDemand for SerializationFormatter on
744         GetObjectData method.
745         *  LoaderOptimization.cs: Added [ComVisible (true)] and [Serializable] 
746         on enum and added [Obsolete] to DomainMask and DisallowBindings in 2.0
747         profile.
748         * PlatformID.cs: Added [ComVisible (true)] and [Serializable] in 2.0 
749         profile.
750         * StringComparison.cs: New (2.0) enum (needed for Uri).
751         * TermInfoDriver.cs: Fixed BackSpace -> Backspace (see ConsoleKey.cs).
752         * TypeCode.cs: Added [ComVisible (true)] and [Serializable] in 2.0 
753         profile.
755 2005-11-08  Atsushi Enomoto  <atsushi@ximian.com>
757         * Type.cs : I forgot to mention, some '(' were missing in the
758           improved patch ;-)
760 2005-11-08  Zoltan Varga  <vargaz@freemail.hu>
762         * Type.cs (GetPseudoCustomAttributes): Check for TypeAttributes.Serializable instead of
763         IsSerializable property, since the latter returns true for delegates/enums.
765 2005-11-05  Kornél Pál  <kornelpal@hotmail.com>
767         * Environment.cs: Use Consts.RuntimeVersion as Environment.Version that
768           makes maintenance easier.
770 2005-10-24  Martin Baulig  <martin@ximian.com>
772         * Type.cs (Type.IsGenericTypeDefinition): Make this virtual.
774 2005-10-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
776         * String.cs: fix bound checkings for LastIndexOfAny. Closes bug #76519.
778 2005-10-20  Raja R Harinath  <rharinath@novell.com>
780         * Array.cs (Swapper): Remove NET_2_0 guards from nested declaration.
782 2005-10-16  Michal Moskal  <malekith@nemerle.org>
784        * TermInfoDriver.cs: Call Init () in Background/ForegroundColor.
786 2005-10-14  Atsushi Enomoto  <atsushi@ximian.com>
788         * DateTime.cs : another crappy Windows dependent format.
790 2005-10-14  Ben Maurer  <bmaurer@ximian.com>
792         * DateTime.cs: Speed up when parsing date time objects by not
793         duplicating cultureinfo arrays.
795 2005-10-13  Zoltan Varga  <vargaz@gmail.com>
797         * Type.cs (GetTypeCode): Applied patch from 
798         Mike Welham <mwelham@gmail.com>. Return TypeCode.Empty when null is
799         passed in.
801 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
803         * Delegate.cs: Add support for delegate covariance and contravariance
804         from net 2.0.
806 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
808         * StringComparer.cs : (OrdinalIgnoreCaseComparer.Equals()) reverse.
810 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
812         * String.cs (ParseFormatSpecifier): Fix skipping of whitespace. Fixes
813         #76204.
815 2005-09-23  Miguel de Icaza  <miguel@novell.com>
817         * Decimal.cs: Fix typo, patch from Tomas Kukol <tomas.kukol@gmail.com>
819 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
821         * MonoCustomAttrs.cs (GetCustomAttributesInternal): Add
822         attributeType parameter.
823         (IsDefined): New icall.
825         * MonoCustomAttrs.cs: Avoid instantiating all custom attrs of an
826         object when only a specific attribute type is requested. Fixes #76062.
828         * Environment.cs: Bump corlib version.
830 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
832         * TypeLoadException.cs MissingMethodException.cs MissingFieldException.cs: Add new ctors called by the runtime. Improve Message property.
834 2005-09-14  Atsushi Enomoto  <atsushi@ximian.com>
836         * DateTime.cs : (_DoParse) don't check ticks range before computing
837           the actual value. Fixed bug #76082.
839 2005-09-14  Atsushi Enomoto  <atsushi@ximian.com>
841         * TimeZone.cs : When the target DateTime is in the range of
842           DST end to DST + delta, don't adjust UtcOffset gap between that of
843           DST and that of STD. This should fix bug #75985.
845 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
847         * TimeZone.cs, DateTime.cs :
848           - ToLocalTime() and ToUniversalTime() are moved to TimeZone.
849           - Added more COM patterns. Patch by Ankit Jain. Fixed bug #72132.
850           - use ToLocalTime() and don't depend on the own offset computation.
851             Parse() with 'Z' pattern is closer to correct value on switching
852             Daylight Saving Time. See bug #75985.
854 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
856         * DateTime.cs : (DoParse) DateTimeStyles.AdjustToUniversal was not
857           handled as expected and it kept time value as local one.
858           Patch by Brion Vibber. Fixed bug #75995.
860 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
862         * DateTime.cs : Literal escape (\) was not checking format as
863           expected. Fixed bug #75213.
865 2005-09-05  Miguel de Icaza  <miguel@novell.com>
867         * MonoType.cs: Patch from Jonathan Chambers to implement
868         Type.GUID. 
870 2005-09-05  Martin Baulig  <martin@ximian.com>
872         Reflect latest API changes in the August CTP.
874         * Type.cs (Type.HasGenericArguments): Removed.
875         (Type.BindGenericParameters): Renamed to MakeGenericType().
877 2005-09-01  Atsushi Enomoto  <atsushi@ximian.com>
879         * DateTime.cs : another idiotic COM dependent format.
881 2005-09-01  Kornél Pál  <kornelpal@hotmail.com>
883         * __ComObject.cs: Fixed to be internal. Removed CLSCompliant attribute.
884         Added some comments about the class.
886 2005-08-30  Sebastien Pouliot  <sebastien@ximian.com>
888         * AppDomain.cs: Use the more concise property syntax for declarative
889         security.
890         * AppDomainManager.cs: Default HostSecurityManager is null.
892 2005-08-25  Atsushi Enomoto  <atsushi@ximian.com>
894         * NumberFormatter.cs : eliminate non-ASCII character.
896 2005-08-25  Marek Safar  <marek.safar@seznam.cz>
898         * Enum.cs: Better exception message.
899         
900 2005-08-21  Gert Driesen  <drieseng@users.sourceforge.net>
902         * Convert.cs: In FromBase64String, return empty byte array for zero
903         length string. Pass bool to InternalFromBase64String to control 
904         whether to allow a whitespace-only string.
905         * Environment.cs: Bump corlib version.
907 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
909         * Environment.cs: Bump corlib version.
911 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
913         * Math.cs: Implement a new 2.0 Round method.
915 2005-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
917         * Convert.cs: Throw OverflowException if result is larger than
918         ushort.MaxValue to match MS.NET. Remove commented code.
920 2005-08-17  Gert Driesen  <drieseng@users.sourceforge.net>
922         * Convert.cs: For now, do not throw OverflowException if hex prefixed
923         value is negative for signed types (other than int64). Need to look
924         into this further.      
926 2005-08-17  Gert Driesen  <drieseng@users.sourceforge.net>
928         * Convert.cs: Numerous fixed in overloads taking base to match 
929         behaviour of MS.NET. Throw ArgumentOutOfRangeException is string is
930         empty. If base is 16, 8 or 2, then throw ArgumentException if first 
931         character is a negative sign. Throw OverflowException if hex prefixed 
932         value is negative for signed types (other than int64) to match MS.NET. 
934 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
936         * DateTime.cs : added another COM dependent pattern (rather to describe
937           how it works on .NET than to add the pattern itself...).
939 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
941         * DateTime.cs : added case for bug #53023.
943 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
945         * Type.cs: Add IsGenericType property from NET 2.0.
947 2005-08-10  Atsushi Enomoto  <atsushi@ximian.com>
949         * String.cs : added new StartsWith()/EndsWith() override, fixing
950           existing EndsWith() which incorrectly assumed that both string
951           lengths must be equivalent (they are not always equal).
952         * StringComparer.cs : added Ordinal and OrdinalIgnoreCase.
954 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
956         * String.cs: Implement Split(String[]) methods.
958 2005-08-09  Miguel de Icaza  <miguel@novell.com>
960         * AppDomainSetup.cs: Full-pathization of the appBase should only
961         be done on Windows, the ":" condition never applied to Linux.
963         * ConsoleKey.cs: Include a few aliases for a few values that were
964         introduced recently.
966 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
968         * ConsoleKey.cs: added Backspace, which has the same value as BackSpace.
969         Fixes bug #75697.
971 2005-08-08  Atsushi Enomoto  <atsushi@ximian.com>
973         * String.cs : (StartsWith) compared string lengths are not always the
974           same in culture-sensitive comparison.
976 2005-08-05  Gert Driesen  <drieseng@users.sourceforge.net>
978         * Array.cs: Changed protected ctor to private. Fixes API compatibility
979         with MS.NET.
980         * RuntimeFieldHandle.cs: Equals methods and GetHashCode should only
981         be exposed in 2.0 profile.
982         * RuntimeMethodHandle.cs: Equals methods and GetHashCode should only
983         be exposed in 2.0 profile.
984         * RuntimeTypeHandle.cs: Equals methods and GetHashCode should only
985         be exposed in 2.0 profile.
986         * Type.cs: Added GetType method and implemented _Type interface.
987         Fixes API compatibility with MS.NET.
989 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
991         * StringComparer.cs: Add generics version of string interfaces.
993 2005-07-26  Atsushi Enomoto  <atsushi@ximian.com>
995         * StringComparer.cs : implemented StringCultureComparer.GetHashCode().
997 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
999         * StringSplitOptions.cs MidpointRounding.cs: New files.
1001         * String.cs Math.cs: Add stubs for some new 2.0 APIs.
1003 2005-07-26  Marek Safar  <marek.safar@seznam.cz>
1005         * StringComparer.cs: New file.
1007 2005-07-26  Raja R Harinath  <harinath@gmail.com>
1009         * Enum.cs (GetValue): Make private.  Return an ulong.
1010         (Parse): Tighten scope of couple of variables.  Use ulong when
1011         twiddling bits.
1013 2005-07-25  Raja R Harinath  <rharinath@novell.com>
1015         * Enum.cs (FindName, GetValue): New.  Carved out of ...
1016         (Parse): ... this.  Refactor and simplify code.  Avoid incurring
1017         exceptions when parsing names.  Avoid allocating arrays unless
1018         necessary.  Avoid conversion of an enumeration constant to its own
1019         type.  (Incorporates ideas from a patch by Gonzalo Paniagua Javier.)
1021 2005-07-13  Lluis Sanchez Gual  <lluis@novell.com>
1023         * MarshalByRefObject.cs: GetLifetimeService() should be virtual.
1024         Fixes bug #75527.
1026 2005-07-13  Miguel de Icaza  <miguel@novell.com>
1028         * Array.cs: Patch from rodrigobamboo@gmail.com that fixes the
1029         signature for GetValue and SetValue to make the long [] argument
1030         be a params argument. 
1032 2005-07-11  Pedro Martínez Juliá  <pedromj@gmail.com>
1034         * Convert.cs: Fix the bug when Convert.ChangeType was using
1035         NumberFormatInfo instead of DateTimeFormatInfo when the type to
1036         change is a DateTime.
1038 2005-07-11  Martin Baulig  <martin@ximian.com>
1040         * Array.cs: Use Type.Equals() instead of `==' to compare type
1041         parameters.     
1043 2005-07-10  Kamil Skalski <nazgul@nemerle.org>
1045         * Type.cs: Mark BindGenericParameters as deprecated. Use
1046         MakeGenericType as default implementation with updated signature.
1048 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
1050         * Attribute.cs (IsDefined): Fix IsDefined for ParameterInfo's. Fixes
1051         #75514.
1053 2005-07-05  Lluis Sanchez Gual  <lluis@novell.com>
1055         * DelegateSerializationHolder.cs: When the deserialized target is
1056         a proxy, call IsInstanceOfType to force the proxy to load the
1057         real type of the remote object. This is needed to make sure that
1058         subsequent calls to GetType() return the expected type. This fixes
1059         bug #75447.
1061 2005-07-03  Ben Maurer  <bmaurer@ximian.com>
1063         * OperatingSystem.cs: patch from Aleksandar Dezelin to fix
1064         serialization.
1066 2005-06-30  Sebastien Pouliot  <sebastien@ximian.com> 
1068         * Guid.cs: Avoid code duplication between overriden methods (new in 
1069         2.0). Avoid exception processing when possible. Renamed parameters to
1070         match the framework. Added ComVisible to NET_2_0.
1072 2005-06-28  Elliott Draper  <el@eldiablo.co.uk>
1074         * Activator.cs: This implements the generic Activator.CreateInstance<T>()
1075         function for NET_2_0. It's full signature is:
1076                 public static T CreateInstance<T>();
1078 2005-06-28  Lluis Sanchez Gual  <lluis@novell.com>
1080         * Decimal.cs: Renamed internal fields for the sake of serialization
1081         interoperability with MS.NET.
1082         * Exception.cs: In the StackTrace property, return the stack trace
1083         if it has a value, even if the exception has not been thrown
1084         (it may have been deserialized).
1086 2005-06-28  Martin Baulig  <martin@ximian.com>
1088         * Array.cs (Array.InternalArray<T>): New nested class; derives
1089         from Array.  This is now used by the runtime for arrays; fixes #74953.
1091 2005-06-27  Atsushi Enomoto  <atsushi@ximian.com>
1093         * String.cs : added some extra whitespace characters for Trim().
1094           Fixed bug #75259.
1096 2005-06-13  Michal Moskal <malekith@nemerle.org>
1097         
1098         * MonoType.cs: Don't use MethodHandle in GetMethod/GetConstructor,
1099         since it now throws on MethodBuilders. Don't use FieldHandle in
1100         GetField (throws on FieldBuilder) - just use the name.
1102 2005-06-13  Martin Baulig  <martin@ximian.com>
1104         * MonoType.cs
1105         (MonoType.getFullName): Added `bool assembly_qualified' argument.
1106         (MonoType.AssemblyQualifiedName): The interncall now adds the
1107         assembly name, so we don't need to do it here.
1108         (MonoType.FullName): Use the new getFullName() API.
1110 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
1112         * Char.cs: ToLowerInvariant and ToUpperInvariant are now public in 
1113         NET_2_0. Added "new" white char and ComVisible for 2.0.
1115 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1117         * Convert.cs: FromBase64String and FromBase64CharArray are now internal
1118         calls to avoid extra allocations.
1120 2005-06-09  Kamil Skalski <nazgul@nemerle.org>
1122         * Type.cs: Add MakeGenericType method form .NET 2.0 beta 2 API
1124         * Type.cs MonoType.cs: Add internal virtual
1125         Get{Method,Constructor,Field} for obtaining instanciated *Info objects
1126         from non-instanciated counterparts
1128 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
1130         * ModuleHandle RuntimeMethodHandle.cs RuntimeTypeHandle.cs RuntimeFieldHandle.cs RuntimeArgumentHandle.cs: Add missing 2.0 attributes.
1132 2005-06-08  Zoltan Varga  <vargaz@freemail.hu>
1134         * Type.cs: Add missing 2.0 attributes.
1136 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1138         * MonoCustomAttrs.cs: Added GetCustomAttributesDataInternal icall, and
1139         also internal method GetCustomAttributesData, used by 
1140         System.Reflection.CustomAttributeData.
1141         
1142 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
1144         * Activator.cs: Added  _Activator interface (and members) for 1.1 and
1145         missing attributes (for both 1.1 and 2.0).
1146         * String.cs: Made internal To[Lower|Upper]Invariant methods public for
1147         2.0. Reworked Trim() to skip a useless call. Added missing attribute
1148         for 2.0.
1149         * Type.cs: Added  _Type, _MemberInfo interfaces (1.1/2.0). Added 
1150         missing attribute for 2.0. Hided some public/protected methods.
1152 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
1154         * ModuleHandle.cs: Update after PortableExecutableKinds name change.
1156 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
1158         * _AppDomain.cs: Added new members in the interface (added in 1.1 SP1)
1159         * AppDomain.cs: Added new members from _AppDomain interface.
1160         * AppDomainManager.cs: Fixed flags and added attributes.
1161         * DomainManagerInitializationFlags.cs: The flag has been renamed to 
1162         AppDomainManagerInitializationOptions in beta2.
1164 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
1166         * Type.cs MonoCustomAttrs.cs: Return SerializableAttribute for types as well.
1168 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
1170         * Exception.cs: Implements _Exception only for 2.0.
1172 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
1174         * GC.cs: Fix build.
1175         
1176         * GC.cs UnhandledExceptionEventArgs.cs IntPtr.cs RuntimeFieldHandle.cs 
1177           String.cs Object.cs Math.cs RuntimeMethodHandle.cs ModuleHandle.cs 
1178           RuntimeTypeHandle.cs AppDomain.cs: Add some missing 2.0 methods/attributes.
1180 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1182         * Environment.cs:
1183         * AppDomain.cs: if the assembly is loaded from a byte array, Location
1184         returns "". Fixes bug #74958.
1186 2005-06-04  Ben Maurer  <bmaurer@ximian.com>
1188         * *.cs: More 2.0 API fixups
1190         * *.cs: In beta 2, generics are no longer non-cls-compliant.
1192 2005-06-05  Kazuki Oikawa  <kazuki@panicode.com>
1194         * NumberFormatter.cs: Fixed the output of 0.ToString("00.00E00")
1195         that was different from MSFT.
1196         * String.cs: Fixed IndexOfAny thrown an exception
1197         when startIndex of arguments equals Length. (Closes bug #75083.)
1199         * Decimal.cs: Changed to use NumberFormatter in ToString.
1200         * NumberFormatter.cs: Implemented decimal formatter.
1202 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1204         * Type.cs: reverted wrong fix for bug #71300 in r45150. This makes SSL
1205         support in System.Net work again.
1207 2005-06-01  Ben Maurer  <bmaurer@ximian.com>
1209         * CharEnumerator.cs: add IEnumerable <char> support
1211 2005-05-30  Sebastien Pouliot  <sebastien@ximian.com>
1213         * Activator.cs: Added missing validation on parameters.
1215 2005-05-28  Ben Maurer  <bmaurer@ximian.com>
1217         * Type.cs: Check that the arguments of the `types' array are
1218         non-null. Fixes bug 71300
1220 2005-05-28  Sebastien Pouliot  <sebastien@ximian.com>
1222         * AppDomainSetup.cs: Added new 2,0 constructors and the 
1223         ActivationArguments property.
1224         * AppDomainManager.cs: Added using System.Runtime.Hosting as it is the
1225         new location for the ApplicationActivator class.
1226         * ApplicationActivator.cs: Moved to System.Runtime.Hosting namespace.
1228 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
1230         * Environment.cs: bump corlib version for bug #75060.
1232 2005-05-27  Raja R Harinath  <rharinath@novell.com>
1234         * Environment.cs (ExpandEnvironmentVariables): Rewrite
1235         sb.Append (s.SubString (a, b)) to sb.Append (s, a, b).
1236         * String.cs (FormatHelper): Rewrite sb.Append (s.SubString (a)) to
1237         sb.Append (s, a, s.Length - a).  Avoid allocating 'pad' string --
1238         StringBuilder has an appropriate Append overload.
1240 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
1242         * Type.cs (IsEnum): Special case EnumBuilder here.
1244 2005-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1246         * MonoType.cs: Changed call from GetName to UnprotectedGetName to
1247         allow call to work with serialization under a restrictive policy.
1248         The code path (the protected information) isn't being used.
1250 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
1252         * Exception.cs: Use the new StackTrace ctor.
1254         * Type.cs: Improve support for user defined type subclasses.
1256 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1258         * DateTime.cs : Added minimum digit parameter to ParseNumber() to
1259           reject 2 digit years for "yyyy".
1260           Use GetAllDateTimePatterns() instead of constant string.
1261           Fixed bug #72788.
1263 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1265         * DateTime.cs : next_not_digit prevented some valid parse.
1266           Just remove it, since now we pass max length to ParseNumber() and
1267           thus it is not needed anymore. Fixed bug 63137.
1269 2005-05-24  Atsushi Enomoto  <atsushi@ximian.com>
1271         * DateTime.cs : HH should not always block tt. Fixed bug #60912.
1272           Reset num after whitespace parsing.
1273           Added "M/d/yyyy HH':'mm':'ss tt" as an invariant pattern.
1275 2005-05-24  Atsushi Enomoto  <atsushi@ximian.com>
1277         * DateTime.cs : Allow ',' where whitespaces are allowed.
1278           Fixed bug #71289.
1280 2005-05-22  Ben Maurer  <bmaurer@ximian.com>
1282         * BitConverter.cs: Speed this up, fixing 74014. Patch from
1283         `Aleksandar Dezelin'.
1285 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
1287         * Type.cs: Add some helper methods needed by other classes.
1289         * Array.cs: Improve support for user defined Type subclasses.   
1290         
1291         * Type.cs: Rename GetTypeCode icall to GetTypeCodeInternal and add a managed
1292         wrapper function, not used yet.
1294         * Type.cs Array.cs: Revert this as it breaks the build.
1296         * Type.cs Array.cs: Improve support for user defined Type subclasses.
1298 2005-05-19  Ben Maurer  <bmaurer@ximian.com>
1300         * Delegate.cs (Equals): Use `as' to protect in the case where !
1301         (obj is Delegate)
1303 2005-05-19  Raja R Harinath  <rharinath@novell.com>
1305         * Console.cs (Readline) [NET_2_0]: Avoid "uninitialized variable"
1306         error.
1308 2005-05-19  Miguel de Icaza  <miguel@novell.com>
1310         * TermInfoDriver.cs: Removed warning.
1312         * Array.cs (Resize<T>, TrueForAll<T>, ConvertAll<TInput,TOutput>,
1313         FindLastIndex<T>: Parameter names are normative.        
1314         Fix coding style ("Method<T>" not "Method <T>")
1315         Throw argument exceptions per argument.
1316         
1317         (FindAll): Fix bug, actually return the values that were computed,
1318         not a short version of the original array.
1319         
1320 2005-05-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1322         * Console.cs: fix error in the 2_0 side and split ReadLine in 2, one
1323         for each framework version.
1325 2005-05-15  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
1327         * Attribute.cs:
1328         * Exception.cs: .Net 1.1 already has these interfaces
1330 Mon May 16 18:23:49 CEST 2005 Paolo Molaro <lupus@ximian.com>
1332         * MonoCustomAttrs.cs, Type.cs: do not create a SerializableAttribute
1333         object on GetCustomAttributes (fixes bug #74717).
1335 2005-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1337         * DateTime.cs : for 'z' next_not_digit didn't work as expected.
1338           Fixed bug #74775.
1340 2005-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1342         * DateTime.cs : don't allow extraneous pattern characters also for
1343           non-exact parsing (ParseExact() was fine). Bug #74936 fixed
1345 2005-05-13  Gert Driesen <drieseng@users.sourceforge.net>
1347         * Activator.cs: Match exceptions thrown by MS.NET for
1348         CreateInstance overloads if type is abstract. Fixes bug #74861.
1350 2005-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1352         * OperatingSystem.cs: PlatformID.Unix.
1354 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
1356         * Environment.cs: Patch from Gonzalo to fix Environment.OSVersion.
1357         Platform under NET_2_0 to return PlatformID.Unix. Fix bug #74841.
1359 2005-05-07  Atsushi Enomoto  <atsushi@ximian.com>
1361         * NumberFormatter.cs : roundtrip number is already rounded before
1362           FormatGeneral() and DefaultMaxPrecision was extraneous. This fixes
1363           bug #72955.
1365 2005-05-07  Ben Maurer  <bmaurer@ximian.com>
1367         * Array.cs (BinarySearch): Patch from kazuki to pass arguments to
1368         the comparer in the same order as msft. Fixes #70725
1370 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1372         * Enum.cs: the hashtable don't need to be synchronized any more, since
1373         it's only accessed from withint a lock.
1375         * Console.cs: stdin, stdout and stderr will never be finalized. Fixes
1376         bug 74768.
1378 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
1380         * Array.cs: Remove CLSCompliant (false) attributes.
1382 2005-05-06  Martin Baulig  <martin@ximian.com>
1384         * Predicate.cs, Action.cs, Comparision.cs, Converter.cs: Add
1385         [CLSCompliant(true)] attribute.
1387 2005-05-04  Miguel de Icaza  <miguel@novell.com>
1389         * Enum.cs (MonoEnumInfo): Based on a patch from James Willcox,
1390         initialize cache as a static method.  Fixes #74828.
1392 2005-05-03  Marek Safar  <marek.safar@seznam.cz>
1394         * Console.cs: CancelKeyPress is stubbed.
1396 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
1398         * ActivationContext.cs: Updated for beta2.
1399         * AppDomainManager.cs: Updated for beta2.
1400         * ApplicationId.cs: Updated for beta2.
1401         * ApplicationIdentity.cs: Updated for beta2.
1402         * Exception.cs: Now use Assembly.UnprotectedGetName () as Exception 
1403         doesn't leak the code base from the returned AssemblyName.
1405 2005-04-25  Martin Baulig  <martin@ximian.com>
1407         * Environment.cs (Environment.Version): Changed to 2.0.50215.
1409 2005-04-22  Sebastien Pouliot  <sebastien@ximian.com>
1411         * Attribute.cs: Added _Attribute interface to NET_2_0 to reduce the 
1412         number of "missing" in the class status pages.
1414 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1416         * MulticastDelegate.cs: (GetInvocationList) when building the list that
1417         is later traversed forward, mark 'this' as the end of the chain.
1418         Fixes bug #74607.
1420 2005-04-19  Zoltan Varga  <vargaz@freemail.hu>
1422         * Environment.cs: Bump corlib version.
1424 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1426         * WindowsConsoleDriver.cs: ignore key release events.
1428 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
1430         * Char.cs : ToUpper()/ToLower() comparison ranges were incorrect.
1432 2005-04-05  Sebastien Pouliot  <sebastien@ximian.com>
1434         * _AppDomain.cs: Add security checks to the interface. Declarative 
1435         security on events requires BOOTSTRAP_WITH_OLDLIB to work properly 
1436         with older MCS.
1437         * AppDomain.cs: Add some (not complete) security checks. Bug#74411 is
1438         blocking some cases from working properly. Declarative security on 
1439         events requires BOOTSTRAP_WITH_OLDLIB to work properly with older MCS.
1441 2005-04-04  Sebastien Pouliot  <sebastien@ximian.com>
1443         * AppDomain.cs: Use the PolicyLevel to resolve the granted permissions
1444         on the AppDomain. Added an internal property to get the granted set.
1446 2005-04-04  Atsushi Enomoto  <atsushi@ximian.com>
1448         * String.cs,
1449           Char.cs : use TextInfo for ToLower() and ToUpper().
1451 2005-03-31  Sebastien Pouliot  <sebastien@ximian.com>
1453         * Exception.cs: Added Assert for TypeInformation to GetObjectData and
1454         ToString methods (not required for 2.0 as TypeInformation will be 
1455         deprecated). Added null check for GetObjectData.
1457 Tue Mar 29 11:47:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
1459         * Delegate.cs: allow IronPython 0.7 to compile.
1461 2005-03-24  Miguel de Icaza  <miguel@novell.com>
1463         * Delegate.cs: Add CreateDelegate with a target option, currently
1464         internal as it is not exposed by the framework yet.
1466 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
1468         * String.cs: Add some 2.0 methods.
1470 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
1472         * Activator.cs: Now use the supplied evidences when loading 
1473         assemblies. Added LinkDemand for RemotingConfiguration on both
1474         GetObject methods.
1475         * Console.cs: Added Assert for UnmanagedCode on OpenStandard[Error|
1476         Input|Output] as they use a handle on a FileStream (which is
1477         restricted otherwise). Added Demand for UnmanagedCode for the
1478         Set[Error|In|Out] methods.
1479         * MarshalByRefObject.cs: Added LinkDemand for Infrastructure on 
1480         CreateObjRef, GetLifetimeService and InitializeLifetimeService.
1481         * RuntimeMethodHandle.cs: Added Demand for UnmanagedCode on 
1482         GetFunctionPointer method.
1483         * TypedReference.cs: Added LinkDemand for ReflectionPermission's
1484         MemberAccess on MakeTypedReference.
1486 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
1488         * Environment.cs: Fix CAS unit tests for NET_1_1.
1489         * Exception.cs: Fix CAS unit tests for NET_1_1.
1491 2005-03-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1493         * Version.cs: don't ignore the last number. Fixes bug #73539.
1495 2005-03-11  Sebastien Pouliot  <sebastien@ximian.com>
1497         * MonoType.cs: When the security manager is active, constructors and
1498         methods will return null if a linkdemand fails during reflection 
1499         query.
1501 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
1503         * Array.cs (Sort): Bail out early if length <= 1. Fixes #72721.
1505 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
1507         * Environment.cs: Bump corlib version.
1509 2005-03-10  Martin Baulig  <martin@ximian.com>
1511         * Nullable.cs (Nullable<T>.ToString): Return an empty string if
1512         we're null.
1514 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
1516         * Activator.cs MonoType.cs: Applied patch from Carlos Alberto Cortez
1517         (carlos@unixmexico.org). Allow creation of valuetypes with no ctor.
1518         Fixes #73432.
1520 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
1522         * Environment.cs: Bump corlib version.
1524         * Exception.cs (StackTrace): Return the wrapper info as well.
1526 2005-03-02  Kazuki Oikawa  <kazuki@panicode.com>
1528         * NumberFormatter.cs: Some internal classes was converted to structs,
1529         and improved some points.
1531 2005-02-26  Kazuki Oikawa  <kazuki@panicode.com>
1533         * NumberFormatter.cs: Improved performance and memory usage
1534         when integer standard format.
1535         * SByte.cs:
1536         * Int16.cs:
1537         * Int32.cs:
1538         * Int64.cs:
1539         * Byte.cs:
1540         * UInt16.cs:
1541         * UInt32.cs:
1542         * UInt64.cs:
1543         * Single.cs:
1544         * Double.cs:
1545         * TimeSpan.cs: Improved these directly call to NumberFormatter.
1547 2005-02-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1549         * TermInfoDriver.cs: set the xmit mode if available. Handle key input
1550         and translate them into a ConsoleKeyInfo.
1551         * TermInfoReader.cs: added a method to return the bytes of a string
1552         property.
1553         * ConsoleKeyInfo.cs: added copy constructor and setters.
1555 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
1557         * Array.cs: Add missing 2.0 attributes and correct some parameter names.
1559 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1561         * AppDomain.cs: Changed GetAssemblies, LoadAssembly, and Load signatures,
1562         and added some to support the reflection only methods. DoAssemblyResolve
1563         was modified to invoke the new PreBindAssemblyResolve event when the
1564         assembly is reflection only.
1565         
1566 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
1568         * GC.cs Double.cs IntPtr.cs Array.cs Decimal.cs Math.cs Single.cs:
1569         Add net 2.0 ReliabilityContractAttributes.
1571 2005-02-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1573         * TermInfoDriver.cs: cygwin terminals are handled by the windows
1574         console driver.
1576         * TermInfoReader.cs:
1577         * TermInfoNumbers.cs:
1578         * KnownTerminals.cs:
1579         * TermInfoBooleans.cs:
1580         * TermInfoStrings.cs: documented.
1582 2005-02-19  Kazuki Oikawa <kazuki@panicode.com>
1584         * Array.cs: Reverse the order in the Equals calls.
1586 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
1588         * Exception.cs (StackTrace): Implement this in managed code since it is
1589         needed by CAS. Fixes #72146.
1591 2005-02-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1593         * WindowsConsoleDriver.cs: implemented MoveBufferArea.
1595 2005-02-14  Raja R Harinath  <rharinath@novell.com>
1597         * Array.cs (Array.Swapper) [!BOOTSTRAP_WITH_OLDLIB]: Make nested.
1598         See #72015.
1600 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
1602         * Version.cs (CompareTo, Equals): Make sure the versions for
1603         generics handle `null'. The non-generics versions now just call
1604         the regular versions, to reduce code duplication.
1606         * Boolean.cs (CompareTo): make this really work for generics 
1608         * Type.cs (GetProperty): Passing new Type [0] is different than
1609         null. null means `I don't care how many types this has,' while new
1610         Type [0] means `this must have 0 types.'
1612 2005-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1614         * corlib.dll.sources: added WindowsConsoleDriver.cs
1616         * System/ConsoleDriver.cs: use WindowsConsoleDriver on windows and
1617         implemented the few missing properties/methods.
1619         * System/IConsoleDriver.cs: uncommented all methods/properties.
1620         * System/TermInfoDriver.cs: implement changes from IConsoleDriver.
1621         * System/WindowsConsoleDriver.cs: implemented IConsoleDriver for
1622         windows. Only missing MoveBufferArea by now.
1624 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
1626         * Type.cs (IsAssignableFrom): Add support for TypeBuilders.
1628         * Int32.cs AppDomain.cs: Fix warnings.
1630 2005-02-10  Marek Safar  <marek.safar@seznam.cz>
1632         * IServiceProvider.cs: Is not ComVisible.
1634         * NonSerializedAttribute.cs: Fix AttributeUsage flags.
1636         * Type.cs: Fix ClassInterface attribute.
1638 Tue Feb 8 19:26:47 CET 2005 Paolo Molaro <lupus@ximian.com>
1640         * Delegate.cs: remove the finalizer from Delegate: this
1641         is handled internally by the runtime now.
1643 2005-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1645         * Activator.cs: provide the Type name when throwing an exception.
1647 2005-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1649         * TimeZone.cs: lock on the static Hashtable instead of 'this'. Fixes
1650         bug #72238.
1652 Fri Feb 4 15:46:04 CET 2005 Paolo Molaro <lupus@ximian.com>
1654         * Array.cs: provide specialized versions of some methods.
1656 Thu Feb 3 15:15:25 CET 2005 Paolo Molaro <lupus@ximian.com>
1658         * String.cs: provide a managed memcpy and memset method
1659         for use both in corlib and from the JIT. Implement
1660         some methods with the managed helpers and remove some icalls.
1662 2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>
1664         * Exception.cs: Added Data property for NET_2_0 (required for new
1665         unit tests).
1667 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1669         * ConsoleDriver.cs:
1670         * TermInfoDriver.cs:
1671         * IConsoleDriver.cs:
1672         * Console.cs: added BufferWidth and BufferHeight.
1674 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1676         * ConsoleDriver.cs:
1677         * Console.cs:
1678         * TermInfoDriver.cs:
1679         * IConsoleDriver.cs: added a few more properties and fixed cursor
1680         addressing.
1682 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1684         * ConsoleDriver.cs: static class that forwards the Console 2.0 class
1685         calls to the proper driver.
1686         * TermInfoDriver.cs: terminfo based console driver.
1687         * IConsoleDriver.cs: interface implemented by console drivers.
1689         * ConsoleCancelEventArgs.cs:
1690         * ConsoleCancelEventHandler.cs:
1692         * ConsoleModifiers.cs: 
1693         * ConsoleSpecialKey.cs:
1694         * ConsoleColor.cs:
1695         * ConsoleKey.cs: new enumerations.
1697         * ConsoleKeyInfo.cs: New file.
1699         * TermInfoReader.cs: reader for terminfo capabilities files.
1701         * TermInfoNumbers.cs:
1702         * TermInfoBooleans.cs:
1703         * TermInfoStrings.cs: enumations for terminfo property names.
1705         * KnownTerminals.cs: byte arrays for selected terminals.
1707         * Console.cs: added more 2.0 methods and implemented some of them.
1710 2005-01-30  Atsushi Enomoto  <atsushi@ximian.com>
1712         * Int32.cs : (FindSign) IndexOf() is better than creating substring.
1714 2005-01-27  Sebastien Pouliot  <sebastien@ximian.com>
1716         * BadImageFormatException.cs: Protect the fusion (GAC) log from being
1717         disclosed unless code has ControlPolicy and ControlEvidence.
1719 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
1721         * Exception.cs: Compute stack trace on demand.
1723 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
1725         * Environment.cs: Removed hack for static class (NET_2_0). Added 
1726         proper security for FailFast (documented in FDBK20543). Added new
1727         method IsRunningOnWindows to replace (Platform == 128) as the logic is
1728         gonna change in the future (Unix is id #4 in NET_2_0).
1730 2005-01-24  Sebastien Pouliot  <sebastien@ximian.com>
1732         * Environment.cs: Added CAS security (both declarative and imperative)
1733         as a test. This shouldn't affect execution unless --security is 
1734         specified.
1736 2005-01-19  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
1737         * Type.cs: Corrected implementation for the Type.FilterNameIgnoreCase
1738         and Type.FilterName delegates They weren't dealing with the optional '*'
1739         at the end of the filter mask
1741 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
1743         * Array.cs: Fix a typo in the previous patch.
1744         
1745         * Array.cs: Fix some test failures in the generic methods.
1747         * Array.cs: Implement AsReadOnly.
1749 2005-01-13  Geoff Norton  <gnorton@customerdna.com>
1751         * Guid.cs: Fix endian issues (use Mono.Security.BitConverterLE).  Fixes
1752         #71242
1754 2005-01-11  Sebastien Pouliot  <sebastien@ximian.com>
1756         * AppDomain.cs: Removed Activate and ActivateNewProcess methods. They
1757         have been removed from 2.0.
1759 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
1761         * Boolean.cs Char.cs Single.cs Double.cs: Implement IComparable<T> in
1762         NET 2.0.
1764 2005-01-10  Sebastien Pouliot  <sebastien@ximian.com>
1766         * ApplicationIdentity.cs: Throw ArgumentNullException if name is null.
1767         Add default culture (neutral) to the name when none is specified.
1768         * AppDomain.cs: Changed IsDefaultAppDomain (2.0). Is seems that we 
1769         can't trust Id ?
1771 2005-01-09  Sebastien Pouliot  <sebastien@ximian.com>
1773         * DateTime.cs: Reverted last patch for utc as it broke all certificate
1774         handling and another unit test in DateTime.
1776 2005-01-09  Miguel de Icaza  <miguel@ximian.com>
1778         * DateTime.cs: Return immediately if useutc is set to true, there
1779         is no need to do the extra computation (which also happened to
1780         create a new DateTime using the `use_localtime' constructor, which
1781         lead to the erroneous date returns when using 'u' or `U'
1782         formats).   
1784         Fixes another bug in the regression test suite.
1786 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com> 
1788         * AppDomain.cs: Fix the DefaultDomain property to return the root 
1789         domain (as it seems that the root's Id isn't always 0).
1790         * BitConverter.cs: The "special support" for ToString(new byte[0]) is
1791         only for NET_2_0 - previously this was an ArgumentOutOfRangeException.
1793 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
1795         * IntegerFormatter.cs: The - sign inside the "negative" section in
1796         a multi-format string means `show the sign' only if it is the
1797         first token, not `copy verbatim'.  In the other sections it means
1798         `copy-verbatim'.
1800         This makes things like:  (-34).ToString ("#;-#") show up as "-34"
1801         instead of "--34".
1803         The bad news is that this code needs to be rewritten to handle all
1804         the formatting cases, see bug #71112 for details.
1806         * Convert.cs (Convert.ToType): Throw an InvalidCastException if
1807         the conversion is invalid, not ArgumentException, this fixes
1808         another regression in our test suite.
1810 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
1812         * AppDomain.cs: Add ApplicationIdentity property for 2.0;
1813         * AppDomainManager.cs: Remove HostRefusedSet support (it does not 
1814         exists anymore).
1816 2005-01-08  Zoltan Varga  <vargaz@freemail.hu>
1818         * DateTime.cs: Create MaxValue and MinValue using a different constructor to avoid static 
1819         initialization problems.
1821 2005-01-02  Ben Maurer  <bmaurer@ximian.com>
1823         * Int32.cs: NumberStyles.AllowExponent was supported by the
1824         Int32.Parse function. From Akira <mei@work.email.ne.jp>. Fixes bug
1825         70469.
1827 2005-01-01  Atsushi Enomoto  <atsushi@ximian.com>
1829         * Base64FormattingOptions.cs : it was not in System namespace.
1831 2004-12-21  Atsushi Enomoto  <atsushi@ximian.com>
1833         * DateTime.cs : If no progress on value string, don't regard as
1834           matched. This fixes bug #70707.
1836 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
1838         * Environment.cs: Bump corlib version.
1840 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
1842         * Array.cs (DoBinarySearch): Fix a warning.
1844 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
1846         * Environment.cs: Bump corlib version.
1848         * AppDomain.cs: Add new DefineInternalDynamicAssembly () method.
1850 2004-12-06  Ben Maurer  <bmaurer@ximian.com>
1852         * Exception.cs: Prevent stringifying the type name on the
1853         ctor. this gets called a few times on every execution to create a
1854         nullref exception.
1856 2004-12-06  Martin Baulig  <martin@ximian.com>
1858         * Decimal.cs: Decimal constant support has been merged into GMCS,
1859         removed the FIXME.
1861 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
1863         * Environment.cs: Bump corlib version.
1864         
1865         * Environment.cs: Bump corlib version.
1867 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
1869         * MonoType.cs (UnderlyingSystemType): Make this return this as in
1870         MS.NET. Fixes #56245.
1872 2004-11-29  Atsushi Enomoto  <atsushi@ximian.com>
1874         * GC.cs : Collect(generation) actually does not throw an exception
1875           even if generation > MaxGeneration (MS document bug).
1877 2004-11-28  Zoltan Varga  <vargaz@freemail.hu>
1879         * Exception.cs: Implement _Exception under NET_2_0.
1881         * Byte.cs SByte.cs UInt16.cs Int16.cs: Make these compile under csc 2.0.
1883         * AccessViolationException.cs DataMisalignedException.cs OperationCanceledException.cs
1884         NotCancelableException.cs TimeoutException.cs: New files.
1886 2004-11-23  Raja R Harinath  <rharinath@novell.com>
1888         * Decimal.cs [NET_2_0]: Use old code till GMCS imports decimal
1889         constant support.
1891 2004-11-23  Raja R Harinath  <rharinath@novell.com>
1893         * Decimal.cs [BOOTSTRAP_WITH_OLDLIB]: Use old code for compilers
1894         without decimal constant support.
1896 2004-11-23  Marek Safar  <marek.safar@seznam.cz>
1898         * Decimal.cs: Updated to use compiler decimal constant support.
1900 2004-11-20  Zoltan Varga  <vargaz@freemail.hu>
1902         * MonoType.cs: Revert last change since it breaks remoting.
1904 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
1906         * MonoType.cs (UnderlyingSystemType): Make this return this as in
1907         MS.NET. Fixes #56245.
1909 2004-11-17  Carlos Alberto Cortez <carlos@unixmexico.org>
1911         * INullable.cs: New interface added.
1912         * Nullable.cs: Methods added. Also a static Nullable class
1913         containing static methods.
1914         
1915 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
1917         * BitConverter.cs: Added support for special case when ToString is 
1918         called with (new byte [0]).
1920 2004-11-10  Lluis Sanchez  <lluis@novell.com>
1922         * Exception.cs: Added setter for StackTrace.
1924 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
1926         * IntegerFormatter.cs: Avoid .ToCharArray
1928 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
1930         * Single.cs, Double.cs (GetHashCode): Better hashcode impl
1932 2004-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1934         * InvalidOperationException.cs: make the message more meaningful and
1935         real. Fixes bug #69055.
1937 2004-10-28  Ben Maurer  <bmaurer@ximian.com>
1939         * String.cs: Rather than == String.Empty, use .Length == 0. It
1940         is a bit faster (avoids a method call, and the code is less complex).
1942 2004-10-24  Fawad Halim  <fawad@fawad.net>
1943         * Environment.cs: If an Environment variable value isn't found, leave the trailing % of the reference for further matches.
1944         Add text between end of current lookup window and next % match if we just got a match, or add all text to the end if there are no further % matches.
1945         This fixes bug #64995.
1947 2004-10-19  Lluis Sanchez  <lluis@novell.com>
1949         * MarshalByRefObject.cs: Field _identity is not serializable.
1950         This fixes bug #68567.
1952 2004-10-17  Ben Maurer  <bmaurer@ximian.com>
1954         * DateTime.cs (ZeroPad): Use unsafe code to speed this up. We
1955         avoid entering slow integer formatting code.
1957         (_ToString): Use ZeroPad here when possible, as it is faster.
1959 2004-10-11  Martin Baulig  <martin@ximian.com>
1961         * Environment.cs: Bump corlib version to 28.
1963 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
1965         * Convert.cs (ToType): Throw an exception when converting null to a
1966         valuetype. Fixes #67780.
1968 2004-10-08  Atsushi Enomoto  <atsushi@ximian.com>
1970         * DateTime.cs : Performance fix. ParseExact() implementation should
1971           avoid s = s.Substring(1).
1973 2004-10-08  Atsushi Enomoto  <atsushi@ximian.com>
1975         * DateTime.cs : When it it not exact parse, 'Z' is allowed as a suffix
1976           of m/s/t/z. This fixes bug 66723.
1978 Wed Oct 6 12:37:54 CEST 2004 Paolo Molaro <lupus@ximian.com>
1980         * String.cs: make GetHashCode() managed.
1982 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
1984         * AppDomain.cs: Make ThreadStatic variables static. Fixes #56614.
1986         * Runtime*Handle.cs ModuleHandle.cs: Add Equals + GetHashCode.
1988         * ModuleHandle.cs: Add missing methods.
1990         * RuntimeTypeHandle.cs: Add GetModuleHandle () method.
1992 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
1994         * AttributeTargets.cs: Add 2.0 GenericParameter value.
1996         * Environment.cs: Bump corlib version.
1998 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
2000         * Int32.cs UInt32.cs Byte.cs SByte.cs Int16.cs UInt16.cs Int64.cs UInt64.cs: Implement 2.0 TryParse methods.
2002 2004-09-30  Geoff Norton  <gnorton@customerdna.com>
2004         * Convert.cs: ConvertToBase* was not endian aware.  Implemented EndianSwap
2005         and swapping of all values before going into the BitConverter so that values
2006         are returned with proper endianess.
2008 2004-09-23  Martin Garton  <martin@wrasse.demon.co.uk>
2010         * Convert.cs: ToType was returning unconverted object when it should
2011         fail with an ArgumentException.
2013 2004-09-27  Zoltan Varga  <vargaz@freemail.hu>
2015         * Array.cs: Add stub for AsReadOnly<T>.
2016         
2017 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
2019         * Type.cs: Add MakePointerType && stub for ReflectionOnlyGetType.
2021         * MonoCustomAttrs.cs (GetCustomAttributesBase): Add support for
2022         parameters.
2024 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
2026         * MonoCustomAttrs.cs (GetCustomAttributesBase): Add support for
2027         methods and fields.
2028         
2029         * MonoCustomAttrs.cs: Beginnings of support for returning 2.0 pseudo
2030         custom attributes.
2032         * MonoCustomAttrs.cs (RetrieveAttributeUsage): Avoid infinite recursion.
2034         * MonoCustomAttrs.cs (GetCustomAttributes): Fix the 'attributeType is 
2035         sealed' optimization.
2037         * Type.cs: Implement 2.0 StructLayoutAttribute property. 
2039         * Type.cs Add GetPseudoCustomAttributes () method.
2041 2004-09-24  Martin Baulig  <martin@ximian.com>
2043         * Type.cs (Type.GetGenericParameterConstraints): New public method.
2045 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
2047         * MonoCustomAttrs.cs (GetCustomAttributes): Rename the icall to
2048         GetCustomAttributesInternal and add a 'pseudoAttrs' argument.
2050         * Type.cs: Tweak Module property in 2.0 build.
2052 2004-09-23  Martin Baulig  <martin@ximian.com>
2054         * Type.cs (Type.GenericParameterAttributes): New public property.
2056 2004-09-23  Martin Baulig  <martin@ximian.com>
2058         * GenericParameterAttributes.cs: New file.
2060 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
2062         * ModuleHandle.cs: Updated after changes to Module class.
2064 2004-09-21  Geoff Norton <gnorton@customerdna.com>
2066         * Type.cs: BindingFlags.IgnoreCase was being ignored, this reimplements
2067         this filter. Fixes bug #65778.
2069 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
2071         * Environment.cs: Bump corlib version.
2073 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
2075         * ModuleHandle.cs: New file.
2077         * RuntimeFieldHandle.cs: Add an internal ctor.
2079 2004-09-19  Dick Porter  <dick@ximian.com>
2081         * Console.cs: Use the internal wrappers for StreamReader and
2082         StreamWriter that catch IOException.
2084 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
2086         * Environment.cs: Bumped mono_corlib_version to 25.
2088 2004-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2090         * AppDomain.cs: added SetupInformationNoCopy property, since
2091         SetupInformation creates a copy now, all updates to it should use the
2092         actual data. Fixes bug #61991 take 2.
2094 2004-09-09  Tim Coleman <tim@timcoleman.com>
2095         * Base64FormattingOptions.cs: New enum
2096         * Convert.cs: Add new ToBase64String methods for Fx 2.0
2098 2004-09-08  Marek Safar  <marek.safar@seznam.cz>
2100         * Console.cs,
2101         * GC.cs: Class is static for NET_2_0.
2103 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
2105         * Activator.cs: Make sure not to call .GetType on a
2106         null argument. fixes 63852
2108 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
2110         * Array.cs (Clear): make this an icall.
2112 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
2114         * MonoCustomAttribute.cs: Avoid the call to GetBase when possible.
2116 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2118         * Environment.cs: (ExpandEnvironmentVariables) don't nullify the case
2119         insensitive enironment variables hashtable once we create it.
2121 2004-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2123         * AppDomain.cs: Changed 2 imperative security demands to declarative
2124         (unsupported) so it doesn't (for now) call the security runtime.
2126 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
2128         * Delegate.cs: Free the delegate trampoline in the finalizer.
2130 2004-08-26  Sebastien Pouliot  <sebastien@ximian.com>
2132         * ApplicationId.cs: Completed GetHashCode using information from MS
2133         (FDBK13339).
2135 2004-08-23  Sebastien Pouliot  <sebastien@ximian.com>
2137         * Boolean.cs: Added TryParse static method for NET_2_0 profile.
2139 2004-08-19  Atsushi Enomoto  <atsushi@ximian.com>
2141         * DateTime.cs : When hour format is "hh", MS.NET (maybe incorrectly)
2142           allows 12, that should not be accepted (13 is rejected) and
2143           interpreted as 0. This fixes bug 63376.
2145 2004-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2147         * Version.cs: Fixed Clone so we can use it on versions with only
2148         major/minor or major/minor/build.
2150 2004-08-17  Martin Baulig  <martin@ximian.com>
2152         * MonoType.cs (MonoType.getFullName): Added `bool full_name'
2153         argument specifying whether or not to include the type arguments.
2154         (MonoType.FullName): Don't include the type arguments.
2155         (MonoType.ToString): Include them here.
2157         * Environment.cs: Bumped mono_corlib_version to 24.
2159 2004-08-16  Duncan Mak  <duncan@ximian.com>
2161         * AttributeUsageAttribute.cs: Change the AttributeUsage to
2162         AttributeTargets.Class, from AttributeTargets.All, fixes Zoltan's
2163         bug #62895.
2165 2004-08-11  Marek Safar  <marek.safar@seznam.cz>
2167         * AppDomain.cs: Fixed typo of DefineDynamicAssembly argument.
2168         Added call to AddPermissionRequests to pass permissions
2169         arguments.
2170         * Environment.cs: Added a few Fx 2.0 methods
2172 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
2174         * ApplicationId.cs: Fixed typo to fix NET_2_0 compilation.
2175         * AppDomain.cs: Fixed use of Evidence and AppDomainSetup (copies, not
2176         references). Added (non-obsolete) Fx 2.0 properties and methods.
2177         * AppDomainSetup.cs: Added internal copy constructor.
2178         * DomainManagerInitializationFlags.cs: Fixed values.
2180 2004-08-08  Sebastien Pouliot  <sebastien@ximian.com>
2182         * AppDomainInitializer.cs: New Fx 2.0 class for AppDomain.
2183         * AppDomainManager.cs: New Fx 2.0 class for AppDomain.
2184         * ApplicationActivator.cs: New Fx 2.0 class for AppDomain.
2185         * ApplicationId.cs: New Fx 2.0 class.
2186         * ApplicationIdentity.cs: Fixed ToString.
2187         * DomainManagerInitializationFlags.cs: New Fx 2.0 flags for AppDomain.
2189 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
2191         * AppDomain.cs: Added a new icall, getDomainByID, to get the an 
2192         AppDomain using it's Id. Completed SetAppDomainPolicy.
2193         * Environment.cs: Bumped mono_corlib_version to 23.
2195 2004-08-02  Martin Baulig  <martin@ximian.com>
2197         * DateTime.cs, TimeSpan.cs, Guid.cs, Version.cs: Implement IComparable<T>.
2199 2004-07-29  Atsushi Enomoto  <atsushi@ximian.com>
2201         * Environment.cs : GacPath on windows is based on mscorlib.dll, and
2202           now its location is changed.
2204 2004-07-21  Lluis Sanchez Gual  <lluis@novell.com>
2206         * Environment.cs: Return the MS.NET 2.0 beta1 runtime version for the
2207           NET_2_0 profile.
2208         
2209 2004-07-18  Martin Baulig  <martin@ximian.com>
2211         * Array.cs: Ben Maurer implemented all the new generic methods
2212         here :-)
2214 2004-07-17  Martin Baulig  <martin@ximian.com>
2216         * Decimal.cs: Implement IComparable<Decimal>.
2218 2004-07-17  Martin Baulig  <martin@ximian.com>
2220         * Byte.cs, Int16.cs, Int32.cs, Int64.cs, SByte.cs, String.cs,
2221         UInt16.cs, UInt32.cs, UInt64.cs: Implement IComparable<T>.      
2223 2004-07-13  Sebastien Pouliot  <sebastien@ximian.com>
2225         * ActivationContext.cs: New class in Fx 2.0. Required for 
2226         System.Security.Policy.
2227         * ApplicationIdentity.cs: New class in Fx 2.0. Required for 
2228         System.Security.Policy.
2229         * IApplicationDescription.cs: New interface in Fx 2.0. Required for 
2230         System.Security.Policy.
2231         * IHostContext.cs: New interface in Fx 2.0. Required for 
2232         System.Security.Policy.
2234 2004-07-12  Geoff Norton <gnorton@customerdna.com>
2236         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
2237           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
2238           and will add/subtract the hour if needed
2240 2004-07-07  Geoff Norton <gnorton@customerdna.com>
2242         * Monotype.cs: Patch for bug #58844.  Dont throw exceptions right away;
2243           pass through all the possibly BindingInfo's and keep a bool value as to the type
2244           of exception we might need to throw;
2246 2004-07-07  Geoff Norton <gnorton@customerdna.com>
2248         * Patch to fix bug #58973
2250 2004-07-02  Jackson Harper  <jackson@ximian.com>
2252         * PlatformID.cs: New 2.0 values.
2253         
2254 2004-06-25  Ben Maurer <bmaurer@ximian.com>
2255         
2256         * Environment.cs: GetFolderPath has new behavior. r=miguel
2258 2004-06-23  Sebastien Pouliot  <sebastien@ximian.com>
2260         * DateTime.cs: Throw ArgumentOutOfRangeException if the year is
2261         bigger than 9999. Fix bug #41845.
2262         * FloatingPointFormatter.cs: Applied correction from Jon Skeet on
2263         the "R"eversible format for negative numbers.
2265 2004-06-21  Jackson Harper  <jackson@ximian.com>
2267         * Decimal.cs: Make sure to use invariant culture when parsing
2268         floats stringified with the invariant culture. Patch by Rodrigo
2269         B. de Oliveira.
2270         
2271 2004-06-19  Atsushi Enomoto  <atsushi@ximian.com>
2273         * FloatingPointFormatter.cs : Literal string should be kept in the
2274           output.
2276 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
2278         * DateTime.cs : Concatenating whitespace removal was not working fine.
2279           Modified FormatException message (1 cent kindness).
2281 2004-06-18  Ben Maurer  <bmaurer@ximian.com>
2282         
2283         * Action.cs, ArraySegment.cs, Comparison.cs, Converter.cs, Predicate.cs:
2284         new generics classes
2285         * IComparable.cs: add the new <T> version.
2286         * EventHandler.cs: new <T> version.
2287         
2288 2004-06-18  Dick Porter  <dick@ximian.com>
2290         * String.cs: The icall can cope with embedded \0 now.
2292 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
2294         * DateTime.cs :
2295           - Added new common pattern "yyyy/M/dZ"
2296           - empty string should not be compared in _ParseEnum()
2297           - Use culture independent string comparison in _ParseString()
2298           - Whitespace removal should be checked after '..' token check (some
2299             pattern such like es-ES LongDatePattern contains spaces in '..').
2300           - formats null check should be done (to throw ArgumentNullException)
2301             in ParseExact().
2302           - When specified one character format, dates are incorrectly regarded
2303             as to use invariant culture.
2305 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
2307         * ArgIterator.cs: changed layout to Auto
2308         * DateTime.cs: changed layout to Auto
2310 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
2312         * DateTime.cs: CRLF to LF
2314 2004-06-17  Sebastien Pouliot  <sebastien@ximian.com>
2316         * Decimal.cs: Fixed regression in System.Data caused by the recent 
2317         changes. Adapted (and moved) the code to correct the scale from 
2318         SqlMoney. Removed unused (and unusable) IsOne and fixed IsZero (where
2319         scale has no importance).
2321 2004-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
2323         * Activator.cs: In CreateInstance(), use Public|Instance if access binding
2324           attributes are omitted.
2326 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2328         * DateTime.cs : GetDateTimeFormats(char, IFormatProvider) should also
2329           check if the format character is valid.
2331 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2333         * DateTime.cs : AddDays(double) rounds the input.
2335 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2337         * DateTime.cs : Incorrect maxvalue comparison in ToUniversalTime().
2338           Fixed ToLocalTime() as well, but it does check range for MinValue.
2340 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
2342         * DateTime.cs : Added overflow check in ToUniversalTime() and
2343           ToLocalTime(). Fixed bug #60253.
2345 2004-06-16  Sebastien Pouliot  <sebastien@ximian.com>
2347         * FloatingPointFormatter.cs: Implemented "R" format using Jon Skeet
2348         source code (with permission). Fix (biggest) part of bug #60110.
2349         http://www.yoda.arachsys.com/csharp/floatingpoint.html
2351 2004-06-15  Sebastien Pouliot  <sebastien@ximian.com>
2353         * Decimal.cs: Fixed scale after Round (a different scale is correct 
2354         from a math point of view but affect the string representation of the
2355         value). Note: other operations also have scale problems!
2356         * DecimalFormatter.cs: Fixed FormatGeneral to match Fx 1.1 output.
2357         * FloatingPointFormatter.cs: Fixed ToString which doesn't use banker's
2358         rounding (which is the rounding provided by Math.Round). This fix bug
2359         #60111. The code (new Round methods) should be moved elsewhere (as it
2360         may also be required elsewhere) post Mono 1.0.
2362 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
2364         * AppDomainSetup.cs: added TODO for serialization
2365         * ExecutionEngineException.cs: added missing serialization ctor
2366         * InvalidProgramException.cs: added missing serialization ctor
2367         * MulticastNotSupportedException.cs: added missing serialization ctor
2368         * ObsoleteAttribute.cs: fixed serialization compatibility with MS.NET
2369         * Random.cs: fixed serialization compatibility with MS.NET
2371 2004-06-15  Paolo Molaro <lupus@ximian.com>
2373         * Type.cs: removed unused (and non-existing) icall type_is_instance.
2375 2004-06-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2377         * Environment.cs: use internalGetHome instead of getting "HOME" as
2378         that variable may not be defined.
2380 2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>
2382         * TimeSpan.cs: Fixed timespan with large values for hours or minutes
2383         (overflow is only checked for days but can also occurs in hours and
2384         minutes which uses Int32 when multiplying). The new results match MS
2385         implementation.
2387 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
2389         * FloatingPointFormatter.cs : Recognize '%' and '\u2030' and replace
2390           them with matching NumberFormatInfo properties.
2392 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
2394         * Double.cs : Use IFormatProvider.GetFormat() instead of literal '-'.
2395         * FloatingPointFormatter.cs :
2396           Use NumberFormatInfo.NegativeSign. This change saves many XSLT test
2397           failures.
2398           Format Permille pattern (It is undocumented but actually available,
2399           and used in xsl:format-number).
2401 2004-06-14  Raja R Harinath  <rharinath@novell.com>
2403         * Console.cs (Console.Write, Console.WriteLine): Disable __arglist
2404         version with BOOTSTRAP_WITH_OLDLIB.
2405         * String.cs (STring.Concat): Likewise.
2407 2004-06-13  Atsushi Enomoto  <atsushi@ximian.com>
2409         * FloatingPointFormatter.cs :
2410           - Don't format more than 15 fraction digits. Don't report to Pedro
2411             directly (removing the error message with his concent).
2412           - When format string starts with '.', it means integral part format 
2413             is not specified. Ignore '.' characters after the first
2414             appearance. Fixed bug #59890.
2415           - 0.0 is formatted only before the third ';' appearance.
2417 2004-06-11  Sebastien Pouliot  <sebastien@ximian.com>
2419         * DateTime.cs: Added a AddRoundedMilliseconds which use the "old Mono"
2420         rounding logic which worked for FromOADate (while the newer didn't).
2421         * TimeSpan.cs: Now throw an OverflowException when the timespan is
2422         over MaxValue or under MinValue.
2424 2004-06-11  Martin Baulig  <martin@ximian.com>
2426         * Console.cs (Write, WriteLine): Implemented the varargs versions.
2428 2004-06-11  Martin Baulig  <martin@ximian.com>
2430         * String.cs (Concat): Implemented the varargs version.
2432 2004-06-10  Sebastien Pouliot  <sebastien@ximian.com>
2434         * Decimal.cs: Hacked the Parse method to allow the runtime C code to
2435         decode it properly (i.e. matching MS results). Fixed the Round method
2436         for negative decimal numbers (moved code from Math.cs).
2437         * Math.cs: Now use Decimal class for Round(Decimal,int). Required to
2438         fix a bug when rounding a negative decimal.
2440 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2442         * AppDomain.cs: set the _principal to null when changing the policy.
2443         * Console.cs: remove ClsCompliant attribute from a method marked as
2444         internal and added comment.
2446 2004-06-10  Gert Driesen <drieseng@users.sourceforge.net>
2448         * Delegate.cs: marked protected fields private to match public
2449         API of MS.NET, marked DynamicInvokeImpl and GetMethodImpl
2450         protected to fix public API
2451         * Enum.cs: marked ctor protected to match public API of MS.NET
2452         * MulticastDelegate.cs: marked DynamicInvokeImpl protected to
2453         match public API of MS.NET
2455 2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
2457         * DateTime.cs : Added more common patterns.
2459 2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>
2461         * Decimal.cs: Fixed banker rounding by calling Math.Round. This won't
2462         be a performance winner (the actual Math code has a note to wait a
2463         better Decimal implementation) but it returns the correct results
2464         (without adding new code in corlib or the runtime). Fix #37744.
2466 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
2468         * DateTime.cs :
2469           - A bunch of fixes (patch by Steven Brown). Fraction seconds are 
2470             now represented as double. Strict token check for 'Z'.
2471           - Pattern validity check in GetDateTimeFormats(char).
2472           - Fixed pattern "yyyy/M/d HH:mm:ss".
2474 2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>
2476         * Decimal.cs: Fixed remainder (and optimized some cases not to call 
2477         unmanaged code). Simplified divide. Removed workaround for bug #59793.
2478         Fixed GetHashCode to return different result for X and -X.
2480 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
2482         * DateTime.cs :
2483           - Now re-checked all common format patterns. They should be tried
2484             with both current culture and invariant culture. Since '/' covers
2485             '-', removed extraneous patterns. Added more common patterns
2486             such as "yyyy-MM-dd" and X509Certificate pattern (it is valid
2487             only after NET_1_1). Commented out 1 character format patterns.
2488           - The format patterns we should try should not be obtained by
2489             GetAllDateTimePatterns(). Just use 'd', 'D', 't', 'T', ... (one
2490             character patterns), to handle UTC correctly. Examined patterns
2491             are changed, to 1) common patterns with specified (or current)
2492             culture, 2) common patterns with invariant, 3) The above "one
2493             character patterns" with specified (or current) culture.
2494           - When trying to parse some kind of patterns such as RFC1123, 
2495             always use invariant DateTimeFormatInfo so that they can avoid
2496             parsing with culture-dependent calendar.
2497           - Check "GMT" only when doing Parse(). Don't it when ParseExact().
2498           - Removed extraneous '-' case. It is not special one.
2499           - When ParseExact(), allow only '/' for '/' pattern character.
2500           - When Parse(), allow any non-letter & non-number characters.
2501           - When pattern is not fully parsed, reject that format.
2502           - Added "exact" parameter to some ParseExact().
2503           - RFC1123 pattern is (again) now parsed in local time. I regressed
2504             some problems in previous fix.
2506 2004-06-08  Sebastien Pouliot  <sebastien@ximian.com>
2508         * Decimal.cs: Fixed cast to integer types to truncate (not round) the
2509         value.
2511 2004-06-07  Duncan Mak  <duncan@ximian.com>
2513         * Exception.cs (Source): This can return null.
2515 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
2517         * DateTime.cs: Fixed FromFileTime for negative values. Fixed 
2518         constructor to limit range of milliseconds from 0,999. Fixed
2519         ToType method to work for object, string and DateTime.
2521 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
2523         * DateTime.cs: Fixed OLE Automation date conversions: timezone 
2524         insensitive, wrong exception in FromOADate, handling of Min/Max 
2525         values, negative doubles where integer part is negative but 
2526         decimals are positive! Charming format ;-)
2528 2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>
2530         * String.cs: Fixed Join in case separator parameter is null.
2531         * TimeSpan.cs: Cache format errors during parsing and throw 
2532         FormatException only if there was no overflow.
2534 2004-06-06  Gert Driesen <drieseng@users.sourceforge.net>
2536         * MonoCustomAttrs.cs: fixed issue where an empty array was 
2537         returned when GetCustomAttributes was invoked with null
2538         attribute type and there was only one result
2540 2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>
2542         * Decimal.cs: Fixed ToString(String.Empty) to default ("G").
2543         * Int16.cs: Fixed ToString(String.Empty) to default ("G").
2544         * Int32.cs: Fixed ToString(String.Empty) to default ("G").
2545         * Int64.cs: Fixed ToString(String.Empty) to default ("G").
2546         * SByte.cs: Fixed ToString(String.Empty) to default ("G").
2547         * UInt16.cs: Fixed ToString(String.Empty) to default ("G").
2548         * UInt32.cs: Fixed ToString(String.Empty) to default ("G").
2549         * UInt64.cs: Fixed ToString(String.Empty) to default ("G").
2551 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
2553         * Convert.cs: Fixed the convertion of negative integers (byte, short, 
2554         int and long) into string in a specific base (2, 8, 10 or 16).
2556 2004-06-04  Sebastien Pouliot  <sebastien@ximian.com>
2558         * Math.cs: Fixed IEEERemainder to return -0 (0x8000000000000000) when
2559         the dividend is negative and the result is 0 (remainder).
2561 2004-06-03  Sebastien Pouliot  <sebastien@ximian.com>
2563         * Delegate.cs: Fix the NullReferenceException in Combine(Delegate[]).
2565 2004-06-02  Sebastien Pouliot  <sebastien@ximian.com>
2567         * TimeSpan.cs: Fixed overflow issues when delaing with big (days) time
2568         spans. Fixed parsing when only days are presents in the string (which
2569         should be illegal according to the documentation but is supported).
2571 2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>
2573         * TimeSpan.cs: Fixed exceptions in FromXXX methods as they are 
2574         somewhat different from the documentation.
2576 2004-06-01  Gert Driesen <drieseng@users.sourceforge.net>
2578         * Type.cs: added missing attributes on InvokeMember
2580 2004-06-01  Miguel de Icaza  <miguel@ximian.com>
2582         * String.cs: Flag concat with four arguments internal. 
2584 2004-05-31  Sebastien Pouliot  <sebastien@ximian.com>
2586         * Array.cs: Fixed legal case where value is null.
2587         * Byte.cs: Fixed ToString when format is an empty string (use "G").
2588         * Guid.cs: Renamed private fields (and changed some to signed) to 
2589         match MS implementation and allow serialization to work. Fix 
2590         bug #59113.
2592 2004-05-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2594         * DateTime.cs: adjust milliseconds for fraction specifier ('f').
2596 2004-05-30  Miguel de Icaza  <miguel@ximian.com>
2598         * Console.cs: Remove *again* the version of WriteLine with four
2599         arguments;  That should *not* be added.  
2601         Flag it as internal as people migrate their code.
2603 2004-05-29  Sebastien Pouliot  <sebastien@ximian.com>
2605         * Convert.cs: Fixed ToSByte(string,IFormatProvider) to throw 
2606         ArgumentNullException (only case, all other returns 0). Fixed exception
2607         reporting for hex prefix only strings. Fixed ChangeTo where null could
2608         be misinterpreted between null and Empty.
2610 2004-05-28  Sebastien Pouliot  <sebastien@ximian.com>
2612         * Convert.cs: Fixed integer parsing for special cases (0x, 0X for base
2613         16), non-base 10 negative numbers ... see new unit tests. Fixed the 
2614         case when we parse Int64.MinValue (positive doesn't fit a signed long).
2616 2004-05-28  Jackson Harper  <jackson@ximian.com>
2618         * Environment.cs: Increment version number.
2619         
2620 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
2622         * AppDomain.cs (Load): Try loading from assemblyRef.CodeBase if exists.
2623         Fixes #59189.
2625 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
2627         * DateTime.cs : I reverted my fix by accident :(
2629 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
2631         * DateTime.cs :
2632           - In ToString(), Don't use culture-dependent daynames to format
2633             Universal/RFC1123 date/time. Also, use FullDateTimePattern for 'U'.
2634           - Fixed GetDateTimeFormats () that generated incorrect 'U' value 
2635             (since the format string is the same as 'F').
2637 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
2639         * DateTime.cs : don't adjust utc value in ToString(). It must output
2640           the same time value, just adding 'Z' for UTC.
2642 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
2644         * DateTime.cs : in 'Z' case, remove the 'Z' char from input before
2645           proceeding.
2647 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2649         * AppDomainSetup.cs: InitAppDomainSetup is not needed now.
2651 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
2653         * Byte.cs: Fixed parsing for "-0" which is valid for unsigned types.
2654         * Convert.cs: Convert with a base parameter cannot parse negative 
2655         string numbers, even "-0".
2656         * UInt16.cs: Fixed parsing for "-0" which is valid for unsigned types.
2657         * UInt32.cs: Fixed parsing for "-0" which is valid for unsigned types.
2658         * UInt64.cs: Fixed parsing for "-0" which is valid for unsigned types.
2660 2004-05-27  Atsushi Enomoto <atsushi@ximian.com>
2662         * DateTime.cs : 
2663           - Added "yyyy/MM/dd HH:mm:ss 'GMT'" and "yyyy-MM-dd HH:mm:ss 'GMT'"
2664             to common formats (yes, I know it is nothing more than hack)
2665           - Fixed some GetDateTimeFormats() that just returned patterns.
2666           - For InvariantCulture, now try both supported formats and our
2667             predefined formats.
2668           - It was accepting incorrectly extraneous characters. That caused
2669             some UTC/non-UTC bug.
2670           - RFC1123 string should return universal time. Uncomment again (the
2671             problem should went away because of the extra characters fix above.
2673             With some of the changes above, fixed bug #47720.
2675 2004-05-27  Atsushi Enomoto <atsushi@ximian.com>
2677         * DateTime.cs : quick revert 'Z' support for certificate verifications.
2679 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2681         * Array.cs: Removed duplicate condition if LastIndexOf.
2683 2004-05-26  Atsushi Enomoto <atsushi@ximian.com>
2685         * DateTime.cs :
2686           - Added "yyyy-MM-dd HH:mm:ss" to "compatible patterns".
2687             (Fixed bug #58938.)
2688           - As a quick remedy to accept more patterns, Parse() now also tries
2689             InvariantInfo patterns (this is because we have no more than one
2690             pattern for each pattern component.)
2691           - In _DoParse(), 'Z' should not be read as timezone specifier. Some
2692             culture uses 'Z' as AM/PM designer, and it should be recognized as
2693             part of the UTCpattern (if it actually UTC pattern for the culture
2694             contains 'Z').
2696 2004-05-26  Gert Driesen (drieseng@users.sourceforge.net)
2698         * MonoCustomAttrs.cs: Fixed issue with AllowMultiple, as MS
2699         seems to allow multiple attributes with AllowMultiple at
2700         runtime.
2702 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2704         * Byte.cs: Throw an OverflowException for negative numbers.
2705         * Convert.cs: Accept 0x and 0X as prefix when parsing base16 strings.
2706         * Environment.cs: Bumped mono_corlib_version to 20 (rng interface).
2708 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
2710         * Array.cs: Fixed possible integer overflow.
2711         * BitConverter.cs: Fixed a possible integer overflow in ToString.
2712         * Guid.cs: Added an internal method to create a random Guid without
2713         using CryptoConfig (which is heavy on first use). This is only used
2714         in S.R.E.ModuleBuilder to speedup MCS compilation.
2715         * String.cs: Fixed reported exception for PadLeft|Right. Fixed 
2716         possible integer overflow in methods that takes index and count
2717         as parameters.
2719 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2721         * String.cs: Add new Strcpy icalls which take a char array as 
2722         parameter.
2724 2004-05-25  Atsushi Enomoto <atsushi@ximian.com>
2726         * DateTime.cs : added more invariant format patterns. This should
2727           really fix bug #57656.
2729 2004-05-25 14:14 CET Patrik Torstensson <totte@hiddenpeaks.com>
2731         * BitConverter.cs (ToBoolean): Return true or false instead
2732         of unsafe returing byte as bool. Fixes bug #58874.
2734 2004-05-25  Atsushi Enomoto <atsushi@ximian.com>
2736         * DateTime.cs : In ToString(string, IFormatProvider), use "G" if
2737           string format argument is null.
2739 2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>
2741         * Version.cs: Rename of data fields to match those in Microsoft.NET.
2742           Patch by PAF@design.ru.
2744 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2746         * DateTime.cs: allow double quotes in the formats. Don't set
2747         next_not_digit to true in presence of single or double quotes. Patch by
2748         Martin Probst.
2750 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
2752         * AppDomainSetup.cs (InitAppDomainSetup): This one returns void.
2754 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
2756         * Array.cs: Fixed exception when we try to Clear outside bounds.
2757         * Boolean.cs: Fixed Equals for True!=True (see bugzilla #58874).
2758         * BitConverter.cs: Fixed negative index and integer overflow in
2759         To... methods.
2760         * Buffer.cs: Fixed integer overflow in BlockCopy.
2762 2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>
2764         * Array.cs: Clear can now work on multidimentional arrays.
2765         * IntPtr.cs: We now only accept 32bits values in the long constructor
2766         unless we're on a 64 bits machine.
2767         * UIntPtr.cs: We now only accept 32bits unsigned values in the ulong 
2768         constructor unless we're on a 64 bits machine.
2770 2004-05-22  Duncan Mak  <duncan@ximian.com>
2772         * Convert.cs: The file was mostly in DOS endings already, for the
2773         sake of consistency, converted it all to DOS endings.
2774         (ToType): When value is null, immediately return null and don't
2775         ever throw a NullReferenceException. When conversionType is null,
2776         throw an InvalidCastException. Give a better error message when
2777         attempting to convert to a DBNull as well.
2779 2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>
2781         * Decimal.cs: Fixed To... methods that needs to trunk the integer part
2782         of Decimal (and not use the banker's rounding like Convert.To...).
2783         * Single.cs: Fixed CompareTo and Equals (copied fix from Double) wrt
2784         to NaN compares (see new unit tests).
2786 2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>
2788         * Convert.cs: Added checks for integer overflow for From|ToBase64Char.
2789         Also fixed the case where wide (16 bits) characters were converted to 
2790         bytes.
2792 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
2794         * ThreadStaticAttribute.cs
2795         * ContextStaticAttribute.cs
2796         * FlagsAttribute.cs
2797         * ObsoleteAttribute.cs : now that Inherited is false by
2798         default on AttributeUsageAttribute (as it should be) we
2799         need to explicitly set Inherited to false for those
2800         attributes should it be be false.
2802 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
2804         * AttributeUsageAttribute.cs: Inherited property should be
2805         true by defaultrs.cs: respect Inherited property, and
2807 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
2809         * MonoCustomAttrs.cs: respect Inherited property, and
2810         AllowMultiple property of a CustomAttribute. This fixes
2811         a major issue we had with respect to custom attributes.
2813 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
2815         * MonoType.cs: throw ArgumentNullException when type parameter in
2816         GetCustomAttributes(Type, bool) is null
2818 2004-05-18  Sebastien Pouliot  <sebastien@ximian.com>
2820         * Buffer.cs: Added checks for null source and destination. Fix failing
2821         CryptoStream unit test.
2822         * Guid.cs: Fixed thread-safety issue. Simplified implementation to use
2823         pseudo-random numbers to generate GUIDs (as per section 3.4 of the 
2824         spec). This removes the TODO to get the computer MAC address and
2825         the chances to get a duplicate GUID (across different machines).
2827 2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2829         * TimeSpan.cs: Only catch expected exceptions, if we get other exceptions
2830           than OverflowExceptions then something went wrong internally
2832 2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2834         * Char.cs: Fix long standing bug with ToLower/ToUpper not being
2835           culture - sensitive
2837 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2839         * Buffer.cs: Optimize BlockCopy.
2841         * Environment.cs: Bump corlib version.
2843 2004-05-14  Atsushi Enomoto <atsushi@ximian.com>
2845         * __ComObject.cs : This class is not regarded as CLSCompliant by csc.
2846           See also bug #58478.
2848 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2850         * AppDomainSetup.cs: don't throw an exception if dynamic_base has not
2851         been set. Just return null as MS. Fixes bug #58120.
2853 2004-05-14  Marek Safar  <marek.safar@seznam.cz>
2855         * Boolean.cs, Byte.cs, Char.cs, DBNull.cs, DateTime.cs,
2856           Decimal.cs, Double.cs, Enum.cs, Int16.cs, Int32.cs,
2857           Int64.cs, IntegerFormatter.cs, SByte.cs, Single.cs,
2858           String.cs, UInt16.cs, UInt32.cs, UInt64.cs: Removed
2859           useless [CLSCompliant (false)]
2862 2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>
2864         * __ComObject.cs: To please corcompare (no implementation).
2866 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
2868         * Environment.cs: Bump corlib version.
2870 2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>
2872         * Environement.cs: Removed two security attributes for CurrentDirectory
2873         that weren't documented (and anyway we don't support them).
2875 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2877         * Char.cs: Fix exceptions
2879 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2881         * MissingMemberException.cs: Fix in serialization constructor.
2883 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2885         * Environment.cs: GetGacPath return value is resolved at runtime on
2886         windows.
2888 2004-05-07  Sebastien Pouliot  <sebastien@ximian.com>
2890         * Convert.cs: ToBase64CharArray method was depending on a bug in 
2891         S.S.C.ToBase64Transform class to work. Added an internal method to 
2892         provide the same functionality (multiple block processing).
2894 2004-05-06  Jackson Harper  <jackson@ximian.com>
2896         * Environment.cs: Make $HOME the personal directory.
2898 2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>
2900         * Convert.cs: ToBase64String method was depending on a bug in 
2901         S.S.C.ToBase64Transform class to work. Added an internal method to 
2902         provide the same functionality (multiple block processing).
2904 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2906         * Environment.cs: Completed OSVersion property.
2907         * Version.cs: Added internal CreateFromString() to "try" to build the
2908         best version number form the specified string.
2910 2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2912         * TimeSpan.cs: Redid a lot of stuff in TimeSpan from scratch.
2913           Fixes several potential bugs and makes things way faster.
2915 2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2917         * TimeSpan.cs: Formatting changes
2919 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2921         * Activator.cs: change _flags to a const.
2922         * IntegerFormatter.cs: make tables readonly.
2923         * Convert.cs: tables readonly
2924         * DateTime.cs: ditto.
2925         * IntPtr.cs: avoid a cctor.
2927 2004-04-29  Jackson Harper  <jackson@ximian.com>
2929         * MonoType.cs: 
2930         * Type.cs: NET_2_0 now instead of 1_2. 
2931         
2932 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2934         * Environment.cs: implemented GetLogicalDrives.
2936 2004-04-28  Miguel de Icaza  <miguel@ximian.com>
2938         * Applied patch from Atsushi Enomoto that allows Synchronized
2939         writers to have a `dont close' flag, this fixes 52094
2941 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
2943         * MonoCustomAttrs.cs, MonoType.cs: Property.GetGetMethod() does not
2944         return the method if it is private (it did until now because of a
2945         bug). Make sure it works as it worked before the fix.
2946         * Type.cs: Implemented FilterAttribute delegate.
2948 2004-04-28  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2950         * IntegerFormatter.cs: Prevent the use of the explicit static constuctor
2952 2004-04-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2954         * IntegerFormatter.cs: Made functions internal (needed by other patches)
2956 2004-04-27  Lluis Sanchez Gual  <lluis@ximian.com>
2958         * DateTime.cs: TODO cleaning.
2959         * Delegate.cs: GetObjectData should be virtual.
2960         * IntegerFormatter.cs: Method factorization. I don't want to fix bugs in
2961           30 methods almost identical.
2962         * MulticastDelegate.cs: Implemented GetObjectData.
2963         
2964 2004-04-26  Jackson Harper  <jackson@ximian.com>
2966         * Environment.cs: Things going bump in the night.
2968 2004-04-25  Miguel de Icaza  <miguel@ximian.com>
2970         * Convert.cs (toBase64Transform): Make private.
2972 2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2974         * Convert.cs:
2975         * Decimal.cs:
2976         * DecimalFormatter.cs:
2977         * FloatingPointFormatter.cs: Call invariant Char functions
2978         * Guid.cs: Call invariant Char and String functions
2979         * String.cs: Call invariant Char functions
2981 2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2983         * String.cs: Refactored the Invariant ToXXX into its own internal methods
2984           so they are directly callable within corlib (can prevent early
2985           construction of CultureInfo, InvariantCulture and related classes)
2987 2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2989         * String.cs: Managed impl. of Invariant parts of ToLower, ToUpper
2990         * Char.cs: Managed impl. of Invariant parts of ToLower, ToUpper
2992 2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2994         * String.cs: Check for null values
2996 2004-04-23  Peter Bartok <pbartok@novell.com>
2998         * Environment.cs: GetLogicalDrives now returns "/" instead of null. Gonzalo
2999           will do a better fix in the future, but this way apps can at least use it.
3001 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
3003         * Environment.cs: Better support for GetFolderPath (same results as MS 
3004           on Windows).
3006 2004-04-22  Lluis Sanchez Gual  <lluis@ximian.com>
3008         * Activator.cs: Removed TODOs for finished methods.
3009         * AppDomainSetup.cs: When setting a relative path to ApplicationBase, it
3010           must be relative to the current directory, not the temp directory.
3011           Implemented DynamicBase.
3012         * Convert.cs: No need to create a ToBase64Transform instance at every call
3013           to ToBase64CharArray.
3014         * DateTime.cs: Implemented missing methods FromFileTimeUtc and 
3015           ToFileTimeUtc.
3016         * Decimal.cs: Implemented FromOACurrency and ToOACurrency.
3017         * Delegate.cs: Removed class TODO.
3018         * IntegerFormatter.cs: Use Char.IsLetter and Char.IsDigit instead of ad-hoc
3019           methods.
3020         * Type.cs: Removed TODOs for things already implemented.
3021         
3022 2004-04-21  Lluis Sanchez Gual  <lluis@ximian.com>
3024         * Char.cs: Implemented culture-dependent ToLower and ToUpper methods.
3025         * MulticastDelegate.cs: Removed unused code.
3027 2004-04-19  Lluis Sanchez Gual  <lluis@ximian.com>
3029         * AppDomain.cs: Implemented DynamicDirectory and SetDynamicBase.
3030         * Array.cs: Removed some TODOs in CreateInstance and IndexOf.
3031         * BadImageFormatException.cs: TODO reformat.
3032         * DateTime.cs: Implemented GetDateTimeFormats and GetDateTimeFormats.
3033         * DelegateSerializationHolder.cs: Made class internal.
3034         * Enum.cs: Removed TODO for localization, since this is something that has
3035           to be done for all classes.
3036         * Environment.cs: Removed TODO.
3037         * Exception.cs: Changed ToString to use StringBuilder.
3038         * MonoDummy.cs: Made class internal.
3039         * UnitySerializationHolder.cs: Added support for modules.
3041 2004-04-16  David Sheldon <dave-mono@earth.li>
3043         * DecimalFormatter.cs: Don't append a decimal point after the
3044           end of a number. ((decimal)1).ToString("P0") should be "100 %", not
3045           "100. %"
3047 2004-04-09  Miguel de Icaza  <miguel@ximian.com>
3049         * OutOfMemoryException.cs: Removed the call to Locale.GetText from
3050           this.
3052 2004-04-10  Gert Driesen (drieseng@users.sourceforge.net)
3054         * MonoDummy.cs: added MonoTODO to make sure we remove this class
3055           when its no longer needed
3057 2004-04-09  David Sheldon <dave-mono@earth.li>
3059         * Convert.cs: Allow + signs in strings for ToInt32, and
3060           - if it is base 10.
3062 2004-04-08  Atsushi Enomoto  <atsushi@ximian.com>
3064         * Nullable.cs : usingdecl should also be conditional.
3066 2004-04-07  Martin Baulig  <martin@ximian.com>
3068         * Nullable.cs: New file.
3070 2004-04-07  Martin Baulig  <martin@ximian.com>
3072         * Type.cs (Type.GetGenericArguments): Make this abstract.
3074 2004-04-07  Jackson Harper  <jackson@ximian.com>
3076         * Environment.cs: Increase corlib version number.
3077         
3078 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3080         * Environment.cs:
3081         (ExpandEnvironmentVariables): on windows, env. vars. are case
3082         insensitive.
3084 2004-04-06  Sebastien Pouliot  <sebastien@ximian.com>
3086         * AppDomain.cs: Added static to [ThreadStatic] _principal field. 
3087         Removed [ThreadStatic] for _principalPolicy (not required).
3089 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
3091         * Guid.cs: Flag as Sequential.
3093 2004-04-02  Dick Porter  <dick@ximian.com>
3095         * String.cs: More sanity checks in Replace().  Fixes bug 55822.
3097 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3099         * Environment.cs: Implement ExpandEnvironmentVariables static method.
3100         Now call the runtime to get the username (fix #56144).
3102 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3104         * MonoType.cs: AssemblyQualifiedName now displays culture, version...
3105         Fixes bug #56341.
3107 2004-03-29  Miguel de Icaza  <miguel@ximian.com>
3109         * Console.cs: If we fail to open stdin/stdout/stderr, create
3110         readers with a NullStream.  This can happen if our caller does not
3111         setup stdin/stoud/stderr file handles.  #56158 exposed this, but
3112         it will happen elsewhere.
3114 2004-03-29  Lluis Sanchez Gual <lluis@ximian.com>
3116         * Convert.cs: In ToSingle(double), removed checks for Single.MaxValue
3117         and Single.MinValue. MS.NET don't do it. This fixes bug #56005.
3118         * Guid.cs: Added support for guid strings in the "N" and "P" formats in
3119           the constructor. This fixes bug #54019.
3121 2004-03-23  Lluis Sanchez Gual <lluis@ximian.com>
3123         * FloatingPointFormatter.cs: Made the class thread safe. Had to move some
3124           internal variables to structures that are moved around methods.
3125           Factorized some common formatting code into FormatNumberInternal.
3126           
3127 2004-03-23  Dick Porter  <dick@ximian.com>
3129         * DateTime.cs: Allow any character for DateSeparator when parsing,
3130         except TimeSeparator, a digit or a letter.  Fixes bug 54047.  Also
3131         deleted the previous fix for 54721, because this covers it too.
3132         
3133 2004-03-23  Dick Porter  <dick@ximian.com>
3135         * DateTime.cs: Check the date string for too many digits when
3136         parsing.  Fixes bugs 53023 and 53025.
3138 2004-03-22  Dick Porter  <dick@ximian.com>
3140         * String.cs: Use the provider when converting strings to other
3141         types.
3143         * DateTime.cs: Add MM-dd-yyyy to the list of standard date parsing
3144         formats.  Fixes bug 54721.
3146 2004-03-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3148         * Console.cs: Styled, optimized calls
3149         * CrossAppDomainDelegate.cs: Small header fix
3150         * Buffer.cs: Style, improve errors
3151         * BitConverter.cs: Style, improve errors, remove obsolete comment
3152         * Attribute.cs: Style, improve errors, small fix
3153         * Array.cs: Style, improve errors, small fix, added TODOs
3154         * Activator.cs: Style, localized errors, added error checks
3155         * Byte.cs: Style, localized errors, fixed wrong exception parameters
3156         * Char.cs: Style
3157         * Boolean.cs: Style
3158         * AppDomainSetup.cs: Style
3159         * AppDomain.cs: Style, implemented two methods (redirect)
3161 2004-03-21  Jackson Harper  <jackson@ximian.com>
3163         * FloatingPointFormatter.cs: Set precision from number format info
3164         when it is not specified. This fixes bug #54983.
3165         
3166 2004-03-18  Nick Drochak <ndrochak@ieee.org>
3168         * Math.cs: Use IsNaN() method not "x == NaN".
3170 2004-03-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3172         * EntryPointNotFoundException.cs
3173         * DuplicateWaitObjectException.cs
3174         * DllNotFoundException.cs
3175         * DivideByZeroException.cs
3176         * ContextMarshalException.cs
3177         * CannotUnloadAppDomainException.cs
3178         * BadImageFormatException.cs
3179         * ArrayTypeMismatchException.cs
3180         * ArithmeticException.cs
3181         * ArgumentOutOfRangeException.cs
3182         * ArgumentNullException.cs
3183         * ArgumentException.cs
3184         * ApplicationException.cs
3185         * AppDomainUnloadedException.cs: Added missing HResult overrides
3187         * BadImageFormatException.cs: Improved/ Fixed implementation
3189 2004-03-15  Sebastien Pouliot  <sebastien@ximian.com>
3191         * Random.cs: Corrected random value when Next is called with a 
3192         negative value. Testing indictae that our results aren't exactly the 
3193         same as MS, we have a +/- 1 (probably rounding errors due to 
3194         different implementation).
3196 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3198         * Environment.cs: updated corlib version.
3200 2004-03-15  Lluis Sanchez Gual <lluis@ximian.com>
3202         * Boolean.cs, Byte.cs, Char.cs, Double.cs, Int16.cs, Int32.cs, Int64.cs,
3203           SByte.cs, Single.cs, UInt16.cs, UInt32.cs, UInt64.cs: Renamed internal
3204           field "value" to "m_value", so it is interoperable with MS.NET when 
3205           serializing and deserializing data. Based on the patch from Daniel
3206           Keep.
3208 2004-03-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3210         * TypeInitializationException.cs
3211         * SystemException.cs
3212         * StackOverflowException.cs
3213         * RankException.cs
3214         * OverflowExceptionException.cs
3215         * OutOfMemoryException.cs
3216         * NullReferenceException.cs
3217         * NotSupportedException.cs
3218         * NotFiniteNumberException.cs
3219         * InvalidOperationException.cs
3220         * InvalidCastException.cs
3221         * IndexOutOfRangeException.cs
3222         * FormatException.cs
3223         * ExecutionEngineException.cs: improved parameter names
3225 2004-03-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3227         * Enum.cs
3228         * EntryPointNotFoundException.cs
3229         * DuplicateWaitObjectException.cs
3230         * DoubleFormatter.cs
3231         * DllNotFoundException.cs
3232         * DivideByZeroException.cs
3233         * DelegateSerializationHolder.cs
3234         * Delegate.cs
3235         * DBNull.cs
3236         * ContextStaticAttribute.cs
3237         * ContextMarshalException.cs
3238         * ContextBoundObject.cs
3239         * CLSCompliantAttribute.cs
3240         * CharEnumerator.cs
3241         * CannotUnloadAppDomainException.cs
3242         * BadImageFormatException.cs
3243         * AttributeUsageAttribute.cs
3244         * AttributeTargets.cs
3245         * AsyncCallback.cs
3246         * AssemblyLoadEventHandler.cs
3247         * AssemblyLoadEventArgs.cs
3248         * ArrayTypeMismatchException.cs
3249         * ArithmeticException.cs
3250         * ArgumentOutOfRangeException.cs
3251         * ArgumentNullException.cs
3252         * ArgumentException.cs
3253         * ArgIterator.cs
3254         * ApplicationException.cs
3255         * AppDomainUnloadedException.cs
3256         * AppDomain.cs: Mono styled, fixed exceptions/ locales
3257           removed excess usings
3259 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
3261         * Convert.cs: FromBase64 now ignore some characters (tab, LF, CR and
3262         spaces) which fixed #54939. Changed the way that the length is 
3263         validated (multiple of 4) because the ignored characters must not be
3264         included in the count.
3266 2004-03-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3268         * String.cs: Monostyled
3270 2004-03-09  Jackson Harper  <jackson@ximian.com>
3272         * Char.cs: Only use a byte for numeric data.
3273         
3274 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3276         * TypedReference.cs: Added missing Attributes
3277         * ParamArrayAttribute.cs: Small style fix
3278         * OperatingSystem.cs: Added .Net 1.1 member
3280 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3282         * FieldAccessException.cs
3283         * FormatException.cs
3284         * InvalidCastException.cs
3285         * InvalidOperationException.cs
3286         * MemberAccessException.cs
3287         * MethodAccessException.cs
3288         * MissingFieldException.cs: Locale strings
3289         * MissingMemberException.cs: Locale strings
3290         * MissingMethodException.cs: Locale strings
3291         * NotFiniteNumberException.cs
3292         * NotImplementedException.cs
3293         * NotSupportedException.cs
3294         * NullReferenceException.cs
3295         * ObjectDisposedException.cs
3296         * OutOfMemoryException.cs
3297         * OverflowExceptionException.cs
3298         * PlatformNotSupportedException.cs
3299         * RankException.cs: Added missing HResult overrides
3301 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3303         * RuntimeTypeHandle.cs
3304         * RuntimeMethodHandle.cs
3305         * RuntimeFieldHandle.cs: Implemented serialization (partially untested)
3307 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3309         * EventArgs.cs
3310         * Exception.cs
3311         * ExecutionEngineException.cs
3312         * FieldAccessException.cs
3313         * FormatException.cs
3314         * GC.cs
3315         * Guid.cs
3316         * IndexOutOfRangeException.cs
3317         * IntPtr.cs
3318         * InvalidCastException.cs
3319         * InvalidOperationException.cs
3320         * InvalidProgramException.cs
3321         * IServiceProvider.cs
3322         * LoaderOptimization.cs
3323         * LoaderOptimizationAttribute.cs
3324         * MarshalByRefObject.cs
3325         * Math.cs
3326         * MemberAccessException.cs
3327         * MethodAccessException.cs
3328         * MissingFieldException.cs
3329         * MissingMemberException.cs
3330         * MissingMethodException.cs
3331         * MultiCastDelegate.cs
3332         * MulticastNotSupportedException.cs
3333         * NonSerializedAttribute.cs
3334         * NotFiniteNumberException.cs
3335         * NotImplementedException.cs
3336         * NotSupportedException.cs
3337         * NullReferenceException.cs
3338         * ObjectDisposedException.cs
3339         * ObsoleteAttribute.cs
3340         * OperatingSystem.cs
3341         * OutOfMemoryException.cs
3342         * OverflowExceptionException.cs
3343         * PlatformID.cs
3344         * PlatformNotSupportedException.cs
3345         * Random.cs
3346         * RankException.cs
3347         * ResolveEventArgs.cs
3348         * ResolveEventHandler.cs
3349         * RuntimeFieldHandle.cs
3350         * RuntimeMethodHandle.cs
3351         * RuntimeTypeHandle.cs: Mono styled, fixed exceptions/ locales
3352           removed excess usings
3354 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3356         * SystemException.cs: Exceptions set the HResult
3357         * TypeLoadException.cs: Exceptions set the HResult, fixed wrong exception usage
3358         * SByte.cs: Implemented two missing methods, fix wrong parameters for ArgumentNullException
3360 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3362         * TypedReference.cs
3363         * TypeLoadException.cs
3364         * TypeInitializationException.cs
3365         * TypeCode.cs
3366         * TimeZone.cs
3367         * ThreadStaticAttribute.cs
3368         * SystemException.cs
3369         * STAThreadAttribute.cs
3370         * StackOverflowException.cs
3371         * SingleFormatter.cs
3372         * Single.cs
3373         * SerializableAttribute.cs: Mono styled, fixed exceptions/ locales
3374           removed excess usings
3376 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3378         * UnauthorizedAccessException.cs: Exceptions set the HResult
3379         * UInt64.cs: Implemented two missing methods
3380         * UInt32.cs: Fix wrong parameters for ArgumentNullException, simpler convert
3381         * UInt16.cs: Fix wrong parameters for ArgumentNullException, simpler convert
3383 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3385         * WeakReference.cs
3386         * Void.cs
3387         * Version.cs
3388         * ValueType.cs
3389         * UnitySerializationHolder.cs
3390         * UnhandledExceptionEventHandler.cs
3391         * UnauthorizedAccessException.cs
3392         * UIntPtr.cs
3393         * UInt64.cs
3394         * UInt32.cs
3395         * UInt16.cs: Mono styled, Locale.GetText fixes, msg fixes
3397 2004-03-04  Lluis Sanchez Gual <lluis@ximian.com>
3399         * Environment.cs: Bump corlib version.
3401 2004-03-04  Jackson Harper  <jackson@ximian.com>
3403         * Char.cs: New managed implementation. Modified patch by Andreas Nahr.
3404         
3405 2004-02-27  Lluis Sanchez Gual <lluis@ximian.com>
3407         * String.cs: Concat() fixed crash when one of the arguments is an object
3408           whose ToString() method returns null.
3409         * TypeLoadException.cs: Added some serialization fiels, needed for
3410           compatibility with MS.NET.
3412 2004-02-23 Ben Maurer  <bmaurer@users.sourceforge.net>
3414         * String.cs (Equals): Speed up this method by avoiding Array
3415          Bounds Checks and by comparing by 32 bit words rather than 16 bit chars.
3417         This gives between 0x (for 1 char) and >2x (for large strings)
3418         factor of improvement.
3420         A big thanks to Miguel, who suggested the integer compares.
3422 2004-02-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3424         * MonoType.cs: use the binder in GetPropertyImpl.
3426 2004-02-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3428         * Math.cs: MonoStyled, replaced space with tabs,
3429           speedup of some methods by avoiding method calls
3431 2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>
3433         * Char.cs : optimized IsSeparator(), IsWhiteSpace() and IsDigit().
3434           (Moved from InternalCall to Managed code).
3436 2004-02-17  Martin Baulig  <martin@ximian.com>
3438         * MonoType.cs (GetConstructors): Renamed the interncall to
3439         GetConstructors_internal(), made it internal and added a `Type
3440         reflected_type' argument to it.
3441         (GetEvents, GetFields): Likewise.
3442         (GetMethodsByName): Added `Type reflected_type' argument.
3443         (GetPropertiesByName): Likewise.
3445 2004-02-16  Jackson Harper  <jackson@ximian.com>
3447         * FloatingPointFormater.cs: Allow precision to be up to the number
3448         of decimals without rounding.
3449         
3450 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3452         * Delegate.cs (Equals): Do not compare method_ptr, since it might
3453         point to a trampoline.
3455 2004-02-12  Jackson Harper  <jackson@ximian.com>
3457         * AppDomainSetup.cs: If relative paths are used they should be
3458         rooted in the temp directory.
3459         
3460 2004-02-11  Marek Safar  <marek.safar@seznam.cz>
3462         * Type.cs (FilterNameIgnoreCase_impl): Added extra check for speedup.
3464 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3466         * AppDomain.cs (Load): Check that assemblyRef.Name is not empty, to
3467         avoid an assert in the runtime.
3469 2004-02-08  Duncan Mak  <duncan@ximian.com>
3471         * Convert.cs (ToType): Always let a Convert.ChangeType call
3472         succeed if the source object is already of the destination type.
3474         Patch by Ian MacLean (ianm@activestate.com).
3476 2004-02-05  Sebastien Pouliot  <sebastien@ximian.com>
3478         * AppDomain.cs: Implemented SetPrincipalPolicy and SetThreadPrincipal.
3480 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3482         * Environment.cs: Bump corlib version.
3484 2004-02-02  Sebastien Pouliot  <sebastien@ximian.ca>
3486         * DateTime.cs: Corrected support for "Z" in the mask (Parse). This
3487         fix bug #53461.
3489 2004-01-27  Sebastien Pouliot  <spouliot@videotron.ca>
3491         * Exception.cs: Changed ToString to remove the \n when no stack trace
3492         is present (which fixed a unit test for SecurityException). Changed
3493         all \n to Environment.NewLine.
3495 2004-01-27  Lluis Sanchez Gual <lluis@ximian.com>
3497         * ContextBoundObject.cs: Removed TODO.
3499 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3501         * TimeSpan.cs: fixed bug #52075. Days (int) don't rely on TotalDays
3502         (double), which might round up.
3504 2004-01-19  Jackson Harper <jackson@ximian.com>
3506         * FloatingPointFormatter.cs: Use the default decimal digits count
3507         if they are not specified. This fixes bug #52927.
3508         
3509 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3511         * Environment.cs: Bump version number.
3513 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
3515         * Type.cs: Added internal call for IsInstanceOfType. The old implementation
3516         uses IsAssignableFrom(o.GetType()), which is not always valid for 
3517         transparent proxies (because GetType will not return the type of the remote
3518         object if its assembly is not present).
3520 2004-01-18  David Sheldon <dave-mono@earth.li>
3522   * FloatingPointFormatter.cs: Skip the decimal point if we have an 
3523     integer mantassa. So: 1E+15, rather than 1.E+15.
3525 2004-01-18  David Sheldon <dave-mono@earth.li>
3527         * Array.cs (GetValue/SetValue): Throw NullRef exception like .NET 1.1, 
3528         even though docs say it should be an ArgumentNull. Two test cases now
3529   pass. See also nickd's commit of 2003-12-24.
3531 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3533         * Environment.cs: increased corlib version.
3535 2004-01-14  Lluis Sanchez Gual <lluis@ximian.com>
3537         * MonoCustomAttrs.cs: Removed attribute cache. Attribute instances can't
3538         be reused because they could be modified. This fixes bug #52655.
3540 2004-01-12  Patrik Torstensson
3542         * Environment.cs: Bump corlib version number due to new StringBuilder
3543         
3544         * String.cs: New internal method to support the new StringBuilder that
3545         uses the string as a buffer (until ToString is called)
3547 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
3549         * Environment.cs: Bump corlib version number for real this time.
3550         
3551         * AppDomain.cs (LoadAssembly): Pass the assembly name as a string to
3552         the runtime, so it can take into account the Culture etc.
3554         * Environment.cs: Bump corlib version number.
3555         
3556 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3558         * MonoType.cs: GetMethods renamed to GetMethodsByName. It takes a
3559         new parameter with the method name and a boolean for ignoring case.
3560         Removed some string comparisons no longer needed.
3562 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3564         * MonoType.cs: GetProperties renamed to GetPropetiesByName. It takes a
3565         new parameter with the property name and a boolean for ignoring case.
3566         Fixes bug #52753.
3568 2004-01-11  David Sheldon <dave-mono@earth.li>
3570         * DateTime.cs: Correct processing of formats with multiple '-'s, fixing
3571         bug 52274.
3573 2004-01-10  Zoltan Varga  <vargaz@freemail.hu>
3575         * AppDomain.cs: Keep track of type resolve and assembly resolve 
3576         events in progress to prevent infinite recursion.
3578 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
3580         * Console.cs: Test for UTF-8 being present anywhere on the
3581         string, also do ToUpper instead of ToLower, which will work even
3582         around the ICU bug with different locales (#52065), and addresses #52101
3584 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
3586         * Environment.cs: Bump version.
3588 2003-12-24 Ben Maurer  <bmaurer@users.sourceforge.net>
3590         * Type.cs (IsNotPublic): One would normally assume that
3591         IsNotPublic == !IsPublic, but this is not the case (note to MS,
3592         make better names ;-). Fixes #52547, `Type.IsNotPublic not 
3593         correct for Nested types'
3595 2003-12-24  Nick Drochak  <ndrochak@ieee.org>
3597         * Array.cs (CreateInstance): Throw NullRef exception like .NET 1.1, 
3598         even though docs say it should be an ArgumentNull. Sent email to MS
3599         about this "bug".
3601 2003-12-23  Lluis Sanchez Gual  <lluis@ximian.com>
3603         * Exception.cs: Several changes to make it compatible with MS.NET (needed
3604         for remoting interoperability): set a default value for hresult, added 
3605         initialization of class_name, serialization field RemoteStackTrace must
3606         be RemoteStackTraceString, added ser. field ExceptionMethod.
3608         * IndexOutOfRangeException.cs: Added serialization constructor.
3610 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
3612         * Int32 (Parse):
3613           Int64 (Parse): Fix overflow checking for AllowHexSpecifier
3615 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
3617         * MonoType.cs (GetMethodImpl): Only call FindMostDerivedMatch if the
3618         user supplied no parameter info, but not when the user supplied an
3619         empty parameter list. This fixes IKVM.
3621         * Environment.cs: Bump corlib version.
3623 2003-12-19  Dick Porter  <dick@ximian.com>
3625         * String.cs: Added Compare shortcut for length==0.
3627 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
3629         * Environment.cs: Bump corlib version.
3631 2003-12-17  Dick Porter  <dick@ximian.com>
3633         * String.cs: Fix StartsWith and EndsWith when the argument is the
3634         empty string.  Fixes bug 52283.
3636 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
3638         * Environment.cs (HasShutdownStarted): Implement.
3640 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
3642         * Environment.cs (HasShutdownStarted): Make this static under NET 1.1.
3643         
3644         * Environment.cs: Bump version number.
3646 2003-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3648         * DateTime.cs: don't bail out with that year out of range error on
3649         stuff like "MM/dd/yyyy HH:MM:ss".
3651 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3653         * Environment.cs: Make it a const instead.
3654         
3655         * Environment.cs: Make version field static.
3657 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
3659         * Type.cs: Make DefaultBindingFlags protected.
3661         * Environment.cs: Applied patch from Todd Berman (tbermann@gentoo.org).
3662         Add new GacPath property + its associated icall.
3664 2003-12-09 Anirban Bhattacharjee <banirban@novell.com>
3666         * DateTime.cs : Bugs fixed (41845, 51422)
3667         * MonoType.cs : Exception message changed 
3669 2003-12-08  Martin Baulig  <martin@ximian.com>
3671         * Type.cs (MakeByRefType): New public method.
3673 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3675         * Environment.cs: Add a version number for the corlib-runtime interface
3676         to make it easier to diagnose problems resulting from a mismatch 
3677         between the two.
3679 2003-12-08  Patrik Torstensson   <p@rxc.se>
3681         * Type.cs (GetMethod): Check type arguments within array
3682         * MonoType.cs (GetMethodImpl): Handle methods with a new slot
3683         (same signature but different classes (derived level)
3685 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
3687         * Type.cs (MakeArrayType): Add argument checking.
3689 2003-12-06  Dick Porter  <dick@ximian.com>
3691         * String.cs: Don't use CompareInfo for non-culture-sensitive
3692         IndexOf and LastIndexOf methods.
3694 2003-12-06  Ravindra  <rkumar@novell.com>
3696         * DateTime.cs: Made Parse(string, IFormatProvider) method to
3697         use second argument. Fixed bug #51464.
3699 2003-12-04  Martin Baulig  <martin@ximian.com>
3701         * Type.cs (Type.MakeArrayType): New public method.
3703 2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3705         * Buffer.cs:
3706         (BlockCopy): make the exception thrown helpful.
3708 2003-12-03  Dick Porter  <dick@ximian.com>
3710         * String.cs: Calling Replace on an empty string returns itself.
3712 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3714         * MonoType.cs: Get rid of get_type_info, use a separate icall for
3715         each property instead.
3717 2003-12-02  Dick Porter  <dick@ximian.com>
3719         * Decimal.cs: Fix NumberFormatInfo lookup.  Patch by
3720         Mohammad DAMT (mdamt@cdl2000.com), fixes bug 51443.
3722 2003-12-01  Dick Porter  <dick@ximian.com>
3724         * String.cs: Make Compare, IndexOf, LastIndexOf, StartsWith,
3725         Replace, ToLower, ToUpper and Equals use the correct CultureInfo.
3727 2003-11-28  Dick Porter  <dick@ximian.com>
3729         * Type.cs: 
3730         * MonoType.cs: 
3731         * Enum.cs: 
3732         * Boolean.cs: Do string compares with the Invariant culture.
3734 2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>
3736         * Array.cs: make the enumerator ICloneable
3738 2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>
3740         * Decimal.cs (ToXXX): Call Convert.ToXXX.
3742 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
3744         * AppDomain.cs: Applied patch from ztashev@openlinksw.co.uk (Zdravko Tashev). 
3745         Implement Load(byte[]) methods.
3747         * BadImageFormatException.cs: Fix ToString.
3749 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
3751         * MonoType.cs: Make Standard|HasThis match Standard in GetMethod and
3752         GetConstructor, as done by MS.
3754 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3756         * FloatingPointFormatter.cs: Removed some unused variables to prevent csc compiler warnings
3758 2003-11-18  Lluis Sanchez Gual  <lluis@ximian.com>
3760         * TypeInitializationException.cs: Added missing serialization constructor.
3762 2003-11-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3764         * AppDomainSetup.cs: Don't add an extra '/' at the end of 
3765         ApplicationBase. The tests pass now with mono.
3767 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
3769         * ValueType.cs: New optimized implementation for Equals and GetHashCode.
3771 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773         * Environment.cs: use Directory in CurrentDirectory property.
3774         We were not throwing any exception when setting the directory to an
3775         invalid path.
3777 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3779         * Array.cs:
3780         * Delegate.cs: implemented 1.1 stuff.
3782         * Enum.cs:
3783         * IntPtr.cs: removed extra attribute.
3784         * PlatformID.cs: added WinCE.
3786 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3788         * ValueType.cs:
3789         (Equals): compare the fields of structs too.
3790         (GetHashCode): combine the hash code of all the fields.
3791         Fixes bug #50901 (will remove the icall in a couple of days).
3793 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3795         * Array.cs: fixed Clear for non-zero bounded arrays. Fixes bug #50968.
3797 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3799         * DateTime.cs: handle century when we try to parse 4-digit years and
3800         only 2 digits are present. Fixes bug #49394.
3802 2003-11-13  Miguel de Icaza  <miguel@ximian.com>
3804         * Console.cs: On utf-8 consoles, use unmarked output.
3806 2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
3808         * IAppDomainSetup.cs:
3809         * _AppDomain.cs: 
3810         * Object.cs:
3811         * Type.cs: Added missing attribute
3813 2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>
3815         * Environment.cs: Added internal method for getting the path to 
3816         machine.config.
3817         
3818 2003-11-12 Jackson Harper <jackson@ximian.com>
3820         * Environment.cs: Add MyMusic and MyPictures to the SpecialFolder
3821         enum. This fixes the SWF build.
3822         
3823 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
3825         * PlatformID.cs: Remove Unix platform, we cant expose constants
3826         that are not in the framework.
3828         * OperatingSystem.cs: Adjust for the breakage.
3830         * RuntimeMethodHandle.cs: Fix signature.
3832         * Double.cs: Fix signature of TryParse.
3834         * String.cs (Concat (object, object, object, object)): Add missing method.
3836         * OperatingSystem.cs: Removed Equals, GetHashCode, they were not
3837         in the .NET Framework.
3839         * Enum.cs: Hide constructor.  
3841         Fix ToUint16 to be explicitly implemented.
3843         * Console.cs: Add couple of extra missing methods (Write and
3844         WriteLine overloaded)
3846 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
3848         * AppDomain.cs, Activator.cs: New unimplmented entry points from
3849         1.1 (Com activation related).
3850         
3851         * Exception.cs: Formatting.
3852         
3853         * IServiceProvider.cs: Add ComVisible (true).
3855         * AppDomainSetup.cs: Add a couple more properties from .NET 1.1 
3857 2003-11-03  Lluis Sanchez Gual <lluis@ximian.com>
3859         * AppDomain.cs: Added some null checks in Load methods. This fixes bug
3860           #50356.
3862 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
3864         * AppDomain.cs: Make the SetDomain icalls private + call InternalInvoke
3865         on MonoMethod instead of Invoke.
3867 2003-11-01  Pedro Martínez Juliá  <yoros@wanadoo.es>
3869         * DateTime.cs: Fixed Add* methods handling. Now it works properly
3870         with extreme values (there is a bug with Overflow and Underflow in
3871         long type).
3873 2003-10-31  Pedro Martínez Juliá  <yoros@wanadoo.es>
3875         * DateTime.cs: Fixed a few format bugs.
3877 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
3879         * AppDomain.cs (InternalPushDomainRef): New icalls.
3881         * AppDomain.cs (InvokeInDomain): New method to execute code in a 
3882         different appdomain.
3884 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
3886         * AppDomain.cs: Fix prototype of InternalIsFinalizingForUnload.
3888 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
3890         * AppDomain.cs (IsFinalizingForUnload): Implement.
3892         * AppDomain.cs (Unload): Move the notification of OnUnload listeners
3893         to unmanaged code.
3895 2003-10-25  Martin Baulig  <martin@ximian.com>
3897         * MonoType.cs: Don't make this sealed.
3899 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
3901         * AppDomain.cs: Add InternalInvokeInDomain[ByID] icalls.
3903 2003-10-24  Pedro Martínez Juliá  <yoros@wanadoo.es>
3905         * DateTime.cs: When handling '-' as a date separator, MS.NET uses
3906         the same symbol in the parse (not DateTimeFormatInfo.DateSeparator).
3908 2003-10-22  Dick Porter  <dick@ximian.com>
3910         * DateTime.cs: Handle '-' as a date separator when parsing formats.
3912 2003-10-20  Duncan Mak  <duncan@ximian.com>
3914         * Delegate.cs (CreateDelegate): Avoid creating an extra Type array
3915         and merge the two iterations into one.
3917 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
3919         * TypedReference.cs: Add new field used by the runtime.
3921 2003-10-15  Martin Baulig  <martin@ximian.com>
3923         * Type.cs (Type.DeclaringMethod): For a generic method's type
3924         parameter, return this method - otherwise, return null.
3926 2003-10-14  Martin Baulig  <martin@ximian.com>
3928         The generics API has changed in the spec since it was added here;
3929         these modifications make it match the spec again.
3931         * Type.cs
3932         (GetGenericParameters): Renamed to `GetGenericArguments'.
3933         (HasGenericParameters): Renamed to `HasGenericArguments'.
3934         (HasUnboundGenericParameters): Renamed to `ContainsGenericParameters'.
3935         (IsGenericTypeDefinition): New property.
3936         (IsUnboundGenericParameter): Renamed to `IsGenericParameter'.
3938         * MonoType.cs (ContainsGenericParameters): Implement this here;
3939         this is no interncall anymore.
3941 2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3943         * Delegate.cs: add the method name to the exception when it cannot be
3944         bound.
3945         * Exception.cs: fix nullref in Source.
3947 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
3949         * Array.cs: Add argument checking to GetValue and SetValue.
3951 2003-10-09  Miguel de Icaza  <miguel@ximian.com>
3953         * DateTime.cs: Patch from Chris Turchin: the DateTime.MaxValue
3954         should not be TimeSpan.MaxValue, because it overflow.  Set this to
3955         be MAX_VALUE_TICKS
3957 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3959         * MonoCustomAttrs.cs: from_cache is now thread-safe. Yeah, I got a
3960         duplicate entry exception.
3962 2003-10-08 Ben Maurer  <bmaurer@users.sourceforge.net>
3964         * DateTime.cs (ToString): Total rewrite, fixes #49358.
3966 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
3968         * AppDomain.cs: Change accessibility of DoTypeResolve to fix build.
3970 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3972         * Enum.cs:
3973         (Equals): check that the object is an Enum before comparing the types.
3975 2003-09-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3977         * Array.cs: reduced xsp allocated memory by 1/2.
3979 2003-09-25  Martin Baulig  <martin@ximian.com>
3981         * Type.cs (Type.IsGenericTypeDefinition): Removed this method
3982         since it was identical to GetGenericTypeDefinition().
3983         (Type.IsGenericInstance): New property.
3985 2003-09-24  Duncan Mak  <duncan@ximian.com>
3987         * Math.cs (Abs): Fix double Locale.GetText bug reported by
3988         davejp@volny.cz. This fixes #48788.
3990 2003-09-14  Pedro Martínez Juliá  <yoros@wanadoo.es>
3992         * FloatingPointFormatter.cs: Add the necessary castings to char
3993         conversions.
3995 2003-09-13  Pedro Martínez Juliá  <yoros@wanadoo.es>
3997         * FloatingPointFormatter.cs: Make the method calls more functional
3998         for protecting the values from different threads (make it more
3999         thread safe).
4001 2003-09-13  Pedro Martínez Juliá  <yoros@wanadoo.es>
4003         * FloatingPointFormatter.cs: Fix a bug with the negative value of
4004         count parameter.
4006 2003-09-12  Pedro Martínez Juliá  <yoros@wanadoo.es>
4008         * FloatingPointFormatter.cs: Applied a lot of improvements in string
4009         construction, make use of Append/Insert with the "count" parameter.
4010     Thanks to Ben Maurer.
4012 2003-09-10  Pedro Martínez Juliá  <yoros@wanadoo.es>
4014         * FloatingPointFormatter.cs: Fix a bug with Custm Format.
4016         * FloatingPointFormatter.cs: Fix a little bug I've introduced the
4017         last change.
4019 2003-09-10  Pedro Martínez Juliá  <yoros@wanadoo.es>
4021         * DoubleFormatter.cs: A few optimizations. Now, only one object
4022         is created to convert all double numbers.
4024         * SingleFormatter.cs: A few optimizations. Now, only one object
4025         is created to convert all float numbers.
4027         * FloatingPointFormatter.cs: Split the "number type parameters" from
4028         the "numver value and format parameters". The first ones are in the
4029         constructor and the others are in a method.
4031 2003-09-09  Zoltan Varga  <vargaz@freemail.hu>
4033         * Array.cs: Added argument checking to some NET_1_1 methods.
4035 2003-09-04  Martin Baulig  <martin@ximian.com>
4037         * Type.cs (GetGenericTypeDefinition): Make this method virtual.
4039 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4041         * Array.cs: added the new overloaded CreateInstance, GetValue, SetValue
4042         taking 'longs'. All tests pass.
4044 2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
4046         * Exception.cs: Add ClassInterface attr. Implement TargetSite and
4047         Source. Remove MonoTODO attributes (class is 100% done). Also
4048         passes all Rotor tests for Exception!
4050 2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
4052         * Enum.cs: Remove [MonoTODO]'s that had been completed.
4054 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4056         * String.cs: fixed bug #47802.
4058 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
4060         * String.cs: Created method FormatHelper that does formatting,
4061         using a StringBuilder.
4063 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4065         * Array.cs: patch by lb@lb.ods.org that fixes bug #47707.
4067 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4069         * Delegate.cs: CreteDelegate (Type, MethodInfo) only supports static
4070         methods under MS.
4072 2003-08-11  Duncan Mak  <duncan@ximian.com>
4074         * Environment.cs (Version): Return the same numbers as the MS
4075         implementation.
4077 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
4079         * Array.cs: Applied patch from Thong (Tum) Nguyen;  Removed
4080         replicated tests, and have a routine that does the heavy lifting.
4082 2003-08-08  Lluis Sanchez Gual <lluis@ximian.com>
4084         * DateTime.cs: Fixed DoParse. It was calling the wrong constructor
4085           of DateTime.
4086         * Environment.cs: return $HOME for ApplicationData folder.
4088 2003-08-04  Duncan Mak  <duncan@ximian.com>
4090         * FloatingPointFormatter.cs (Normalize): Apply a patch from Aleksey
4091         Demakov <avd@openlinksw.com> to fix formatting for Big power of 10
4092         floating point values. This fixes bug #46175.
4094         * Convert.cs (ToUInt16): Throw an OverflowException correctly, as
4095         noted by c5n4kh6u02@sneakemail.com in
4096         http://bugzilla.ximian.com/show_bug.cgi?id=43098.
4098 Sat Aug  2 13:01:46 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
4100         * Double.cs: added icall Double.AssertEndianity.
4102 Fri Aug 1 16:47:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
4104         * Type.cs, MonoType.cs: implemented generic-specific methods.
4106 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
4108         * Buffer.cs: Add new internal MemCopy call.
4110         Removed the above.
4112 Tue Jul 29 12:13:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
4114         * Type.cs, MonoType.cs, ArgIterator.cs: pass the handles values
4115         to icalls, to avoid special cases in some call conventions.
4117 2003-07-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4119         * Enum.cs: added Serializable attribute.
4121 2003-07-25  Duncan Mak  <duncan@ximian.com>
4123         * AppDomain.cs (Equals):
4124         (GetHashCode): Removed because they do not need to be defined
4125         here.
4127 2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4129         * TypeLoadException.cs: removed unused fields. TypeName returns "" if
4130         cannot even get the type.
4132 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
4134         * Type.cs: Added generics stubs.
4136 2003-07-23  Duncan Mak  <duncan@ximian.com>
4138         * Environment.cs (SpecialFolder): Added 'Desktop' and 'MyComputer'
4139         as values for NET_1_1.
4140         (GetFolderPath): Return the empty string ("") for values of
4141         SpecialFolder that have no corresponding equivalents in
4142         Linux. Return "$HOME/Desktop" for SpecialFolder.DesktopDirectory
4143         and "$HOME" for SpecialFolder.Personal.
4145         * IntPtr.cs (GetObjectData): Mark it as an interface
4146         implementation, instead of a public method.
4148         * Guid.cs (NewGuid): Remove MonoTODOAttribute.
4150         * TypeLoadException.cs (GetObjectData):
4151         Create stubs for the fields that are being serialized.
4153         * UIntPtr.cs: Removed erroneous CLSCompliantAttributes.
4155 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
4156         
4157         * Enum.cs: Fixed enum formatting. For flag enums, if one of
4158           the flags is unnamed, ToString() returns the integer value.
4160 2003-07-22  Jerome Laban <jlaban@wanadoo.fr>
4162         * Guid.cs: Fixed ToString (), was producing incorrect string.
4164 2003-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4166         * AppDomainSetup.cs: fixed bug #46609.
4168 Thu Jul 17 17:28:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
4170         * MonoType.cs: use an icall for IsPrimitiveImpl ().
4172 Thu Jul 17 15:23:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
4174         * Guid.cs: faster ToString ().
4176 2003-07-15  Pedro Martínez Juliá  <yoros@wanadoo.es>
4178         * FloatingPointFormatter.cs: Few changes for get working Rotor
4179         tests.
4181 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
4183         * Type.cs (IsAssignableFrom): Implement this as an icall since the
4184         runtime already includes the neccessary logic.
4186 2003-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4188         * AppDomainSetup.cs: remove the "file://" prefix from ApplicationBase
4189         if it's present and get the full path for non-Uri paths.
4191 2003-07-2  Lluis Sanchez Gual <lluis@ximian.com>
4193         * DateTime.cs: Fixed formatting of fractions of second.
4195 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
4197         * Console.cs: Turn off buffering for the streams returned by
4198         OpenStandardOutput () and OpenStandardError () if the buffer size is 0.
4200 2003-06-28  Lluis Sanchez Gual <lluis@ximian.com>
4202         * Random.cs: Changed behavior of Random to match MS.NET. When Next is
4203           called with maxvalue==0 or minvalue==maxvalue, MS.NET internally generates
4204           a new random number (although it is not needed), while mono did not. 
4205           As a result, the sequence of random numbers could be different for the
4206           same seed.
4208 Thu Jun 26 16:06:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
4210         * FloatingPointFormatter.cs: use dec_len2 as default precision.
4212 2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>
4214         * DateTime.cs: Modified constructor. Check for valid value of TimeSpan must
4215           be done after the correspondig UTC offset has been applied.
4217 2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>
4219         * Object.cs: Object must have the Serializable attribute.
4220         * DateTime.cs: Fixed _DoParse() so it correctly applies the utc offset
4221           to the resulting date. Also fixed _ToString so now correctly formates the
4222           UTC offset.
4224 Wed Jun 18 19:22:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
4226         * Enum.cs: fix race in cache (bug#41841).
4228 Wed Jun 18 18:52:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
4230         * FloatingPointFormatter.cs: if the precision is not specified, use
4231         the default precision for the data type.
4233 Wed Jun 18 18:11:30 CEST 2003 Paolo Molaro <lupus@ximian.com>
4235         * Array.cs: throw ArgumentOutOfRangeException in Copy if needed
4236         (patch by tum@veridicus.com (Thong (Tum) Nguyen)).
4238 2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4240         * MonoType.cs: don't throw nullref when the return type for a property
4241         is specified and the property doesn't have a get accessor.
4243 2003-06-10  Duncan Mak  <duncan@ximian.com>
4245         * Array.cs (CreateInstance): Fixed a typo. It should throw
4246         ArgumentNullException instead of ArgumentException.
4248 2003-06-09  Duncan Mak  <duncan@ximian.com>
4250         * Array.cs: Revert the last revert. I fixed it.
4251         (Sort): Put a try-catch block around qsort, and wrap whatever
4252         Exception we get into a InvalidOperationException.
4254 2003-06-08 Jackson Harper <jackson@latitudegeo.com>
4256         * Array.cs: Revert last patch, it broke some other functionality.
4257                 
4258 2003-06-08  Duncan Mak  <duncan@ximian.com>
4260         * Array.cs: Throw more exceptions. This fixes the errors we see
4261         from the Rotor testsuite.
4263         (CreateInstance): Throw ArgumentNullException when the input are
4264         null. Throw ArgumentOutOfRangeException when bounds + length is
4265         greater than Int32.MaxValue.
4266         (LastIndexOf): Throw ArgumentOutOfRangeException if index is outside
4267         the valid range of indices of array.
4268         (Sort): Throw InvalidOperationException when comparer is null and
4269         none of the elements in keys implements IComparable.
4271 2003-06-08  Duncan Mak  <duncan@ximian.com>
4273         * Array.cs (CreateInstance): Throw a TypeLoadException if the
4274         Length of the input array 'lengths' is greater than 255 so that we
4275         won't see the g_assert that is in mono_array_class_get in class.c.
4277         This fixes bug #44304.
4279 2003-06-05  Nick Drochak  <ndrochak@gol.com>
4281         * UnitySerializataionHolder.cs: Cleanups according to class status page
4283 Wed Jun 4 16:59:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
4285         * ArgIterator.cs, TypedReference.cs, RuntimeArgumentHandle.cs,
4286         RuntimeTypeHandle.cs: implemented the needed stuff to handle
4287         vararg calls.
4289 2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>
4291         * Random.cs: New implementation based on Knuth ran3 to fix #43597.
4292         See http://www.library.cornell.edu/nr/bookcpdf/c7-1.pdf. Commited
4293         for Ben Maurer after review and testing.
4295 2003-05-28  Ben Maurer <bmaurer@users.sourceforge.net>
4296         
4297         * Array.cs: Added better argument checking to Array.Sort ()
4298         * DBNull.cs: Made the conversions throw like they do in MS.
4300 2003-05-24  Philip Van Hoof  <me@freax.org>
4302         * Math.cs: Add the MS.NET 1.1 methods (BigMul, DivRem, DivRem).
4304 2003-05-21  Pedro Martínez Juliá  <yoros@wanadoo.es>
4306         * FloatingPointFormatter.cs: Take care with the explicit precision
4307         and round the number to that precision.
4309         * DoubleFormatter.cs: Adapt to the two level precision (15 - 17).
4311         * SingleFormatter.cs: Adapt to the two level precision (7 - 8).
4313 2003-05-20  Philip Van Hoof <me@freax.org>
4315         * DateTime.cs (FromOADate, GetDateTimeFormats, ToOADate):
4316         Implemented.
4318 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
4320         * AppDomainSetup.cs: Added new field which is used to notify the
4321         runtime that the search path has changed.
4323 2003-05-18  Pedro Martínez Juliá  <yoros@wanadoo.es>
4325         * FloatingPointFormatter.cs: Fixed NullReferenceException bug I've
4326         introduced the last change I've done.
4328 2003-05-17  Ben Maurer  <bmaurer@users.sourceforge.net>
4330         * Array.cs: Fixed SyncRoot to behave like MS (return this). Removed 
4331         MonoTODO from SyncRoot (because fixed) and IsSynchronized (it was
4332         behaving correctly).
4333         
4334 2003-05-17  Pedro Martínez Juliá  <yoros@wanadoo.es>
4336         * FloatingPointFormatter.cs: Fixed little format mismatches.
4338 2003-05-16  Pedro Martínez Juliá  <yoros@wanadoo.es>
4340         * FloatingPointFormatter.cs: Fixed "-0" result emited.
4342 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4344         * AppDomain.cs: Added null argument check in Load().
4345         * Activator.cs: fixed bug #39926.
4347 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4349         * Enum.cs: fixed bugs #41522 and #42879.
4351 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
4353         * String.cs: Tweak IndexOf and LastIndexOf to match specification and
4354         undocumented MS behaviour.
4356 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4358         * Activator.cs: applied patch for bug #39926. Thanks to Jean Marc and
4359         Jaime.
4361 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4363         * String.cs: fixed bug #41411 and another similar problem in
4364         LastIndexOf (string).
4366 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4368         * String.cs: patch by Jean Marc <jean-marc.andre@polymtl.ca> that fixes
4369         bug #42695.
4371 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
4373         * MulticastDelegate.cs (GetInvocationList): Avoid ArrayList 
4374         construction if the delegate list only has one element.
4376 2003-05-01  Pedro Martínez Juliá  <yoros@wanadoo.es>
4378         * Environment.cs: Changed the method GetFolderPath because it must
4379         return at least a directory name (not null).
4381         * Convert.cs: In ToType, if the destination type is unknown, try to
4382         cast the value to object (then, the calling method will downcast it
4383         to the type it wants).
4385 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4387         * Enum.cs: fixed bug #41522.
4389 Tue Apr 29 13:58:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
4391         * Enum.cs: protect with the lock also the lookup (bug #41841).
4393 Tue Apr 29 13:24:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
4395         * MonoType.cs: allow a null name if InvokeMember is called with
4396         BindingFlags.CreateInstance set.
4398 2003-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4400         * Enum.cs: reverted my previous patch.
4402 2003-04-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4404         * Enum.cs: fixed bug #41841.
4406 2003-04-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4408         * MonoType.cs:
4409         (GetPropertyImpl): handle BindingFlags.IgnoreCase.
4411 2003-04-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
4413         * FloatingPointFormatter.cs: Little fixes for get the same results
4414         as MS.NET and show a message when something goes wrong with the
4415         parser of Custom Formats.
4417 2003-04-22  Nick Drochak  <ndrochak@gol.com>
4419         * Double.cs (ToString):
4420         * Single.cs (ToString): Handle case where param is a CultureInfo.
4422 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
4424         * Object.cs ValueType.cs: Make the Object::GetHashCode() and 
4425         ValueType::Equals() icalls static non-virtual, so they can be called
4426         by the code in RuntimeHelpers.
4428 2003-04-18  Miguel de Icaza  <miguel@ximian.com>
4430         * Delegate.cs (operator ==): Do not crash if the second argument
4431         is null.  Bug fix submitted by Juan Cri.
4433 2003-04-18  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
4435         * Array.cs: Deleted the exception in Array.Initialize(), it looks
4436         like the method do nothing for C#, is still a MonoTODO until
4437         we find a compiler that uses that.
4439 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
4441         * Delegate.cs (Delegate): Seems like a typo, we were checking the
4442         a field rather than the argument 
4444         * MonoType.cs: Make GetNestedType an external method implementation.
4446 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4448         * Enum.cs: fixed bug #41294.
4450 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4452         * DateTime.cs: fixes bug #40910, part 2.
4454 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
4456         * String.cs (Equals): avoid the internal call, code cleanups
4458 2003-04-11  Alan Tam <Tam@SiuLung.com>
4460         * Convert.cs: fixed bug #41085.
4462 2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>
4464         * AppDomain.cs: Added internal method for getting process guid.
4466 2003-04-09  Ville Palo <vi64pa@kolumbus.fi>
4468         * Array.cs: Little fix to compare () method.
4469         
4470 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
4472         * String.cs (Equals): Add trivial optimization.
4474 2003-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4476         * DateTime.cs: fixed bug #40910.
4478 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
4480         * Console.cs: Make stderr, stdout and stdin use synchronized
4481         versions of the their readers/writers.
4483 2003-04-04  Dick Porter  <dick@ximian.com>
4485         * Version.cs: Make operator== and operator!= cope with null
4486         objects.  Didn't change operator<, operator<=, operator> or
4487         operator>= because its not meaningful to use those to compare
4488         against null, and throwing a NullReferenceException is probably
4489         the best thing to do there anyway.
4491         Fixes bug 40720.
4493 2003-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4495         * AppDomain.cs: fixed InvalidCastException.
4497 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
4499         * Array.cs (Copy): Call FastCopy() earlier to avoid the expensive
4500         type checks and let it decide whenever a fast copy is possible.
4502 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4504         * MonoType.cs:
4505         (GetMethodImpl): support BindingFlags.IgnoreCase flag. Fixes bug #40322.
4507 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
4509         * Activator.cs (CreateInstance): Call GetConstructor with the right
4510         arguments so the nonPublic argument is handled correctly.
4512 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4514         * Type.cs: fixed bug #40123.
4516 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
4518         * FloatingPointFormatter.cs: Fixed some bugs for get the same
4519         results than MS.NET. Added simple error recovering, now ToString
4520         will return a general format if there is any exception in the
4521         process of formatting. This make the library more robust while the
4522         formatters are refined.
4524 2003-03-16  Pedro Martínez Juliá  <yoros@wanadoo.es>
4526         * FloatingPointFormatter.cs: Added support for group separators.
4528 2003-03-16  Pedro Martínez Juliá  <yoros@wanadoo.es>
4530         * Single.cs:
4531         * Double.cs: Apply changes of .ToString methods.
4532         * SingleFormatter.cs:
4533         * DoubleFormatter.cs: Simple wrappers to FloatingPointFormatter.
4534         * FloatingPointFormatter.cs: New class. Implementation of double and
4535         single formatters. It is unified now and parametrized with precission
4536         values.
4538 2003-03-15  Lluis Sanchez Gual <lluis@ideary.com>
4540         * AppDomain.cs: fixes bugs #39380 and #39331.
4542 2003-03-06  Nick Drochak  <ndrochak@gol.com>
4544         * TimeSpan.cs (Negate): Throw exception when value is MinValue.
4546 2003-03-04  Dick Porter  <dick@ximian.com>
4548         * Single.cs:
4549         * Double.cs: Temporarily reverted the Double and Single ToString()
4550         change, because it broke nunit.
4553 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
4555         * Double.cs: Changed ToString method. Added NumberFormatInfo support
4556         with DoubleFormatter class.
4557         * Single.cs: Changed ToString method. Added NumberFormatInfo support
4558         with SingleFormatter class.
4559         * DoubleFormatter.cs: New class with Double formatting functions.
4560         * SingleFormatter.cs: New class with Single formatting functions.
4562 2003-03-03  Lluis Sanchez Gual <lluis@ideary.com>
4564         * Activator.cs: Added support for activation using activation attributes.
4565         * AppDomain.cs: Added internal method to get the default context from the runtime.
4567 2003-02-28  Elan Feingold  <efeingold@mn.rr.com>
4569         * DateTime.cs: FileTime is expressed in Universal time, and as such must
4570         be converted before subtracting the magic offset.
4571         * DateTime.cs: Strings in the format "2003-02-27T10:05:03-11:00" (note
4572         the timezone at the end) *must* be parsed by DateTime.Parse() for
4573         compatibility with Microsoft.
4575 2003-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4577         * Attribute.cs:
4578         * MonoCustomAttrs.cs: fix for the regression test failure (see bug
4579         #38238).
4581         * IntPtr.cs: added serialization .ctor
4583 2003-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4585         * AppDomain.cs: check for null in Unload and changed method name.
4587 2003-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4589         * MonoCustomAttrs.cs: fixed bug #38238.
4591 2003-02-17  Martin Baulig  <martin@ximian.com>
4593         * Exception.cs (Exception.ToString): Print a newline between the
4594         exception message and the stack trace.
4596 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4598         * AppDomain.cs: implemented GetCurrentThreadId ().
4600 2003-02-14  Patrik Torstensson
4602         * Exception.cs: Fixed message output formating
4604 2003-02-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4606         * Int32.cs:
4607         (Parse): ignore everything after a \0 (MS parses: "512\0hola" as 512).
4609 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
4611         * Type.cs: IsClass should return false for Enumerations
4613 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4615         * MonoCustomAttrs.cs: return the correct array type in the short case.
4616         Fixes bug #37818.
4618 2003-02-08  Pedro Martíenz Juliá  <yoros@wanadoo.es>
4620         * Math.cs: Fix a few methods (like Round) and add with comments the
4621         new methods: BigMul and DivRem that were in ECMA specs.
4623 2003-02-07  Patrik Torstensson
4625         * Exception.cs: Fixed formating
4627 2003-02-05  Patrik Torstensson
4629         * AppDomain.cs: Partly fixed the unload method 
4630         
4631 2003-02-04  Patrik Torstensson
4633         * AppDomain.cs: Fixed lease issue with appdomain
4635 2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>
4637         * MarshalByRefObject.cs: Implemented GetLifetimeService() and 
4638           InitializeLifetimeService().
4640 2003-02-03  Patrik Torstensson
4642         * AppDomain.cs: New internalcalls for handling domain/context switches
4643         * AppDomain.cs (CreateDomain): Return transparant proxy for appdomain object
4645 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4647         * AppDomain.cs: implemented AppendPrivatePath, ClearPrivatePath
4648         and ClearShadowCopyPath and fixed GetType ().
4650         * Attribute.cs: clean up.
4652         * Console.cs: removed UnixConsoleEncoding. Use Default.
4654 2003-02-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4656         * Attribute.cs: fixed all IsDefined overloads. Gotta fix
4657         GetCustomAttributes later.
4659 2003-01-31  Patrik Torstensson
4661         * Buffer.cs: Changed access level of BlockCopyInternal
4663 Thu Jan 30 19:54:30 CET 2003 Paolo Molaro <lupus@ximian.com>
4665         * String.cs, IntegerFormatter.cs: use const where appropriate.
4667 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4669         * MonoCustomAttrs.cs: fixed GetBase () for Type. Thanks to Zoltan for
4670         reporting.
4672 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4674         * MonoCustomAttrs.cs: fixed shortcut in GetCustomAttributes.
4675         The argument ICustomAttributeProvider can be of other types different
4676         from Type. Handle it.
4678 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
4680         * DateTime.cs: fix FromFileTime so the time returned by 
4681         File::GetLastModificationTime etc. is in the correct timezone.
4683 2003-01-28  Patrik Torstensson
4684         * Exception.cs: reverted formating/endline changes (sorry guys)
4686 2003-01-28  Patrik Torstensson
4688         * MarshalByRefObject.cs: implemented GetObjectIdentity
4689         * Exception.cs: added support for remote exceptions
4691 2003-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4693         * DateTime.cs: fixed bug #37225.
4695 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4697         * Enum.cs: Clone the arrays in GetNames and GetValues. Thanks lupus!
4699 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4701         * AppDomain.cs: Added DoTypeResolve method which will be called by
4702         the runtime to raise TypeResolve events.
4704 2003-01-27  Duncan Mak  <duncan@ximian.com>
4706         * Enum.cs (ToType): Implement this using Convert.ToType.
4708 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
4710         * Math.cs: Remove Pow's implementation body as it was wrong.  The
4711         C code does the right thing.  The code was trying to handle a
4712         number of cases, and that was incorrect.
4714 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4716         * CharEnumerator.cs: fix to Current by crainaj@hotmail.com. Closes
4717         bug #37113.
4719 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4721         * Enum.cs: added caching to GetInfo.
4723 2003-01-23  Dick Porter  <dick@ximian.com>
4725         * Environment.cs (System): Implemented ExitCode
4727 2003-01-23  Zoltan Varga  <vargaz@freemail.hu>
4729         * Type.cs (IsInstanceOfType): fixed regression caused by the change
4730         to IsSubclassOf().
4732 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4734         * MonoType.cs: re-added lines that were removed in the previous commit.
4736 2003-01-16  Lluis Sanchez Gual <lsg@ctv.es>
4738         * Type.cs: corrected property IsSerializable. It should always return
4739         true for enums and delegates
4740         * MonoType.cs: added serialization support.
4741         * Delegate.cs: added serialization support.
4742         * DBNull.cs: added serialization support.
4743         * UnitySerializationHolder.cs: supports serialization of Assembly,
4744         MonoType and DBNull.
4745         * DelegateSerializationHolder.cs: added.
4747 2003-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4749         * Exception.cs: changed default message to match MS one.
4751 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
4753         * String.cs: Fixed bug with CompareOrdinal
4755 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4757         * Enum.cs: implements IFormattable.
4759 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4761         * AppDomain.cs: implemented DoCallBack method.
4762         * MonoType.cs:
4763         (GetConstructorImpl): when the flag is BindingFlags.Default, set it to
4764         Public, Instance.
4766         NUnit2 tests start moving.
4768 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4770         * Activator.cs: fixed bug #36052. Also added checks to avoid trying to
4771         instantiate an abstract class.
4773 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4775         * Type.cs:
4776         (IsSubclassOf): return false when null. Use != instead of Equals.
4778 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4780         * Type.cs: fixed IsSubclassOf. Patch from Zoltan Varga.
4782 Fri Jan 3 20:18:51 CET 2003 Paolo Molaro <lupus@ximian.com>
4784         * MonoType.cs: fixed Namespace property for nested types.
4786 Fri Jan 3 16:18:27 CET 2003 Paolo Molaro <lupus@ximian.com>
4788         * MonoCustomAttrs.cs: create properly typed arrays when returning
4789         arrays of attributes of a given type.
4791 Fri Jan 3 11:10:14 CET 2003 Paolo Molaro <lupus@ximian.com>
4793         * MonoType.cs: fixed MemberType property for nested types.
4795 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4797         * String.cs: fixed bug #36209.
4799 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>
4801         * Activator.cs: implemented method GetObject.
4803 2002-12-28  Marcus Urban <mathpup@mylinuxisp.com>
4805         * Activator.cs: Since the documentation indicates the method
4806         either succeeds or throws one of the listed exceptions, we weren't
4807         expecting that CreateInstance might be returning null.
4809         For more information on the bug, see http://bugs.ximian.com/show_bug.cgi?id=36109
4811 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>
4813         * MarshalByRefObject.cs: implemented CreateObjRef.
4815 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4817         * DateTime.cs: fixed bug #30076.
4818         * TimeZone.cs: provide the parameter name in a exception.
4820 2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4822         * DecimalFormatter.cs: fixed bug #35560.
4824 Wed Dec 4 16:04:28 CET 2002 Paolo Molaro <lupus@ximian.com>
4826         * Type.cs: implemented GetInterfaceMap (needs an updated runtime).
4828 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4830         * Array.cs: use Object.Equals (obj, obj) to compare objects to avoid
4831         nulls. Fixes #34909.
4833 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4835         * AppDomain.cs: DoAssemblyResolve now returns when one of the handlers
4836         returns a non-null assembly.
4838 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4840         * MulticastDelegate.cs: make GetInvocationList work for more than 1
4841         delegate.
4843 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4845         * MulticastDelegate.cs: implemented GetInvocationList. I'll check later
4846         if this is the correct order of invocation.
4848 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4850         * Type.cs: changed the signature of internal_from_name. Modified
4851         the overloads of GetType to use it and check the typeName argument.
4852         Implemented FindInterfaces.
4854 2002-11-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4856         * MarshalByRefObject.cs: undo latest changes. It breaks the build by
4857         some obscure reasons (try make -f makefile.gnu using a corlib which has
4858         the modified version).
4860 2002-11-26  Miguel de Icaza  <miguel@ximian.com>
4862         * String.cs (Concat): Reduce the number of compares required. 
4864 Mon Nov 18 17:54:22 CET 2002 Paolo Molaro <lupus@ximian.com>
4866         * Activator.cs: throw a MissingMethodException if the default
4867         constructor is not found in CreateInstance.
4869 2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4871         * String.cs:
4872         (Equals (str, str)): use 'as' instead of casting to object.
4873         (Equals (obj)): check the length of the strings (until now,
4874         "Hello".Equals ((object) "Hellow World!) was true!).
4876 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4878         * MonoType.cs: implemented GetEvent (name, flags).
4880 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4882         * AppDomain.cs: implemented a couple of methods called from the runtime
4883         to fire AssemblyLoad and AssemblyResolve events.
4885 2002-10-31  Dick Porter  <dick@ximian.com>
4887         * Environment.cs: MonoIO methods now have an error parameter
4889 2002-10-29  Zoltan Varga  <vargaz@freemail.hu>
4891         * Enum.cs: Added support for whitespaces in Enum:Parse().
4893 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4895         * Type.cs: fixed GetProperty (string, Type []) and removed get_property
4896         internal call. Closes bug #32992.
4898 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4900         * Exception.cs: display the inner exception, if any, in ToString ().
4902 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4904         * Environment.cs: fixed StackTrace property.
4906 2002-10-16  Nick Drochak  <ndrochak@gol.com>
4908         * Enum.cs (Parse): Then fix the code so that it works too.
4910 2002-10-15  Nick Drochak  <ndrochak@gol.com>
4912         * Enum.cs (Parse): Use unsigned casts to avoid compiler warnings.
4914 2002-10-12  Nick Drochak  <ndrochak@gol.com>
4916         * IntegerFormatter.cs: Fix compiler warnings.
4918 2002-10-11  Tim Haynes <thaynes@openlinksw.com>
4920         * Type.cs (GetConstructors): Use the correct flags.
4922 2002-10-09  Nick Drochak  <ndrochak@gol.com>
4924         * IntegerFormatter.cs: Suppress insignificant leading zeros
4926 Fri Sep 27 15:06:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4928         * MonoCustomAttrs.cs: applied patch by "Si Jingnan"
4929         <stonewell@21cn.com> to return also derived types.
4931 2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4933         * Activator.cs: little fix in CreateInstance (Type, bool).
4935 2002-09-19  Duncan Mak  <duncan@ximian.com>
4937         * Array.cs (CopyTo): Revert back to 1.40, this is stopping
4938         I18N/Common from building right now.
4940 2002-09-19  Nick Drochak  <ndrochak@gol.com>
4942         * Array.cs (CopyTo): Account for Object type and base (primitive) types
4943         * Type.cs (IsAssignableFrom): return false for a null parameter
4945 2002-09-19  Nick Drochak <ndrochak@gol.com>
4947         * Array.cs (CopyTo): Check that source type can be cast automatically
4948         to the destination type.
4950 2002-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4952         * Type.cs: implemented IsAssignableFrom, DefaultBinder and
4953         GetDefaultMembers.
4955 2002-09-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4957         * Char.cs: implemented ToString (char)
4958         * IntegerFormatter.cs: made it internal.
4960 2002-09-13  Nick Drochak  <ndrochak@gol.com>
4962         * Enum.cs (Format): handle the "d" format for both signed and unsigned
4963         underlying types.
4965 2002-09-12  Dick Porter  <dick@ximian.com>
4967         * UIntPtr.cs: Remove the [StructLayout(LayoutKind.Auto)]
4968         attribute, as there doesn't appear to be any struct
4969         layout-depending code here (and corcompare says it should be
4970         LayoutKind.Sequential)
4972         * Decimal.cs: Stub out missing methods, add
4973         [DecimalConstantAttribute] to the constant fields (as shown by
4974         corcompare).
4976         * LocalDataStoreSlot.cs: 
4977         * Environment.cs: 
4978         * Char.cs: 
4979         * Array.cs: Stub out missing methods.
4981         * TypedReference.cs: 
4982         * ArgIterator.cs: Stub out
4984         * AppDomainSetup.cs: 
4985         * AppDomain.cs: Stub out missing methods, add missing
4986         ClassInterface(ClassInterfaceType.None) attribute.
4988 2002-09-12  Nick Drochak  <ndrochak@gol.com>
4990         * Double.cs (ToString): Throw exception when "X" format is passed in.
4992 Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
4994         * MonoType.cs: implemented Module property.
4996 Wed Sep 11 12:49:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
4998         * MonoType.cs, Type.cs: implemented InvokeMember.
5000 Wed Sep 11 11:06:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
5002         * Delegate.cs: check the type passed to CreateDelegate is a Delegate
5003         type. Check the method signature matches.
5005 Sat Sep 7 10:16:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
5007         * RuntimeMethodHandle.cs: implemented GetFunctionPointer().
5009 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
5011         * Console.cs: Specify an encoder, otherwise we will get the UTF8
5012         encoder that by default emits the byte markers.
5014 Fri Sep 6 20:14:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
5016         * Delegate.cs: look also for non-public methods until we have the
5017         security checks in place.
5019 Fri Sep 6 12:20:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
5021         * MonoType.cs: consider also the full name in GetInterface.
5023 Fri Sep 6 12:11:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5025         * MonoType.cs: implemented GetMembers, GetConstructorImpl and
5026         GetMethodImpl using the binder.
5027         * Type.cs: GetConstructorImpl/GetConstructor fixes.
5029 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
5030         * Enum.cs: Get rid of warning CS0162.
5032 2002-09-04  Miguel de Icaza  <miguel@ximian.com>
5034         * Double.cs, Single.cs, Char.cs, Boolean.cs: Use internal for the
5035         actual value instead of public.
5037         * LocalDataStoreSlot.cs: Make constructor internal.
5039         * Int16.cs, UInt16.cs, Int32.cs, UInt32.cs, Int64.cs, UInt64.cs,
5040         SByte.cs, Byte.cs, Char.cs: Use internal for the actual value
5041         instead of public.
5043 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
5044         * Enum.cs: Fixed Enum.Format so that the "x" format specifier would work
5045                    properly.
5047 2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5049         * DateTime.cs: fixed buglet.
5051 Tue Aug 27 16:39:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
5053         * MonoType.cs: speedup access to common data.
5055 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5057         * Double.cs: implemented TryParse.
5059         * Math.cs: PowImpl is now private.
5061         * MissingFieldException.cs: implemented Message.
5063         * RuntimeMethodHandle.cs: stubbed GetFunctionPointer.
5065         * _AppDomain.cs: Uncommented ToString.
5067 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5069         * Type.cs:
5070         (IsValueTypeImpl): it's virtual, not abstract. Implemented.
5072 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5074         * ArgumentException.cs: use the field instead of the property for
5075         param_name.
5077         * ArgumentOutOfRangeException.cs: modified Message.
5079         * DateTime.cs: 
5080         (_DoParse): throw out of range exception for year. Removed check
5081         for month (it's done in the constructor).
5083 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
5085         * Environment.cs: Implemented OSVersion property.
5087 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
5089         * Exception.cs: set stack_trace to null
5091 Wed Aug 21 13:02:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
5093         * AppDomain.cs: implemented ToString().
5095 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5097         * AppDomain.cs: securityInfo can be null in CreateDomain.
5099 2002-08-19  Dick Porter  <dick@ximian.com>
5101         * MonoType.cs: Add a space before the Assembly name in
5102         AssemblyQualifiedName (needed for resource files so the MS runtime
5103         can load types)
5105 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5107         * AppDomain.cs: parameter name when throwing ArgumentNullException.
5109         * ArgumentException.cs: modified Message to do what MS does.
5111         * ArgumentNullException.cs: don't use {0} in message.
5113         * Exception.cs: use Message property in ToString ().
5115 2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
5117         * WeakReference.cs: Changed the constructor and GetObjectData
5118         method needed for ISerializable implementation in order to be
5119         compatible with SOAP generated by MS.
5121 Wed Aug 14 17:34:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
5123         * MonoType.cs, Type.cs: DeclaringType/ReflectedType fixes.
5125 2002-08-12  Dietmar Maurer  <dietmar@ximian.com>
5127         * Exception.cs (ToString): changed the ouput format.
5129 2002-08-07  Dietmar Maurer  <dietmar@ximian.com>
5131         * MonoType.cs: moved get_method icall to this class, we can
5132         remove it as soon someone provides a full featured GetMethodImpl.
5134         * Type.cs: use GetMethodImpl everywhere.
5136         * Delegate.cs: new CreateDelegate implementations.
5138 2002-08-06  Tim Coleman <tim@timcoleman.com>
5139         * MonoType.cs: 
5140                 Fix bug #28582.  Now checks parameters for properties
5141                 in GetPropertyImpl.
5143 2002-08-04  Nick Drochak  <ndrochak@gol.com>
5145         * Buffer.cs: Throw correct exception in GetByte() and SetByte().
5147 2002-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5149         * String.cs:
5150         (FormatSpecifier): allow white space between the comman and the width
5151         specifier.
5153 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5155         * Int32.cs:
5156         * Int64.cs:
5157         * UInt32.cs:
5158         * UInt64.cs: fixed bug #28050. May be a MS bug?
5160 Thu Jul 18 14:47:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
5162         * MonoType.cs: fix IsArrayImpl.
5164 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5166         * String.cs: make ToLower (culture) and ToUpper (culture) use the
5167         default ToLower and ToUpper and don't throw NotImplemented.
5169 Sat Jul 13 15:09:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
5171         * Type.cs: make GettTypeCode an icall. Test implementation of
5172         GetMember().
5174 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5176         * AppDomainSetup.cs: implemented LoaderOptimization.
5178 2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5180         * Activator.cs: some more intermediate results checking in
5181         in CreateInstance and CreateInstanceFrom and use GetConstructor and
5182         Invoke only with Type [] until the other overloaded versions work.
5184 2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5186         * Activator.cs: reformatted. Implemented CreateInstance* methods
5187         that return ObjectHandle.
5189         * AppDomain.cs: implemented CreateInstance*AndUnwrap methods.
5191 2002-07-03  Nick Drochak  <ndrochak@gol.com>
5193         * Decimal.cs (Divide): Short cut the case where the dividend is 0 (and
5194         the divisor is not) and avoid the icall, which seems to have a bug.
5196 2002-07-03  Nick Drochak  <ndrochak@gol.com>
5198         * Double.cs (CompareTo): Correctly handle the case where the instance
5199         is NaN. Also return 0 if the values are equal.
5201 2002/07/03  Nick Drochak <ndrochak@gol.com>
5203         * MissingMethodException: Add missing Message property
5204         * MissingMemberException: Add missing Message property
5206 2002-06-30  Nick Drochak  <ndrochak@gol.com>
5208         * Double.cs (CompareTo): Just see which is bigger.  Don't use the
5209         subtraction trick, it doesn't work when the values have a diference of
5210         less than one.
5212         * Single.cs (CompareTo): same
5214 2002-06-27  Martin Baulig  <martin@gnome.org>
5216         * UIntPtr.cs (UIntPtr.Zero): Use an explicit `u' suffix in the
5217         constructor argument.  [FIXME: The implicit conversion to an
5218         unsigned integer doesn't work with mcs.]
5220 2002-06-26  Martin Baulig  <martin@gnome.org>
5222         * DecimalFormatter.cs: Removed MSTEST stuff, use `System',
5223         not `S = System'.  This file now compiles with mcs.
5225         * String.cs: Removed the already ifdef-outed __arglist Concat function
5226         to make it compile with mcs.
5228 2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5230         * IntegerFormatter.cs:
5231         (FormatParse.FormatNumber): fixed custom format for negative numbers.
5233 2002-06-21  Martin Baulig  <martin@gnome.org>
5235         * Double.cs: Replace the private `enum State' with constants since this
5236         will avoid some bigger headaches in mcs.
5238 Thu Jun 20 17:51:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
5240         * TimeSpan.cs: do not pollute the namespace with the
5241         System.Parser name.
5243 2002-06-18  Nick Drochak  <ndrochak@gol.com>
5245         * ArgumentException.cs: Use the message given in the constructor when
5246         accessing the Message property.  Thanks to Dietmar for the help with 
5247         "base".
5249 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
5251         * MonoType.cs: GetField is now a InternalCall
5253 2002-06-13  Nick Drochak  <ndrochak@gol.com>
5255         * DateTime.cs: (Parse): Accept dates that have no hour,min,sec. in the
5256         sortable format(s), e.g. "2002-02-25"
5258 2002/06/12  Nick Drochak <ndrochak@gol.com>
5260         * Random.cs (Next): Fix math error.  Return a number within the range.
5262 2002-06-12  Nick Drochak  <ndrochak@gol.com>
5264         * String.cs (IndexOf): Return -1 if start index is equal to string
5265         length.
5267 2002-06-10  Duncan Mak  <duncan@ximian.com>
5269         * Convert.cs (ToDouble): Remove rounding in ToDouble (float).
5270         (ToType): Added null field in conversionTable to avoid
5271         IndexOutOfRangeException. Changed what exceptions we throw to match
5272         the spec.
5273         
5274 2002-06-11  Nick Drochak  <ndrochak@gol.com>
5276         * Int64.cs (Parse): Added unique strings to the messages where we throw
5277         a FormatException. Needed these to debug, so just left them in since
5278         they might be useful later. Fixed Currency parsing where we weren't
5279         looking at CurrencyDecimalSeparator, etc.
5281 2002-06-09  Lawrence Pit  <loz@cable.a2000.nl>
5283         * DateTime.cs: fixes to pass tests M0 to M6:
5284                 if yy pattern then year values >= 30 are in 20th century
5285                 rfc1123 pattern is always in GMT, therefor useutc must be false
5286         made GetNow() internal static so it can be called from TimeZone.
5287         * TimeZone.cs: removed dependency on year 2002 from initialization of 
5288         current timezone.
5290 2002-06-09  Duncan Mak  <duncan@ximian.com>
5292         * Convert.cs (ToType): Rearranged what Exceptions we throw to
5293         match MS behavior.
5295 2002-06-08  Duncan Mak  <duncan@ximian.com>
5297         * Decimal.cs: Added support for the IConvertible interface.
5299 2002-06-08  Martin Baulig  <martin@gnome.org>
5301         * Enum.cs (IsDefined): `value' may be of the enum's type itself, it
5302         doesn't necessarily need to be of the enum's underlying type.
5304 2002/06/07  Nick Drochak <ndrochak@gol.com>
5306         * String.cs: Add [Serializable] to class
5307         * SByte.cs (Parse): Add [CLSCompliant(false)] to all the overloads
5309 2002-06-04  Nick Drochak  <ndrochak@gol.com>
5311         * Double.cs (Parse): Recognize the group separator string, but still we
5312         don't check the format for the proper number of digits between
5313         separators. Also throw OverflowException when we get Pos or Neg
5314         Infinity from runtime.
5316 2002-06-03  Duncan Mak  <duncan@ximian.com>
5318         * Convert.cs (ToDouble): Fixed ToDouble (byte value).
5320 Mon Jun 3 12:18:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
5322         * Type.cs: fixed GetTypeCode.
5324 2002-06-02  Duncan Mak  <duncan@ximian.com>
5326         * Convert.cs (ToInt16): use Convert.ToInt16 (int) instead of a direct
5327         cast from an int so that we throw OverFlowException correctly.
5328         
5329         (ToInt64): Use a new 64bit version of ConvertToBase.
5330         
5331         (ConvertToBase): Add checks for overflow (checks Int32.MinValue
5332         and Int32.MaxValue).
5334         (ConvertFromBase64): New 64-bit version of ConvertFromBase.
5336 2002-06-02  Nick Drochak  <ndrochak@gol.com>
5338         * Convert.cs (ToSByte): Check for special value.
5339         * Single.cs (Parse): 
5340         * UInt16.cs (Parse):
5341         * UInt32.cs (Parse): Throw OverflowException if negative
5343 2002-06-02  Duncan Mak  <duncan@ximian.com>
5345         * Convert.cs (DBNull): Point it to DBNull.Value.
5346         (IsDBNull): Instead of checking typecodes, just check to see if
5347         it's the same as the DBNull field.
5349 2002-06-02  Nick Drochak  <ndrochak@gol.com>
5351         * Convert.cs (ConvertFromBase): Detect bad digits correctly.
5353 2002-06-02  Duncan Mak  <duncan@ximian.com>
5355         * Char.cs (Parse): Simplify the Exception handling.
5357         * Convert.cs (ToDecimal): Remove call to Math.Round () when
5358         converting from a float.
5360 2002-05-30  Martin Baulig  <martin@gnome.org>
5362         * MonoType.cs (GetInterface): Implemented.
5364 Thu May 23 17:17:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5366         * Activator.cs: implemented CreateInstance ().
5368 2002-05-22  Duncan Mak  <duncan@ximian.com>
5370         * Convert.cs (ConvertToBase): Added new 64bit version.
5371         (BuildConvertedString64): New 64bit version of
5372         BuildConvertedString.
5374         This fixes bug 25068.
5376         (ConvertFromBase): Added additional test for checking if the
5377         digits are valid. Thanks to Miguel for coming up with this test.
5379         This fixes bug 25071.
5380         
5381 2002-05-21  Duncan Mak  <duncan@ximian.com>
5383         * Convert.cs (ToType): Rearranged to fit the new layout of
5384         conversionTable.
5386         (conversionTable): Rearranged to fit the layout of the
5387         System.TypeCode enum.
5389         This should fix bug 25075.
5390         
5391 2002-05-21  Duncan Mak  <duncan@ximian.com>
5393         * Convert.cs (ToString): Fixed the ToString methods. Previously I had
5394         mixed up the two code paths, one for converting to a specific base
5395         (this case), another from converting from a foreign base to base10
5396         (used by ToInt16|32|64 (string, int)). This fixes bug 25068.
5398         * Convert.cs (ToByte)
5399         (ToSByte): Fixed bug 25074. Added more bits to ConvertFromBase so
5400         that we won't confuse FormatException with OverflowException.
5402 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
5404         * Environment.cs: CommandLine missed spaces between arguments.
5405         Implemented StackTrace. Returning MachineName in UserDomainName
5406         instead of null.
5407         
5408 Tue May 21 17:25:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
5410         * MonoCustomAttrs.cs: handle inherit argument.
5412 2002-05-21  Nick Drochak  <ndrochak@gol.com>
5414         * Math.cs (Pow): Change icall method name and insert parameter
5415         checks in for infinities and NaN.
5417 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
5419         * Double.cs (Parse): Reimplement by cleaning up the string first,
5420         and then passing to strtof in the mono runtime.
5422         * Single.cs (Parse): Use the Double implementation and cast to
5423         float. 
5425 2002-05-21  Nick Drochak  <ndrochak@gol.com>
5427         * Math.cs 
5428                 (Ceiling): Check for "special" values
5429                 (Floor): Check for "special" values
5430                 (Round): Fix off-by-one error on decimal shifting
5432 2002-05-20  Lawrence Pit  <loz@cable.a2000.nl>
5434         * DateTime.cs: ToString () using "G" format specifier 
5436 2002-05-19  Martin Baulig  <martin@gnome.org>
5438         * Convert.cs (FromBase64CharArray): Do correct exception handling.
5440 2002-05-19  Martin Baulig  <martin@gnome.org>
5442         * Convert.cs (FromBase64CharArray): Convert the char array using
5443         System.Text.UTF8Encoding, not UnicodeEncoding (which is UTF-16) to
5444         a byte array.
5446 2002-05-17  Miguel de Icaza  <miguel@ximian.com>
5448         * MonoType.cs: Style changes.
5450         * Type.cs: Style changes.
5452 2002-05-16  Piers Haken <piersh@friksit.com
5454         * UInt64.cs: fix declaration of IConvertible.To* overrides.
5456 2002-05-16  Nick Drochak  <ndrochak@gol.com>
5458         * BitConverter.cs (ToString): Add parameter check for invalid start 
5459         index.
5461         * Console.cs: Use AutoFlush on the StreamWriter for stdin and stdout
5462         now that StreamWriter uses buffering
5464 2002-05-14  Miguel de Icaza  <miguel@ximian.com>
5466         * Double.cs: Oops.  Also handle exponents without finding a dot.
5468 2002-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5470         * ChangeLog: removed empty entry at the top of the file.
5472         * Int32.cs: made static functions used by Parse internal.
5474         * Int64.cs:
5475         * UInt32.cs:
5476         * UInt64.cs: removed static fucntions used by Parse and use the ones
5477         in Int32.cs
5479 2002-05-12  Daniel Morgan <danmorg@sc.rr.com>
5481         * IServiceProvider.cs: added using System
5483 2002-05-09  Daniel Morgan <danmorg@sc.rr.com>
5485         * Single.cs: copied ToString() and Parse() methods from 
5486         Double to Single and modified a tiny bit for Single.  
5487         There is still a FIXME for Double and Single about
5488         passing the format and provider info to the icall too.
5490 2002-05-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5492         * Int32.cs:
5493         * Int64.cs:
5494         * UInt32.cs:
5495         * UInt64.cs (Parse): don't use Char.IsNumber to test for hex digits.
5496         Don't use a delegate to test for valid digits.
5498 2002-05-01  Duncan Mak  <duncan@ximian.com>
5500         * Convert.cs: 
5501         * Math.cs: Added missing CLSCompliant attributes where necessary.
5502         
5503 2002-04-30  Duncan Mak  <duncan@ximian.com>
5505         * ArgumentException.cs (Message): 
5506         * ArgumentOutOfRangeException.cs (Message): Added.
5508 2002-04-30  Nick Drochak  <ndrochak@gol.com>
5510         * MonoType.cs: Remove unused variable and eliminate a compiler warning.
5512 Mon Apr 29 15:32:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
5514         * Environment.cs: support for Exit(), CommandLine, CommandLineArgs ().
5516 2002-04-28  Duncan Mak  <duncan@ximian.com>
5518         * DivideByZeroException.cs: Added missing serialization constructor.
5520         * UnauthorizedAccessException.cs: Added the missing Serializable attribute.
5522 2002-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5524         * Math.cs: fix Floor () and Round (). Closes #23960.
5526 2002-04-27  Nick Drochak  <ndrochak@gol.com>
5528         * Array.cs (IList.Contains): Should throw a RankException if this is 
5529         called on a Rank > 1 array. Not in the docs, but this is what the 
5530         MS.NET does.
5532 2002-04-26  Duncan Mak  <duncan@ximian.com>
5534         * MissingMemberException.cs: Made the message variable 'protected'
5535         instead of 'private', so that we can see it in
5536         MissingMethodException and MissingFieldException.
5538         * MissingFieldException.cs:
5539         * MissingMethodException.cs: Added missing (string, string)
5540         constructor, and also the Message property.
5542 2002-04-26  Martin Baulig  <martin@gnome.org>
5544         * Enum.cs: Implemented the IConvertible methods.
5546 2002-04-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5548         * SByte.cs: little change in Parse (string) to avoid incorrect
5549         OverflowException thrown (reported by nickd).
5551 2002-04-22  Miguel de Icaza  <miguel@ximian.com>
5553         * ValueType.cs: Add Serializable attribute.
5555         * String.cs: ifdef-out out the __arglist Concat function until I
5556         add support for that to mcs.
5558 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
5560         * AppDomain.cs (GetValue): usage of the correct icall (bug)
5562 Wed Apr 24 21:15:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
5564         * GC.cs: implement most of the methods as icalls.
5566 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5568         * DecimalFormatter.cs (ToString): return correct value when the
5569         decimal number is 0.
5571 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
5572         
5573         * Type.cs (GetProperty): fixed call syntax (needs an empty array not null)
5574         * MonoType.cs (GetPropertyImpl) : basic implementation (ignores types, bindingAttr, modifiers)
5576 2002-04-24  Nick Drochak  <ndrochak@gol.com>
5578         * Double.cs (Parse): Handle case where there are no digits before the 
5579         decimal point, such as ".1".
5581 2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5583         * Int32.cs:
5584         * UInt32.cs:
5585         * Int64.cs:
5586         * UInt64.cs: fixed bug #23738 (hex numbers parsed wrong).
5588 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
5590         * String.cs (Split): fixed invalid split of count 0 and 1.
5591         
5592 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
5593         
5594         * String.cs (LastIndexOf): fixed argument checking.
5595         * String.cs (Equals): made internal for performace.
5597 2002-04-23  Nick Drochak  <ndrochak@gol.com>
5599         * String.cs (Join): check argument and throw exception if needed
5601 2002-04-23  Nick Drochak  <ndrochak@gol.com>
5603         * String.cs (StartsWith): check argument and throw exception if needed
5605 2002-04-22  Nick Drochak  <ndrochak@gol.com>
5607         * String.cs (IndexOfAny): check arguments and throw exceptions as
5608         neccessary.  ALso remove some debug WriteLines.
5610 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
5612         * String.cs: use internal constructors
5613         buf fix in Concat.
5615 Thu Apr 18 17:16:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
5617         * MonoType.cs: make GetElementType its own icall.
5619 2002-04-18  Nick Drochak <ndrochak@gol.com>
5621         * String.cs: Modified file. Re-add methods needed by the unit tests.
5623 Thu Apr 18 12:38:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
5625         * String.cs: some code speedups and restored GetTypeCode().
5627 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5629         * String.cs: New implementation using internal calls.
5630         
5631 2002-04-16  Nick Drochak  <ndrochak@gol.com>
5633         * DecimalFormatter.cs: Trim off excess null characters from the string
5634         that decimal2string gives back.
5636 2002-04-16  Nick Drochak  <ndrochak@gol.com>
5638         * String.cs (SubString): revert my change.  I can't reproduce the
5639         problem anymore.
5641 2002-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5643         * Attribute.cs: added GetHashCode and Equals.
5645 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5647         * Enum.cs: little improvements to Format ().
5649 Thu Apr 11 12:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
5651         * String.cs: internalcall GetHashCode().
5652         * Array.cS: optimize access to elements.
5654 Wed Apr 10 21:20:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
5656         * String.cs: make IndexOfAny() use an internalcall.
5658 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5660         * Int32.cs:
5661         * UInt32.cs:
5662         * Int64.cs: 
5663         * UInt64.cs: fixed error when testing for validity of flags.
5665 2002-04-11  Nick Drochak  <ndrochak@gol.com>
5667         * Double.cs: Use an internal call for ToString(). This is just a simple
5668         implementation to get away from throwing a NotImplementedException.
5670 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5672         * Int32.cs:
5673         * UInt32.cs:
5674         * Int64.cs: 
5675         * UInt64.cs: changed Type.GetType () by typeof (), as suggested by
5676         lupus.
5678         * Int32.cs:
5679         * Int64.cs: throw an OverFlowException when parsing a string 
5680         containing a dot followed by any non '0' number.
5682 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5684         * Byte.cs:
5685         * UInt16.cs:
5686         * UInt32.cs:
5687         * UInt64.cs: added complex Parse ().
5689 2002-04-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5691         * SByte.cs:
5692         * Int16.cs:
5693         * Int32.cs:
5694         * Int64.cs: added complex Parse ().
5696 2002-04-09  Nick Drochak  <ndrochak@gol.com>
5698         * Array.cs (BinarySearch): Add checks on paramters before using them
5699         and throw exceptions as needed.
5701         * Enum.cs (Format): Check if [Flags] is applied to enum and convert
5702         "G" format to "F" if so.
5704 Tue Apr 9 13:12:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
5706         * MonoCustomAttrs.cs: return arrays of type Attribute[]
5707         instead of object[].
5709 2002/04/09  Nick Drochak <ndrochak@gol.com>
5711         * String.cs (Substring): Copy only non-null characters to the new
5712         string.
5714 2002-04-09  Nick Drochak  <ndrochak@gol.com>
5716         * IntegerFormatter.cs: Don't use a format character to indicate a
5717         custom format was passed in. It was using 'z' to indicate a custom
5718         format, but really it should throw a format exception if the user
5719         tries to use "z" as the format string. Now it does.
5721         * Activator.cs: New File.
5723 2002-04-08  Nick Drochak  <ndrochak@gol.com>
5725         * Enum.cs (ToString): Big ugly fix for the case where [Flags] is
5726         applied to an enum. Need to handle the different possible integer
5727         types of an enum somehow.  Can anyone say generics?
5729 Mon Apr  8 06:22:42  2002 Piers Haken <piersh@friskit.com>
5731         * Convert.cs: switched the To*(object) methods to use
5732         IConvertible directly instead of calling ChangeType
5734 Sat Apr 6 20:08:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
5736         * ValueType.cs: make Equals() an internalcall.
5738 Fri Apr 5 15:38:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
5740         * Type.cs: also look for nested types in FindMembers.
5741         * MonoType.cs: make GetNestedTypes() an internalcall.
5743 2002-04-05  Nick Drochak  <ndrochak@gol.com>
5745         * Enum.cs (Parse): Handle different underlying types.
5747 2002/04/04 Nick Drochak <ndrochak@gol.com>
5749         * Enum.cs (IsDefined): Throw exception when type of value to look for
5750         is not the correct one.  Attempt to have it work with string values
5751         too, but not sure if the unit tests are getting that far yet.
5753 2002-04-04  Nick Drochak  <ndrochak@gol.com>
5755         * Decimal.cs: Fix a couple of typos.
5757 Wed Apr 3 19:46:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
5759         * Enum.cs: the values array is of the enum and not of the underlying
5760         type. Updates and some bug fixes.
5761         * MonoType.cs: make the internalcall return FullName instead of the
5762         assembly qualified name.
5763         * Type.cs: make ToString () simply return FullName.
5765 2002-04-03  Nick Drochak  <ndrochak@gol.com>
5767         * Type.cs (GetTypeCode): provide some of the implementation for this
5768         method.  It's still too simplistic to be considered complete.
5770 2002-04-02  Dietmar Maurer  <dietmar@ximian.com>
5772         * Object.cs: fixed FieldGetter/FieldSetter signature
5774 2002-04-02  Nick Drochak  <ndrochak@gol.com>
5776         * Environment.cs: add MonoTODO's on parts that should have it.
5778 2002-04-01  Nick Drochak  <ndrochak@gol.com>
5780         * Enum.cs: added reality checks (check parameters to most methods that
5781         need them).
5783 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
5785         * Object.cs: added FieldGetter/FieldSetter
5787 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5789         * IntegerFormatter.cs: fixed initialization error in static
5790         constructor.
5792 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
5794         * Delegate.cs: added new field to store a trampoline function
5796 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5798         * IntegerFormatter.cs: added workaround for bug #22668. First patch to
5799         make custom format strings work (not fully functional yet).
5801 2002/03/28  Nick Drochak <ndrochak@gol.com>
5803         * IntegerFormatter.cs: Change class from internal to public.  Add
5804         necessary [CLSCompliant(false)] attributes.
5806 2002-03-27  Duco Fijma  <duco@lorentz.xs4all.nl>
5807         * _AppDomain.cs, AppDomain.cs: renamed method GetDate to GetData
5808         (was a typo)
5810 2002-03-28  Nick Drochak  <ndrochak@gol.com>
5812         * Type.cs: Added MonoTODO tags on members that have FIXME, etc.
5814 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
5816         * Console.cs: Modified to get std handles from MonoIO.
5817         * Environment.cs: removed PAL dependencies.
5819 2002-03-25  Miguel de Icaza  <miguel@ximian.com>
5821         * String.cs (System): Removed internal enumeration, because
5822         bootstrapping the corlib at this point does not support
5823         enumerations. 
5825         * IntPtr.cs: Temporary work-around until I fix the assembly
5826         attributes bug.
5828 2002-03-24  Martin Baulig  <martin@gnome.org>
5830         * Enum.cs (GetValues): According to the docu this is sorted after
5831         values, not names.
5833         * String.cs (System): Removed enumeration, because it is pretty
5834         hard to support enumerations in /nostdlib mode for the core types.
5836 Tue Mar 19 18:18:49 CET 2002 Paolo Molaro <lupus@ximian.com>
5838         * Array.cs: move error handling in the catch block.
5839         * MulticastDelegate.cs: remove == and != operators that were
5840         removed with the delegate changes (when you add stuff, please do not
5841         remove existing functionality!).
5842         * Type.cs: if a property is not found in a type, search for it
5843         in the parent types, too.
5845 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
5846         
5847         * Math.cs: changed to use icall instead of PAL.
5849 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
5851         * Double.cs: added check for NaN (Bug [22082])
5853 2002-03-19  Nick Drochak  <ndrochak@gol.com>
5855         * Enum.cs (Equals): check for null and throw if it is.
5856         * Enum.cs (Format): check for null parameters and throw if necessary.
5857         This method still needs more argument checking.
5859 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
5861         * Enum.cs (Equals): check if Enums are of the same type
5863 2002-03-18  Nick Drochak  <ndrochak@gol.com>
5865         * Double.cs: Explicitly handle comparisons in CompareTo() for
5866         Positive/Negative Infinity and NaN. Unit Test now passes on Linux.
5868         * Enum.cs(CompareTo): Check types of values before trying to compare.
5869         Throw exceptions if types are invalid or don't match.
5871 2002-03-14  Miguel de Icaza  <miguel@ximian.com>
5873         * Array.cs: Add some extra debugging information.
5875 2002-03-15  Nick Drochak  <ndrochak@gol.com>
5877         * Array.cs: Added IList and IEnumerable. 
5879 2002-03-14  Miguel de Icaza  <miguel@ximian.com>
5881         * UInt64.cs, UInt32.cs, UInt16.cs: Mark public parse methods as
5882         NonCLSCompliant. 
5884 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
5886         * Delegate.cs (Equals): also compare method_ptr 
5887         (GetHashCode): returm method_ptr as hash
5889 2002-03-13  Duco Fijma  <duco@lorentz.xs4all.n>
5890         * TimeSpan.cs: removed the use of Custom Numeric Format Strings,
5891         such as 42.ToString("0000000"), as these are (currently) not implemented
5892         in System.IntegerFormatter. TimeSpan luckely can do with Standard
5893         Numeric Format Strings, such as 42.ToString("D7").
5895 2002-03-12  Duncan Mak  <duncan@ximian.com>
5897         * FieldAccessException.cs: 
5898         * MethodAccessException.cs: 
5899         * PlatformNotSupportedException.cs: Inherit from
5900         MemberAccessException, not SystemException.
5902         * ObsoleteAttribute.cs: Made Message and IsError properties
5903         instead of fields.
5905 Tue Mar 12 19:21:18 CET 2002 Paolo Molaro <lupus@ximian.com>
5907         * GC.cs: make SuppressFinalize() a nop.
5908         * Delegate.cs: fix == operator.
5910 2002-03-13  Nick Drochak  <ndrochak@gol.com>
5912         * Enum.cs: Add IConvertible methods. Cyclic dependancy fixed in the
5913         runtime that goes with this patch.
5915 2002-03-10  Martin Baulig  <martin@gnome.org>
5917         * Int32.cs (Parse): Correctly parse negative numbers.
5919 2002-03-08  Martin Baulig  <martin@gnome.org>
5921         * String.cs (Split): Really fix it this time. Also adding several new
5922         testcase to the testsuite.       
5924 2002-03-08  Martin Baulig  <martin@gnome.org>
5926         * Array.cs (Copy): Optimized: removed duplicate null check, removed
5927         two duplicate GetLowerBound() calls and one duplicate IsValueType.
5929 Fri Mar 8 18:49:19 CET 2002 Paolo Molaro <lupus@ximian.com>
5931         * Object.cs: commit my hacked GetHashCode(): it's good enough for now.
5932         * String.cs: use the dumb code for IndexOf(string): this is worth
5933         15-20 % speedup in mcs compile with mint.
5935 Fri Mar 8 12:45:44 CET 2002 Paolo Molaro <lupus@ximian.com>
5937         * String.cs: revert change to Split() that broke the compiler (hi martin!:-).
5939 2002-03-07  Martin Baulig  <martin@gnome.org>
5941         * String.cs (Join): Throw an ArgumentNullException.
5942         (LastIndexOf (string,int,int)): This method does a backwards search,
5943         so startIndex points to the end of value, not to its beginning. Don't
5944         throw an exception if startIndex equals this.Length. Always return -1
5945         if startIndex is smaller than the length of value.
5946         (Replace (string,string)): Replace all occurences of oldValue.
5947         If newValue is null, all occurences of oldValue are to be removed.
5948         (Split (char[],int)): Return an empty array if maxCount is zero, throw
5949         an ArgumentOutOfRangeException if it's less than zero. Return maxValue
5950         elements, not maxValue+1.
5952 Thu Mar 7 17:16:06 CET 2002 Paolo Molaro <lupus@ximian.com>
5954         * MonoType.cs: make GetEvents() an internal call.
5955         * MulticastDelegate.cs: copy the passed in array.
5957 2002-03-06  Martin Baulig  <martin@gnome.org>
5959         * Array.cs (Copy): Use FastCopy when appropriate and do correct
5960         exception handling.
5962 2002-03-06  Duco Fijma  <duco@lorentz.xs4all.nl>
5963         * CharEnumerator.cs: fixes to CharEnumertor.MoveNext, fixing 
5964         some of the failures found be new tests (see ChangeLog in 
5965         Test/System). Comments added to this method, based on
5966         the representation invariant of this class, that (try to) explain
5967         why it now should be correct.
5969 2002-03-06  Dietmar Maurer  <dietmar@ximian.com>
5971         * Int64.cs (Parse): bug fix for max. negative value. 
5973 2002-03-07  Nick Drochak  <ndrochak@gol.com>
5975         * RuntimeTypeHandle.cs: Add Serializable attribute as the docs say.
5976         I need to understand what the difference between the attribute and
5977         the interface is.
5979 2002-03-06  Martin Baulig  <martin@gnome.org>
5981         * Array.cs (Copy): Always throw an ArrayTypeMismatchException, not
5982         an InvalidCastException if the widening conversion failed. See
5983         testcases #M94-#M96.
5985         * Array.cs (CopyTo): Bug fix from Ajay Dwivedi, correctly handle
5986         arrays with non-zero lower bounds. Also adding testcases #F10-#F13
5987         for this.
5989         * Array.cs (CopyTo): Reverted my last change, it was incorrect.
5990         (Copy): Actually allow copying multi-dimensional arrays.
5992 2002-03-05  Duncan Mak  <duncan@ximian.com>
5994         * Convert.cs:
5995         (DBNull) Added the missing field.
5996         (IsDBNull) Fixed typo.
5997         (ToByte (string, int)) Implemented.
5998         (ToString (byte, int)) Implemented.
5999         (ConvertToBase)
6000         (BuildConvertedString) internal functions used for converting values to
6001         a specific base.
6003         * Int16.cs: 
6004         * Int32.cs:
6005         * Int64.cs:
6006         * Single.cs:
6007         * UInt16.cs: 
6008         * UInt32.cs: Implemented the IConvertible interface.    
6010         * CharEnumerator.cs: Renamed to variables to be clearer and
6011         changed some of the tests to conform to the 1.0 spec.
6013 2002-03-06  Martin Baulig  <martin@gnome.org>
6015         * Array.cs (Copy): Calculate absolute array position here and use
6016         GetValueImpl() and SetValueImpl() with that position. We can now
6017         copy multi-dimensional arrays.
6018         (CopyTo): Small bug fix.
6020 2002-03-05  Duco Fijma  <duco@lorentz.xs4all.nl>
6022         * Version.cs: CompareTo changed according the LAMESPEC discovered by 
6023         Nick (See VersionTest.cs).
6024         * CharEnumerator.cs: fixed two bugs in MoveNext. It had an off-by-one
6025         error comparing the current position (idx) against the length of the
6026         string iterated and it set idx to an unrecognized special value (-2)
6028 Tue Mar 5 17:34:14 CET 2002 Paolo Molaro <lupus@ximian.com>
6030         * SByte.cs, UInt64.cs: implement IConvertible interface. Nobody wants
6031         to do this dirty work, but someone has to do it (and I need it to pass
6032         the "200 sample tests compiled on linux" mark).
6034 2002-03-06  Nick Drochak  <ndrochak@gol.com>
6036         * Attribute.cs
6037         * DecimalFormatter.cs
6038         * Delegate.cs
6039         * Double.cs
6040         * GC.cs
6041         * Int16.cs
6042         * Int32.cs
6043         * MonoType.cs
6044         * RuntimeMethodHandle.cs
6045         * RuntimeTypeHandle.cs
6046         * String.cs
6047         * Type.cs:
6048                 Add [MonoTODO]'s to places where we currently throw a
6049                 NotImplementedException.
6051 2002-03-05  Dietmar Maurer  <dietmar@ximian.com>
6053         * Int16.cs (Parse): do not overflow on max negative value
6055         * Int32.cs (Parse): do not overflow on max negative value
6057 Mon Mar 4 20:36:05 CET 2002 Paolo Molaro <lupus@ximian.com>
6059         * Type.cs: fixed IsClass.
6060         * MonoType.cs: fixed MemberType, IsPrimitiveImpl, IsPointerImpl,
6061         IsByRefImpl. Added GetInterfaces().
6062         * IServiceProvider.cs: compilation fix.
6064 Mon Mar 4 18:37:03 CET 2002 Paolo Molaro <lupus@ximian.com>
6066         * Array.cs: allow copying an empty array to an empty array.
6068 Mon Mar 4 17:59:16 CET 2002 Paolo Molaro <lupus@ximian.com>
6070         * String.cs: fixed LastIndexOf (string) to do a bit of argument
6071         checking.
6073 2002-03-04  Duco Fijma  <duco@lorentz.xs4all.nl>
6074         * Version.cs: many fixes to failures found by the newly created
6075         test cases for this class. Specifically, the CompareTo member
6076         returned wrong values due to the use of Int32.MaxValue as a special
6077         value indicating an "undefined" version component. Also implemented the
6078         missing operators (==, <, >, etc.), one missing constructor and
6079         and some exception throwing.
6081 2002-03-04  Nick Drochak  <ndrochak@gol.com>
6083         * IServiceProvider.cs: Add missing attribute: ComVisible(false)
6084         * Attribute.cs: Add missing attributes: Serializable and
6085         AttributeUsage(AttributeTargets.All)
6087 Mon Mar 4 11:26:49 CET 2002 Paolo Molaro <lupus@ximian.com>
6089         * MonoType.cs: implemented GetConstructors(), GetFields(),
6090         GetMethods(), GetProperties().
6091         * Object.cs: added debugging icall obj_address().
6092         * Type.cs: fixed the binding flags for some Get* methods.
6093         Implemented FindMembers() as calls to the specific GetMember
6094         methods.
6096 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
6097         * BitConverter.cs: fixed one little bug: ToString(s, n, 0) 
6098         should give an exception for n>=s.Length.
6100 2002-03-01  Martin Baulig  <martin@gnome.org>
6102         * Array.cs: More argument checking and bug fixing.
6104 2002-03-01  Miguel de Icaza  <miguel@ximian.com>
6106         * BitConverter.cs: Indentation match
6108         * AppDomain.cs: Added MonoTODOs to this too.
6110         * Buffer.cs: Added MonoTODOs to this.
6112 2002-03-01  Martin Baulig  <martin@gnome.org>
6114         * Array.cs: Added argument checking to all methods where it was missing.
6116 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
6118         * BitConverter.cs: Fixed bugs in ToString methods
6120 Fri Mar 1 15:20:00 CET 2002 Paolo Molaro <lupus@ximian.com>
6122         * MulticastDelegate.cs: implement operators so mcs3 can be used on linux.
6124 2002-03-01  Nick Drochak  <ndrochak@gol.com>
6126         * BitConverter.cs: Throw ArgumentException like mscorlib, instead of
6127         ArgumentOutOfRangeException like the docs say.
6129 2002-03-01  Martin Baulig  <martin@gnome.org>
6131         * Enum.cs (CompareTo): Correctly override this method from IComparable.
6133         * Console.cs (setIn, setOut, setError): It's called SetIn, SetOut, SetError.
6135 2002-02-28  Martin Baulig  <martin@gnome.org>
6137         * String.cs: This file now passes the testsuite on Linux :-)
6138         
6139         * String.cs (Intern, IsInterned): The interncalls are now called _Intern and _IsInterned;
6140         make them private and provide C# wrappers which do proper argument checking.
6142         * String.cs (Format): Correctly handle escaped brackets.
6144         * String.cs (_CompareChar): New internal function which compares two chars.
6145         (_Compare): Provide an internal compare method which can do all sorts of
6146         comparision and call it from all the Compare() methods. Also fixed a lot of
6147         bugs here, this code now actually passes the testsuite.
6149 2002-02-28  Duncan Mak  <duncan@ximian.com>
6151         * Convert.cs: Added the missing methods. The new class status page
6152         kicks ass, it even found my typos! Woohoo!
6153         (ConvertFromBase): Moved the Exception throwing in here and
6154         removed the other occurances so it's all centralized now.
6155         (ISDBNull): Implemented.
6156         (GetTypeCode): Implemented.
6158 2002-02-27  Duco Fijma  <duco@lorentz.xs4all.nl>
6159         * Guid.cs: Guid.ToString("") and Guid.ToString(null) is now understood as Guid.ToString("D") 
6160         just as in mscorlib. There is (probably) a documentation bug in the MS FrameWork SDK, which
6161         states that a lacking format should be interpreted as "N".  
6162         Also added [Serializable] attribute
6163         * TimeSpan.cs: some formatting and added the [Serializable] attribute
6165 2002-02-26  Duncan Mak  <duncan@ximian.com>
6167         * WeakReference.cs: Committed for Ajay Kumar Dwivedi.   
6169 2002-02-26  Martin Baulig  <martin@gnome.org>
6171         * TimeZone.cs: Use an internal enum rather than magic numbers to access the
6172         fields of the interncall GetTimeZoneData.
6174         * DateTime.cs: Implemented Parse and fixed a few bugs.
6176         * String.cs (TrimStart): Small fix.
6178 2002-02-26  Martin Baulig  <martin@gnome.org>
6180         * DateTime.cs: ParseExact is now fully functional.
6182         * String.cs (TrimEnd): Small fix.
6184 2002-02-26  Duco Fijma <duco@lorentz.xs4all.nl>
6185         * TimeSpan.cs: Added method TimeSpan.FromMilliseconds, mysteriously 
6186         missing for about six months.
6188 Tue Feb 26 14:21:19 CET 2002 Paolo Molaro <lupus@ximian.com>
6190         * UInt64.cs: fixed Parse method () to handle some of the NumberStyle flags.
6192 2002-02-26  Martin Baulig  <martin@gnome.org>
6194         * DateTime.cs: Miguel already committed this, but there was still a
6195         ChangeLog entry for this missing ....
6196         We're now reusing functionality from TimeSpan, printing dates is
6197         fully implemented, currently working on parsing.
6199         * TimeZone.cs: Fully implemented this. There's a new InternCall in the
6200         runtime for this.
6202 Fri Feb 22 18:47:08 CET 2002 Paolo Molaro <lupus@ximian.com>
6204         * MonoType.cs: disable constructor.
6205         * Object.cs: make GetType() an internalcall.
6206         * Type.cs: added correct bindingflags to GetMethods ().
6207         All such calls should be reviewed to use the correct flags.
6209 Thu Feb 21 19:23:46 CET 2002 Paolo Molaro <lupus@ximian.com>
6211         * Type.cs, MonoType.cs: type_is_subtype_of () changed to include extra
6212         argument.
6214 Thu Feb 21 16:56:51 CET 2002 Paolo Molaro <lupus@ximian.com>
6216         * Type.cs: implemented IsAssignableFrom.
6218 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
6219         * Guid.cs: fixed Guid.Guid(string) ctor. Changed format:
6220         "{0xdddddddd,0xdddd,0xdddd,{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},{0xdd}}" 
6221         to "{0xdddddddd,0xdddd,0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}}" 
6222         The former is documented by Microsoft. The latter is how they
6223         actually implemented it in mscorlib:-)
6225 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>
6227         * MonoCustomAttrs.cs: hooks to get the custom attributes from the
6228         runtime.
6229         * MonoType.cs: Implemented custom attributes methods.
6232 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
6233         * Guid.cs: 
6235 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>
6237         * MonoCustomAttrs.cs: hooks to get the custom attributes from the
6238         runtime.
6239         * MonoType.cs: Implemented custom attributes methods.
6241 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
6243         * Array.cs (CopyTo): use GetLength() instead of GetUpperBound() 
6245 2002-02-19  Duncan Mak  <duncan@ximian.com>
6247         * Convert.cs: Finished up the missing methods in Convert. Added a
6248         new private method ConvertFromBase.
6250 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
6252         * String.cs: impl. IConvertible interface
6254 2002-02-18  Duco Fijma <duco@lorentz.xs4all.nl>
6255         * Guid.cs: actual implementation for Guid.Guid(string) Ctor
6257 2002-02-18  Duncan Mak  <duncan@ximian.com>
6259         * Convert.cs: Changed from using Type.GetType (string) to just
6260         typeof (). Probably will speed things up a bit?         
6262 2002-02-18  Ajay Kumar Dwivedi <AjayKumar.Dwivedi@dresdner-bank.com>
6264         * Array.cs:         
6265         1. Fix for GetUpperBound to return correct values
6266         2. made some Properties virtual
6267         3. Adds IsFixedSize and IsReadOnly properties.
6268         4. changes CreateInstance(Type,int[],int[]) to throw Exception
6269         when third arg is null. InternalCall CreateInstance changed to  
6270         CreateInstanceImpl
6271         5. Fixed array.GetUpperBound at a couple of places
6272         6. IndexOf and LastIndexOf now use Object.Equals instead of "=="
6273         7. Added two FIXME's in BinarySearch functions.
6275 2002-02-17  Duncan Mak  <duncan@ximian.com>
6277         * TimeZone.cs:  Applied the rest of Ajay's patch for    
6278         IsDaylightSavingTime. Thanks a lot for the nice explanation of how
6279         it works!
6281 2002-02-17  Duco Fijma  <duco@lorentz.xs4all.nl>
6282         * Guid.cs: added stub for Guid(string) ctor
6284 2002-02-17  Duncan Mak  <duncan@ximian.com>
6286         * Convert.cs: Near-complete implementation of Convert.cs
6288         Added all the To* methods taking (object) and
6289         (object, IFormatProvider) as parameters.
6291         Added [CLSCompliant (false)] attributes to methods dealing with
6292         unsigned types.
6294         Added the missing section on converting to and from DateTime. Only
6295         6 missing methods, all marked with MonoTODOs. Will tackle them later.           
6297 2002-02-16  Duncan Mak  <duncan@ximian.com>
6299         * TimeZone.cs: patch from Ajay Kumar Dwivedi (adwiv@yahoo.com) to
6300         make IsDaylightSavingTime (DateTime) call 
6301         IsDaylightSavingTime (DateTime, DaylightTime).  
6302         
6303         Added internal class CurrentTimeZone from Ajay. It needs more work
6304         to fill in the appropriate internal calls.
6305         
6306 Sat Feb 16 12:41:41 CET 2002 Paolo Molaro <lupus@ximian.com>
6308         * Type.cs: fix IsClass.
6310 Sat Feb 16 12:02:02 CET 2002 Paolo Molaro <lupus@ximian.com>
6312         * String.cs: fix Trim().
6314 Fri Feb 15 21:02:46 CET 2002 Paolo Molaro <lupus@ximian.com>
6316         * String.cs: fix more off by one errors.
6318 Thu Feb 14 18:54:09 CET 2002 Paolo Molaro <lupus@ximian.com>
6320         * MonoType.cs: fix IsValueTypeImpl.
6321         * Type.cs: fix IsEnum. Implement Equals methods.
6323 Wed Feb 13 21:50:13 CET 2002 Paolo Molaro <lupus@ximian.com>
6325         * Int32.cs: implement IConvertible interface.
6326         
6327 2002-02-12  Duncan Mak  <duncan@ximian.com>
6329         * TimeZone.cs: Implemented and added to CVS.
6331 2002-02-11  Duncan Mak  <duncan@ximian.com>
6333         * Convert.cs: Implemented the ChangeType () methods.
6335 Mon Feb 11 19:48:58 CET 2002 Paolo Molaro <lupus@ximian.com>
6337         * Array.cs: make Clone() an internal call.
6339 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
6340         * Changed Guid.NewGuid so that it can use both System.Random and 
6341           System.Security.Cryptography.RandomNumberGenerator
6343 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
6344         * First version of Guid.NewGuid
6346 2002-02-08  Duncan Mak  <duncan@ximian.com>
6348         * RuntimeArgumentHandle.cs: Added to CVS.
6350 Fri Feb 8 19:14:54 CET 2002 Paolo Molaro <lupus@ximian.com>
6352         * CrossAppDomainDelegate.cs, AssemblyLoadEventHandler.cs,
6353         UnhandledExceptionEventHandler.cs: added delegates.
6355 Fri Feb 8 18:06:20 CET 2002 Paolo Molaro <lupus@ximian.com>
6357         * MarshalByRefObject.cs: add ToString () method
6358         (apparently needed by nunit).
6359         * _AppDomain.cs: uncomment ToString(): dietmar fixed the bug triggered
6360         by it in the runtime.
6362 2002-02-08  Dan Lewis <dihlewis@yahoo.co.uk>
6363         
6364         * String.cs (Format): implemented
6366 2002-02-07  Duncan Mak  <duncan@ximian.com>
6367         
6368         * DuplicateWaitObjectException:
6369         * InvalidCastException:
6370         * NotImplementedException:
6371         * NotSupportedException:
6372         * NullReferenceException:
6373         * OutOfMemoryException:
6374         * OverflowException:
6375         * RankException:
6376         * StackOverflowException.cs:
6377         * UnauthorizedAccessException: Added missing constructor used for serialization.
6379 2002-02-07  Dietmar Maurer  <dietmar@ximian.com>
6381         * String.cs (System.Compare): bug fix 
6383 2002-02-06  Dietmar Maurer  <dietmar@ximian.com>
6385         * Enum.cs (Parse,  GetHashCode): impl. 
6387 2002-02-05  Duncan Mak  <duncan@ximian.com>
6389         * DBNull.cs: This is my first crack at the DBNull class. I think I
6390         actually got most of the IConvertible methods right, but I haven't
6391         done the research to test whether or not this is the correct
6392         behavior. IConvertible.ToType () is the most iffy of all, IMHO.
6394         * DllNotFoundException.cs: Inherits from TypeLoadException, not SystemException.
6396 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
6398         * Enum.cs: added more functionality (GetName, ToObject, Equals)
6400 2002-01-31  Duncan Mak  <duncan@ximian.com>
6402         * InvalidOperationException.cs:
6403         * NotFiniteNumberException.cs:
6404         * ObjectDisposedException.cs:
6405         * TypeInitializationException.cs: Added missing bits for serialization/
6406         
6407         * AppDomainUnloadedException.cs:
6408         * ApplicationException.cs:
6409         * ArgumentOutOfRangeException.cs:
6410         * ArithmeticException.cs:
6411         * ArrayTypeMismatchException:
6412         * BadImageFormatException.cs:
6413         * Exception.cs:
6414         * MissingMemberException.cs:
6415         * TypeLoadException.cs: Added missing bits for serialization.
6417 2002-01-30  Duco Fijma <duco@lorentz.xs4all.nl>
6418         * Guid.cs: implemented everything but Guid.NewGuid
6420 Tue Jan 29 22:32:36 CET 2002 Paolo Molaro <lupus@ximian.com>
6422         * _AppDomain.cs: remove ToString() method: it doesn't seem right 
6423         to have it in this interface and it screws up the method vtable setup.
6425 2002-01-28  Andrei Zmievski <andrei@php.net>
6427         * Double.cs: implemented IConvertible interface.
6429 2002-01-28  Miguel de Icaza  <miguel@ximian.com>
6431         * ArgumentException.cs: Implement serialization constructor.
6432         (GetObjectData): Implement serializer.
6433         
6434         * ArgumentNullException.cs: Implement serialization constructor.
6436         * Exception.cs: Implement serialization constructor.
6437         (GetObjectData): Implement serializer.
6439 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
6441         * DateTime.cs (UnixEpoch): The Begining of the Unix epoch.
6443 2002-01-23  Duncan Mak  <duncan@ximian.com>
6445         * EntryPointNotFoundException.cs:
6446         * FormatException: Added missing constructor and related bits.
6448         * TypeLoadException: Added missing constructor, methods and properties.
6450 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
6452         * AppDomain.cs (GetAssemblies): Use foreach construct instead of
6453         manually getting the enumerator.
6455         (AppDomain.AppDomain): Prime the loaded assemblies with the
6456         assemblies loaded by the runtime in our behalf.
6458         * AppDomainSetup.cs: Remove private keyword, that is the default.
6459         Add a new property DisallowPublisherPolicy.
6461         * AppDomain.cs (AppDomain.GetAssemblies): Implement.
6463 Tue Jan 22 22:51:48 CET 2002 Paolo Molaro <lupus@ximian.com>
6465         * MonoType.cs, Type.cs: many updates, corrected implementation,
6466         completed stubs.
6468 2002-01-20  Andrei Zmievski <andrei@php.net>
6470         * Byte.cs:
6471         * Char.cs: implemented IConvertible interface.
6473         * Boolean.cs: use our own ToString() method directly.
6475 2002-01-20  Duncan Mak  <duncan@ximian.com>
6477         * Files I commited recently: Fixed indentation style.
6479 2002-01-20 Nick Drochak  <ndrochak@gol.com>
6481         * SerializableAttribute.cs: this attrib can be used on enums, structs, 
6482         and delegates too. Added the appropriate usage flags.
6484 2002-01-18  Duncan Mak  <duncan@ximian.com>
6486         * CharEnumerator.cs: Implemented.
6487         * String.cs (System): Fixed the GetEnumerator () method(s).
6489         * ObsoleteAttribute.cs:
6490         * STAThreadAttribute.cs:
6491         * MTAThreadAttribute.cs:
6492         * ThreadStaticAttribute.cs:
6493         * LoaderOptimizationAttribute.cs:
6494         * PlatformNotSupportedException.cs:
6495         * LoaderOptimization.cs: Added to CVS.
6497 2002-01-18  Duncan Mak  <duncan@ximian.com>
6499         * AppDomainUnloadedException.cs:
6500         * MethodAccessException.cs:
6501         * ContextMarshalException.cs:
6502         * CannotUnloadAppDomainException.cs:
6503         * DllNotFoundException.cs:
6504         * EntryPointNotFoundException.cs:
6505         * FieldAccessException.cs:
6506         * TypeUnloadedException.cs:
6507         * MissingFieldException.cs: Added to CVS.
6509         * ApplicationException.cs: 
6510         * MemberAccessException.cs:
6511         * MissingMemberException.cs
6512         * MissingMethodException.cs:
6513         * SystemException.cs: Added [Serializable] attribute.
6515         * Exception.cs: Added [Serializable] attribute, made properties
6516         'Message', 'Source' and 'StackTrace' virtual methods, per 1.0
6517         spec.
6519         * ContextStaticAttribute.cs: Added [Serializable] attribute and
6520         put in the missing constructor.
6522         * Environment.cs: Commented out references to
6523         EnvironmentPermissionAttribute, because they're just stubbed out
6524         right now and has no implementation.
6526 2002-01-16  Andrei Zmievski <andrei@php.net>
6528         * Boolean.cs: implemented IConvertible interface
6530 2002-01-15  Nick Drochak  <ndrochak@gol.com>
6532         * ResolveEventArgs.cs: class should derive from EventArgs.
6534 2002-01-14  Miguel de Icaza  <miguel@ximian.com>
6536         * String.cs (System): Use DefaultMemberName for the String class.
6538 Mon Jan 14 17:06:40 CET 2002 Paolo Molaro <lupus@ximian.com>
6540         * String.cs: use IndexerName in index char accessor.
6542 Thu Jan 10 21:05:23 CET 2002 Paolo Molaro <lupus@ximian.com>
6544         * MonoType.cs: add rank to MonoTypeInfo and implement GetArrayRank.
6545         * String.c: eliminate 64k+ method calls in search.
6546         * Type.cs: handle byref and array types in ToString ().
6548 2002-01-09  Duco Fijma <duco@lorentz.xs4all.nl>
6550         * Guid.cs: created first version
6552 2002-01-10  Dietmar Maurer  <dietmar@ximian.com>
6554         * MonoType.cs: added missing TypeAttributes to MonoTypeInfo 
6556 Wed Jan 9 19:35:07 CET 2002 Paolo Molaro <lupus@ximian.com>
6558         * MulticastDelegate.cs: add == and != operator stubs.
6559         * String.cs: check for null in == operator.
6560         * Type.cs: use a virtual method to get TypeAttributes.
6562 Tue Jan  8 23:30:19 EST 2002 Matt Kimball <matt@kimball.net>
6563         * String.cs: Fixed several off-by-one errors in LastIndexOf* methods
6565 2002-01-09  Nick Drochak  <ndrochak@gol.com>
6566         
6567         * Environment.cs: Comment out Security attribute and put a MonoTODO
6568         there as a reminder.  We need mcs magic to handle security attributes in
6569         corlib.
6571 2002-01-07  Duco Fijma <duco@lorentz.xs4all.nl>
6572         * Created IAppDomainSetup.cs
6574 2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>
6575         * Created System._AppDomain interface in _AppDomain.cs
6577 2002-01-06  Nick Drochak  <ndrochak@gol.com>
6579         * ResolveEventArgs.cs: New File, completely implemented! ;)
6581 Sat Jan 5 15:53:50 CET 2002 Paolo Molaro <lupus@ximian.com>
6583         * Enum.cs: dummy ToString impl.
6584         * String.cs: dummy format implementations to get compiler errors
6585         somewhat working.
6586         * Type.cs: implemented filter delegates. FindMembers runs the filter, now.
6588 2002-01-05  Ravi Pratap  <ravi@ximian.com>
6590         * TODOAttribute.cs : Augment some more; provide two constructors
6591         with support for a comment too.
6593 2002-01-05  Nick Drochak  <ndrochak@gol.com>
6595         * Uncommented those MonoTODO's now that Ravi's got
6596         the class in there
6598 2001-01-04  Ravi Pratap  <ravi@ximian.com>
6600         * TODOAttribute.cs : Actually add this time ;-)
6602         Change name to MonoTODO.
6604 2002-01-04  Jeffrey Stedfast  <fejj@ximian.com>
6606         * String.cs (Trim): Fixed a few logic bugs in the code that
6607         calculated how much to trim off the end of the string.
6609 2001-01-04  Nick Drochak  <ndrochak@gol.com>
6610         
6611         * Commented out the [TODO] attributes for now.  We don't have the
6612         class written.  Also changed it to [MonoTODO]
6614 2002-01-04  Ravi Pratap  <ravi@ximian.com>
6616         * TODOAttribute.cs : Add. We use this attribute to tag all bits in
6617         our class libraries that are incomplete.
6619         * Array.cs : Apply attribute wherever we find a FIXME which says
6620         we need something to be implemented there.
6622         * Int32.cs : Ditto.
6624         * MulticastDelegate.cs : Ditto.
6626         * RuntimeFieldHandler.cs, RuntimeMethodHandle.cs,
6627         RuntimeTypeHandle.cs : Ditto.
6629         * String.cs : Ditto.
6631         * Type.cs : Ditto.
6633         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs, Delegate.cs : Ditto.
6635         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs, Single.cs, 
6636         UInt16.cs, UInt32.cs, ValueType.cs: Ditto.
6638         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs,
6639         Delegate.cs : Ditto.
6641         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs,
6642         Single.cs, UInt16.cs, UInt32.cs, ValueType.cs: Ditto.
6643         
6644 Thu Jan 3 23:24:04 CET 2002 Paolo Molaro <lupus@ximian.com>
6646         * Delegate.cs: add Remove() stub.
6647         * Enum.cs: add ToObject().
6648         * Type.cs: add IsEnum property.
6650 2002-01-03  Kristian Rietveld  <kris@gtk.org>
6652         * Convert.cs: add non-CLS-compliant ToBoolean methods for char,
6653         DateTime and object.
6655 2001-12-30  Nick Drochak  <ndrochak@gol.com>
6657         * Byte.cs (Parse): Add comments to aid in testing.
6659 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
6661         * Char.cs (Parse): Implement.
6663         * Byte.cs (Parse): Implement a fast parser.
6664         
6665         * SByte.cs (Parse): Implement a fast parser.
6667         * UInt16.cs (Parse): Implement a fast parser.
6668         
6669         * Int16.cs (Parse): Implement a fast parser.
6671         * UInt32.cs (Parse): Implement a fast parser.
6673         * Int32.cs (Parse): Implement a fast parser.
6675 Fri Dec 21 15:14:52 CET 2001 Paolo Molaro <lupus@ximian.com>
6677         * Array.cs: fix null ref in sort code.
6678         * UInt64.cs: add bare-bones parse.
6680 Thu Dec 20 15:29:52 CET 2001 Paolo Molaro <lupus@ximian.com>
6681         
6682         * Byte.cs: removed use of Regexes.
6684 Tue Dec 18 18:39:54 CET 2001 Paolo Molaro <lupus@ximian.com>
6686         * Enum.cs: implemented GetValues(), GetNames(), GetName(),
6687         IsDefined(), GetUnderlyingType().
6688         * String.cs: fix one instance of Compare().
6689         * Type.cs: implemented GetProperties(), GetProperty().
6691 Thu Dec 13 20:10:57 CET 2001 Paolo Molaro <lupus@ximian.com>
6693         * Array.cs: implement CopyTo ().
6694         * Char.cs: implement ToString ().
6695         * Exception.cs: bugfix.
6696         * Int32.cs: bare-bones Parse ().
6697         * MonoType.cs: query the needed info with an internalcall.
6698         * String.cs: speedups, bugfixes, reduced copies.
6699         * Type.cs: added missing fields. Implemented many of the Is*
6700         properties. Implemented GetMethod(), GetConstructor(), GetMethods(),
6701         GetFields(), FindMembers(), ToString().
6702         
6703 2001-12-11  Dick Porter  <dick@ximian.com>
6705         * DateTime.cs: Implemented FromFileTime() and ToFileTime()
6707         * Console.cs: Use handles rather than casting file descriptors
6709 2001-12-08  Nick Drochak  <ndrochak@gol.com>
6711         * Byte.cs (Parse): Start implementation. Parse(string) works, but
6712         now we need to handle other formats
6714 2001-12-06  Dietmar Maurer  <dietmar@ximian.com>
6716         * DateTime.cs: added an icall to GetNow()
6718 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
6720         * Double.cs: added the parse method from Bob Smith
6722 2001-11-28  Miguel de Icaza  <miguel@ximian.com>
6724         * UInt64.cs: ditto.
6726         * UInt32.cs: ditto.
6728         * Int32.cs (Int32.CompareTo): Fix because we can not just
6729         substract the values.
6731         Return possitive value if the object is null.
6733         * Boolean.cs: (Boolean.CompareTo): ditto.
6735         * Int16.cs (Int16.CompareTo): ditto.
6737         * Byte.cs (Byte.CompareTo): ditto.
6739         * SByte.cs (SByte.CompareTo): ditto.
6741         * Char.cs (Char.CompareTo): ditto.
6742         
6743         * Decimal.cs (Decimal.CompareTo): ditto.
6745         * Int64.cs (Int64.CompareTo): ditto.
6747         * Single.cs: Ditto.
6749         * UInt16.cs: Ditto.
6751 2001-11-28  Nick Drochak <ndrochak@gol.com>
6753         * Byte.cs: Throw NotImplementedException for Parse.
6755 2001-11-27  Derek Holden  <dholden@draper.com>
6757         * IntegerFormatter.cs: Formatting of type "Number" was not
6758         using NumberFormatInfo.NumberNegativePattern.
6760 2001-11-26  Dick Porter  <dick@ximian.com>
6762         * LocalDataStoreSlot.cs: No need to delete a system TLS slot in
6763         the finalise routine any more
6765 2001-11-21  Miguel de Icaza  <miguel@ximian.com>
6767         * ApplicationException.cs: internationalize by adding calls to
6768         Locale.GetText ().  And throw NotImplementedExceptions on calls
6769         that we have to implement.
6771         * Version.cs: Ditto.
6773         * ValueType.cs: ditto.
6775         * UnauthorizedAccessException.cs: ditto.
6777         * UInt32.cs: ditto.
6779         * UInt64.cs: ditto.
6781         * UInt16.cs: ditto.
6783         * TypeLoadException.cs: ditto
6785         * TypeInitializationException.cs: ditto.
6787         * Type.cs: ditto.
6789         * TimeSpan.cs: ditto.
6791         * SystemException.cs: ditto.
6793         * String.cs: ditto.
6795         * StackOverflowException.cs: ditto.x
6797         * Single.cs: ditto.
6799         * SByte.cs: ditto.
6801         * RuntimeTypeHandle.cs: ditto.
6803         * RuntimeMethodHandle.cs: ditto.
6805         * RuntimeFieldHandle.cs: ditto.
6807         * Random.cs: ditto.
6809         * OutOfMemoryException.cs: ditto.
6811         * OperatingSystem.cs: ditto.
6813         * ObjectDisposedException.cs: ditto.
6815         * NullReferenceException.cs: ditto.
6817         * NotImplementedException.cs: ditto.
6819         * NotFiniteNumberException.cs: ditto.o
6821         * MulticastNotSupportedException.cs: ditto.
6823         * MissingMethodException.cs: ditto.
6825         * MemberAccessException.cs: ditto.
6827         * Math.cs: ditto.
6829         * InvalidCastException.cs: ditto.
6831         * IntegerFormatter.cs: ditto.
6833         * Int32.cs: ditto.
6835         * Int16.cs: ditto.
6837         * IndexOutOfRangeException.cs: ditto.
6839         * Environment.cs: ditto
6841         * Enum.cs: ditto.
6843         * DuplicateWaitObjectException.cs: ditto.
6845         * DivideByZeroException.cs: ditto.
6847         * Delegate.cs: ditto
6849         * DecimalFormatter.cs: ditto.
6851         * Decimal.cs: ditto.
6853         * DateTime.cs: ditto.
6855         * Convert.cs: ditto.
6857         * Char.cs: ditto.
6859         * Byte.cs: ditto.
6861         * Boolean.cs: ditto.
6863         * ArrayTypeMismatchException.cs: ditto.
6865         * ArithmeticException.cs: ditto.
6867         * ArgumentOutOfRangeException.cs: ditto.
6869         * ArgumentNullException.cs: ditto.
6871         * Enum.cs: Make it derive from ValueType, add CompareTo method.
6873         * Attribute.cs: Reformat.
6875 2001-11-14  Miguel de Icaza  <miguel@ximian.com>
6877         * Decimal.cs, Double.cs, Byte.cs, Char.cs, Int16, UInt16, Int32,
6878         UInt32, Int64, UInt64, SByte, Single (CompareTo): Throw the
6879         exception if the value is null too.
6881         * Char.cs (CompareTo): ditto.
6883         * ApplicationException.cs: Added constructor that does serialization.
6885         * ParamArrayAttribute.cs: Define attribute correctly.
6887 Wed Nov 14 16:31:19 CET 2001 Paolo Molaro <lupus@ximian.com>
6889         * AppDomain.cs: rename dummy interface _AppDomain to AppDomain_Intf.
6890         * Array.cs: fix Array.Copy.
6891         * AssemblyLoadEventArgs.cs: rename field.
6892         * CLSCompliantAttribute.cs: use correct name for the class.
6893         * Char.cs: fix IsLetter.
6894         * Console.cs, DateTime.cs, Decimal.cs, IConvertible.cs, Math.cs,
6895         SByte.cs, UInt16.cs, UInt32.cs, UInt64.cs, UIntPtr.cs: CLSCompliant updates.
6896         * Convert.cs: CLSCompliant updates, add ChangeType() methods.
6897         * Delegate.cs: renamed target field to m_target.
6898         * Enum.cs: added missing methods.
6899         * MonoType.cs: add a constructor and some needed properties.
6900         * Object.cs: implement GetType().
6901         * String.cs: CLSCompliant updates. Fixes everywhere to remove the
6902         ending 0 char.
6903         * Type.cs: add missing methods/properties.
6905 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
6907         * AttributeUseage.cs: Should define AttributeUsageAttribute.
6909         * CLSCompliant.cs: Marked with AttributeUsage attribute.
6911         * Decimal.cs: Fixed CLSCompliant attributes.
6913         * Type.cs: changed _impl to internal (needs to be accessable by
6914         subclasses).
6916         (TypeHandle): Marked as abstract, implementation removed.
6918         (IsNotPublic, IsPublic, GetMethods, GetPropery, GetConstructor,
6919         GetMethod): Added stub implementations so NUnit would link against
6920         corlib
6922 Tue Nov 6 09:11:43 CET 2001 Paolo Molaro <lupus@ximian.com>
6924         * AppDomain.cs: use an internal constructor for AssemblyBuilder.
6926 2001-11-05  Miguel de Icaza  <miguel@ximian.com>
6928         * NonSerializedAttribute.cs: Add AttributeUsage rules for this
6929         attribute. 
6931 Fri Nov 2 18:23:15 CET 2001 Paolo Molaro <lupus@ximian.com>
6933         * String.cs: fix a couple of bugs.
6934         * AppDomain.cs: use new AppBuilder constructor.
6935         * Buffer.cs, GC.cs, NonSerializedAttribute.cs,
6936         NotImplementedException.cs, ObjectDisposedException.cs,
6937         UnauthorizedAccessException.cs: add implementation.
6938         * OverflowException.cs: fix class name.
6940 2001-10-28  Jeffrey Stedfast  <fejj@ximian.com>
6942         * String.cs: Don't use a terminating nil char for our internal
6943         array.
6945 2001-10-27  Miguel de Icaza  <miguel@ximian.com>
6947         * Delegate.cs (Delegate.CombineImpl): Implement.
6948         (Delegate.Combine): Implement.
6950         * MulticastDelegate.cs (MulticastDelegate.Equals): Implement.
6952         (MulticastDelegate.CombineImpl): This was not as trivial as I
6953         thought. 
6955         * ContextStaticAttribute.cs: Added AttributeUsage to
6956         ContextStaticAttribute. 
6958         * FlagsAttribute.cs: Add AttributeUsage to FlagsAttribute
6960 2001-10-15  Martin Weindel <martin.weindel@t-online.de>
6962         * added Decimal.cs * added DecimalFormatter.cs (internal class
6963         used from System.Decimal)
6965 2001-10-11  Thomas Neidhart <tome@sbox.tugraz.at>
6967         * Convert.cs: Added methods for Base64 transforming just used the
6968           existing System.Security.Cryptography.ToBase64Transform, should
6969           be changed to use a stand-alone class, e.g. Base64Encoder
6970           
6971 2001-10-10  Derek Holden  <dholden@draper.com>
6973         * IntegerFormatter.cs: Added. Implements ToString for all the
6974         integer data types for all the format types.
6976         * Byte.cs: Using IntegerFormatter for ToString's.
6978         * SByte.cs: Using IntegerFormatter for ToString's.
6980         * Int16.cs: Using IntegerFormatter for ToString's.
6982         * Int32.cs: Using IntegerFormatter for ToString's.
6984         * Int64.cs: Using IntegerFormatter for ToString's.
6986         * UInt16.cs: Using IntegerFormatter for ToString's.
6988         * UInt32.cs: Using IntegerFormatter for ToString's.
6990         * UInt64.cs: Using IntegerFormatter for ToString's.
6992 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
6994         * Exception.cs: Implement bits of serialization.
6996         * RuntimeFieldHandle.cs: Implement Serialization features.
6998         * Type.cs: Implement TypeHandle property.
7000 2001-09-28  Dick Porter  <dick@ximian.com>
7002         * LocalDataStoreSlot.cs: Implemented
7004 Tue Sep 25 19:58:14 CEST 2001 Paolo Molaro <lupus@ximian.com>
7006         * String.cs: fix off-by-one error in Trim().
7008 Tue Sep 25 18:52:14 CEST 2001 Paolo Molaro <lupus@ximian.com>
7010         * Type.cs: added GetType () method.
7012 Tue Sep 25 17:29:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
7014         * MissingMethodException.cs, MissingMemberException.cs,
7015         MemberAccessException.cs: added.
7017 Tue Sep 25 16:46:43 CEST 2001 Paolo Molaro <lupus@ximian.com>
7019         * String.cs: don't access the string array out of bounds in
7020         LastIndexOf.  * Type.cs: fix return type of the Assembly property.
7022 Mon Sep 24 20:35:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
7024         * String.cs: make Intern and IsIntern internalcalls.
7026 2001-09-13  Dick Porter  <dick@ximian.com>
7028         * Type.cs: Added a stub for the IsValueType property.
7030         * SystemException.cs (System): Added the other constructor, so
7031         that System.Threading exceptions can inherit it.
7033 2001-09-08  Jeffrey Stedfast  <fejj@ximian.com>
7035         * String.cs (TrimStart): Don't keep looping through the trimchars
7036         once we've found a match.
7037         (TrimEnd): Same here.
7038         (Trim): And finally here.
7040 2001-09-07  Ravi Pratap  <ravi@ximian.com>
7042         * Char.cs (IsLetterOrDigit): Implement.
7043         (IsLower): Implement, but we need to be Unicode aware.
7044         (IsNumber): Implement.
7045         (IsPunctuation): Implement.
7046         (IsWhiteSpace): Implement.
7047         (ToUpper): Fix to subtract 32 from the ASCII value, not 33 :)
7048         (ToLower): Same here.
7050 2001-09-04  Miguel de Icaza  <miguel@ximian.com>
7052         * Object.cs: Shortcut, if (a == b) then return true.
7054 Fri Sep 7 18:34:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
7056         * Delegate.cs: we need a pointer to the method thunk in
7057         the delegate object.
7059 Fri Sep 7 12:28:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
7061         * AsyncCallback.cs, common.src: add AsyncCallback delegate.
7063 2001-09-06  Jeffrey Stedfast  <fejj@ximian.com>
7065         * String.cs (System): Don't mix uint and int.
7067 2001-09-04  Jeffrey Stedfast  <fejj@ximian.com>
7069         * String.cs (BoyerMoore): Modified to not use pointers and to instead
7070         use indexes.
7071         (IndexOf): Use BoyerMoore.
7073 2001-09-02  Miguel de Icaza  <miguel@ximian.com>
7075         * All over: Use the autogenerated enumerations from the ECMA
7076         documentation that Sergey wrote.
7077         
7078         * PlatformID.cs: Add Unix definition.
7080         * OperatingSystem.cs: Use Unix instead of Linux here.
7082         * MarshalByRefObject.cs: Mark class as [Serializable].
7084 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
7086         * Console.cs: impl. (write only)
7087         implemented the stdin stuff
7089         * Int32.cs: impl. real op_Equal
7091 2001-08-24  Miguel de Icaza  <miguel@ximian.com>
7093         * (common.src): Removed IAsyncResult as it is not on CVS yet.
7095         * UIntPtr.cs: Removed CLSCompliant attribute before the namespace,
7096         as it breaks the build.
7098 2001-08-23  Michael Lambert <michaellambert@email.com>
7100         * IntPtr.cs: Optimized unsafe declaration, implemented GetObjectData, 
7101         added CLSCompliant attribute
7103         * IAsyncResult.cs: Added
7105         * common.src: Added IAsyncResult.cs
7107 2001-08-23  Michael Lambert <michaellambert@email.com>
7109         * UIntPtr.cs: Added
7111         * common.src: Added UIntPtr.cs
7113 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
7115         * Attribute.cs: uncomment some code to make it compile again
7117         * mono.src: removed duplicated Attribute.cs
7119 2001-08-16  Nick Drochak <ndrochak@gol.com>
7121         * Attribute.cs: implemented all methods except GetHashCode()
7123         * common.src: added Attribute.cs so it would compile in
7125 2001-08-10  Dietmar Maurer  <dietmar@ximian.com>
7127         * Object.cs: changed MemberWiseClone to MemberwiseClone, and
7128         marked it as InternalCall
7129         
7130         * common.src: removed UriFormatException.cs because the file is
7131         not there.
7133         * RuntimeTypeHandle.cs: replaced IntrPtr with IntPtr
7134         * Char.cs: replaced byte with char
7136         * Array.cs: make it work with the mono interpreter
7138 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
7140         * Version.cs: Make the class sealed
7142 2001-08-08  Bob Smith  <bob@thestuff.net>
7144         * Random.cs: Many compile fixes.
7145         * Random.cs: I read a bad spec. Class updated to match real spec.
7147 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
7149         * IntPtr.cs: Added and Completed implementation.
7151         * Uri.cs: Add a note.
7153 2001-08-06  Bob Smith  <bob@thestuff.net>
7155         * Random.cs: Compile fix. Needs more testing.
7157 2001-08-06 Garrett Rooney <rooneg@electricjellyfish.net>
7159         * Uri.cs: Initial Implementation.  Parsing needs to be fixed to take 
7160         into account IPv6 addresses, url encoding needs to be implemented, and 
7161         various minor methods need to be written, but this is a decent start.
7163 2001-08-06  Dietmar Maurer  <dietmar@ximian.com>
7165         * common.src: added Object.cs
7167         * mono.src: added ValueType.cs
7169 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
7171         * Math.cs: replaced libc with libm
7173 2001-08-02  Bob Smith  <bob@thestuff.net>
7175         * Random.cs: Implemented. Needs testing.
7177 2001-08-02  Miguel de Icaza  <miguel@ximian.com>
7179         * IServiceProvider.cs, EventHandler.cs: New files.
7181 2001-08-02  Marcel Narings  <marcel@narings.nl>
7182         
7183         * DateTime.cs: Cleaned up a bit. Added the Add* family members.
7184         Added exceptions. Added IConvertible. Still needs some platform 
7185         dependend stuff, the Parse and ToString members
7187 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
7189         * Type.cs (GetTypeFromHandle): added placeholder 
7191 2001-07-24  Derek Holden  <dholden@draper.com>
7193         * Boolean.cs: Formatted to code style standard. Added GetTypeCode
7194         which is really an IConvertible defined method.
7196         * Byte.cs: Added a missing Parse method. Put in Parse and ToString
7197         behavior, still need to do the main Parse and ToString.
7199         * Char.cs: Added a bunch of missing ECMA methods. Commented a
7200         specification discrepency. Still didn't any unicode stuff, though
7201         every IsFoo(char c) method has an IsFoo(string, index)
7202         counterpart, added wrappers for those.
7203         
7204         * Convert.cs: Fixed NaN/Inf checking and double/float
7205         rounding. Added ToType for IConvertible classes
7207         * Double.cs: Fixed ECMA min and max values. Added IsInfinity /
7208         IsNaN methods. Changed Inf/NaN internals.
7210         * IConvertible.cs: Added comments for using
7211         Convert.ToType. Changed return values to draft base values.
7213         * Int16.cs: Added a missing Parse statement. Put in behavior for
7214         overloaded ToString and Parse methods.
7216         * Int32.cs: Added a missing Parse statement. Put in behavior for
7217         overloaded ToString and Parse methods.
7219         * Int64.cs: Added a missing Parse statement. Put in behavior for
7220         overloaded ToString and Parse methods.
7221         
7222         * Single.cs: Put in ECMA epsilon value. Added IsInfinity / IsNaN
7223         methods. Changed Inf/NaN internals.
7225         * SByte.cs: Added a missing Parse method. Put in Parse and
7226         ToString behavior, still need to do the main Parse and ToString.
7228         * UInt16.cs: Added a missing Parse statement. Put in behavior for
7229         overloaded ToString and Parse methods.
7231         * UInt32.cs: Added a missing Parse statement. Put in behavior for
7232         overloaded ToString and Parse methods.
7234         * UInt64.cs: Added a missing Parse statement. Put in behavior for
7235         overloaded ToString and Parse methods.
7236         
7237 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
7239         * MulticastDelegate.cs: New File.
7241         * Delegate.cs: New file.
7243         * Enum.cs: New file.
7245         * Attribute.cs: New file.
7247         * Type.cs: New file.
7249         * ParamArrayAttribute.cs: New file.
7251         * RuntimeTypeHandle.cs: New file.
7253         * MulticastDelegate.cs: Added.
7255         * DateTime.cs: Added
7257         * Delegate.cs: Added
7259 2001-07-18  Michael Lambert <michaellambert@email.com>
7261         * AttributeTargets.cs: Add.
7263 2001-07-19  Jeffrey Stedfast  <fejj@ximian.com>
7265         * Char.cs: Made ToUpper and ToLower public methods.
7267         * String.cs: Lots and lots of compile fixes - just need to write
7268         DateTime.cs and this should build completely now.
7270 2001-07-19  Bob Smith (bob@thestuff.net)
7272         * Math.cs: Implemented. 
7274 2001-07-19  Miguel de Icaza  <miguel@ximian.com>
7276         * String.cs: Removed tolower and toupper.
7278         * Char.cs: Moved ToLower and ToUpper from string to here. 
7280         * Convert.cs ToByte (float value), ToByte (double value) Use IsNan
7281         instead of comparing the value to Nan.
7283 2001-07-19  Duco Fijma (duco@lorentz.xs4all.nl)
7285         * TimeSpan.cs: New implementation.
7287 2001-07-18  Scott Sanders <scott@stonecobra.com>
7289          * UriFormatExcpetion.cs: Add - 85% complete
7291 2001-07-17  Jeffrey Stedfast  <fejj@ximian.com>
7293         * String.cs (IndexOf): Slight optimization that allows skipping
7294         over a few chars here and there. This isn't as good as using my
7295         Boyer-Moore implementation, however, Boyer-Moore is only really
7296         good for long strings (I plan on making the code decide which
7297         string search algorithm it should use on-the-fly at some point).
7298         (LastIndexOf): Fix to work correctly.
7299         (BoyerMoore): Took out some unneeded code and fixed an edge-case.
7301 2001-07-16  Michael Lambert <michaellambert@email.com>
7303         * EventArgs.cs: Add.
7304         
7305 2001-07-16  Miguel de Icaza  <miguel@ximian.com>
7307         * Version.cs: Remove my buggy comment.
7309 2001-07-15  Sean MacIsaac  <macisaac@ximian.com>
7311         * String.cs: Spelling error of IComparable, object's
7312         MemberwiseClone cannot be overridden.  Made indexer valid for now,
7313         but not sure what to do about this in the long run.  Seems to be a
7314         couple bugs in csc.exe having to do with multiple pointer defs in
7315         the same statement, and returning subclasses of a class in the
7316         return type of an interface function implementation.  Also moved
7317         operators inside of class definition.
7319 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
7321         * String.cs: A tom of compile fixes, although we still don't compile.
7323         * IConvertible.cs: The To*Int64() methods return *Int64's, not
7324         *Int32's. Also, it's ToDateTime() not ToDateType().
7326 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
7328         * String.cs: Apparently I needed to at least write stubs for the
7329         IConvertible interfaces. *sigh*
7331 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
7333         * String.cs: Many logic/other fixes and better usage of the
7334         features of c#
7335         (tolower): New convenience method to help condense code.
7336         (toupper): Another new helper method.
7337         (Compare): Use the new helper methods.
7338         (ToLower): use tolower().
7339         (ToUpper): use toupper().
7340         (LastIndexOfAny): Implemented.
7341         (BoyerMoore): New private helper method that implements a modified
7342         version of the Boyer-Moore search algorithm. Noothing uses it yet
7343         as I'm not 100% sure it even works properly with unicode strings
7344         not to mention it uses a huge lookup-table :-)
7345         (Split): Implemented.
7347 2001-07-13  Jeffrey Stedfast  <fejj@ximian.com>
7349         * TODO: Added things that need to be finished in System.String
7351         * String.cs: New source file implementing the System.String class
7353 2001-07-12  Sean MacIsaac  <macisaac@ximian.com>
7355         * TypeCode.cs: UInt64 was UInt63.
7357         * Object.cs: Fixed a numer of compiler errors.
7359         * Array.cs: Fixed some compiler errors.
7361         * IComparable.cs: Fixed some compiler errors.
7363         * ICloneable.cs: Fixed some compiler errors.
7365         * IConvertible.cs: Fixed some compiler errors.
7367         * IFormattable.cs: Fixed a compiler error.
7369         * IFormatProvider.cs: Fixed a compiler error.
7371         * IDisposable.cs: Fixed a compiler error.
7373         * IFormatProvider.cs: Added public accesability type to
7374         IFormatProvider.
7376         * Exception.cs: Added a using statement to remove compile time
7377         error.
7379         * ApplicationException.cs: Removed a ; that was causing a compiler
7380         error.
7382         * Int16.cs: Fixed some compiler errors.
7384         * Int32.cs: Fixed some compiler errors.
7386         * Int64.cs: Fixed some compiler errors.
7388         * SystemException.cs: Fixed a compiler error.
7390         * UInt16.cs: Fixed some compiler errors.
7392         * UInt32.cs: Fixed some compiler errors.
7394         * UInt64.cs: Fixed some compiler errors.
7396         * Void.cs: Fixed a compiler error.      
7398 2001-07-12  Joe Shaw  <joe@ximian.com>
7400         * Array.cs: Fix backwards parameters to Array.SetValue()
7401         throughout.
7402         (BinarySearch): Fix backward logic surrounding whether to call
7403         value.CompareTo or comparer.Compare.
7404         (LastIndexOf): Stop being stupid. I am so not used to strongly
7405         bounded arrays...
7406         (Sort): Implement a quicksort.
7408 2001-07-11  Joe Shaw  <joe@ximian.com>
7410         * Array.cs: Change all instances of trying to access an array with
7411         the index operator to calls to GetValue and SetValue, and add
7412         InternalGetValue and InternalSetValue which are internal calls
7413         into the runtime. Ew.
7415 2001-07-10  Joe Shaw  <joe@ximian.com>
7417         * Array.cs: Implemented everything but Sort().
7419 2001-07-09  Jeffrey Stedfast  <fejj@ximian.com>
7421         * Object.cs (Object::Equals): Object variable name is `o'.
7423 2001-07-06  Joe Shaw  <joe@ximian.com>
7425         * Int16.cs, Int32.cs, Int64.cs, UInt16.cs, UInt32.cs, UInt64.cs:
7426         Implement the IComparable and IFormattable interfaces. Fix a typo
7427         (publig -> public)
7429         * ApplicationException.cs, ArgumentException.cs,
7430         ArgumentNullException.cs, ArgumentOutOfRangeException.cs,
7431         ArtithmeticException.cs, ArrayTypeMismatchException.cs,
7432         DivideByZeroException.cs, DuplicateWaitObjectException.cs,
7433         ExecutionEngineException.cs, FormatException.cs,
7434         IndexOutOfRangeException.cs, InvalidCastException.cs,
7435         InvalidOperationException.cs, InvalidProgramException.cs,
7436         MulticateNotSupportedException.cs, NotFiniteNumberException.cs,
7437         NotSupportedException.cs, NullReferenceException.cs,
7438         OutOfMemoryException.cs, OverflowException.cs, RankException.cs,
7439         StackOverflowException.cs, SystemException.cs,
7440         TypeInitializationException.cs: Added all of the exceptions
7441         specified by the language spec. Mmmm... bloat.
7443 2001-07-06  Miguel de Icaza  <miguel@ximian.com>
7445         * Int64.cs, Int32.cs: Put.  Parsing and ToString missing.  Should
7446         do a generic routine all of these guys use.
7448         * Int16.cs: identified missing methods.
7450         * UInt16.cs, UInt32.cs, UInt64.cs: Add.
7452 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
7454         * TypeCode.cs: Implement
7456         * Void.cs: Implement.
7458         * TODO: Add file to keep track of pending tasks.
7460         * Object.cs, ValueType.cs: Implement.