8ba6b04c24fcedc8b00807493ed1bdc0e05c9415
[mono.git] / mcs / class / corlib / System / ChangeLog
1 2009-05-02  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * Console.cs: Remove Windows-specific p/invokes and SSC code
4         from the NET_2_1 build.
5
6 2009-05-01  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * AppDomainManager.cs: Fix base class for NET_2_1 and implement
9         CheckSecuritySettings (added in 2.0SP and part of SL API)
10
11 2009-04-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
12
13         * Enum.cs: return the value as an enum of the right type.
14
15 2009-04-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
16
17         * Enum.cs: avoid exceptions from ToObject and use Try* instead.
18
19 2009-04-25  Miguel de Icaza  <miguel@novell.com>
20
21         * TermInfoDriver.cs: Use the new StreamReader.DataAvailable to
22         load all the data that was added into the `stdin' stream when we
23         did the `Read'.
24
25 2009-04-24  Sebastien Pouliot  <sebastien@ximian.com>
26
27         * Environment.cs: #ifdef out code that use the registry for the 
28         NET_2_1 profile and some other properties (2) that added
29         [SecuritySafeCritical] methods to audit inside Moonlight.
30
31 2009-04-21  Mark Probst  <mark.probst@gmail.com>
32
33         * Environment.cs: Bump corlib version.
34
35 2009-04-21  Miguel de Icaza  <miguel@novell.com>
36
37         * TermInfoDriver.cs: Prevent race condition if two threads try to
38         initialize the Console at the same time. 
39
40         What happens is that inited is set, and elsewhere we try to
41         dereference native_terminal_size before it is set.
42
43         * Reduce code size by using a table instead of manually making a
44         few hundred calls.
45         
46 2009-04-20  Miguel de Icaza  <miguel@novell.com>
47
48         * Enum.cs (MonoEnumInfo): Compare bytes, shorts, ints and longs as
49         unsigned values as specified and to fix 371559, from the bug:
50
51                 So the actual difference is that MSFT's Enum.GetValues
52                 orders the members as unsigned even when the underlying
53                 type is int.  See the following.  Perhaps that's what's
54                 being implied by "binary values" in that Enum.GetValues
55                 MSDN quote above.
56
57 2009-04-18  Mark Probst  <mark.probst@gmail.com>
58
59         * NumberFormatter.cs: Keep the current thread's number formatter
60         as a ThreadStatic member.
61
62 2009-04-18  Mark Probst  <mark.probst@gmail.com>
63
64         * Environment.cs: Bump corlib version.
65
66 2009-04-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
67
68         * GCNotificationStatus.cs: new enum.
69
70 2009-04-10  Zoltan Varga  <vargaz@gmail.com>
71
72         * Array.cs: Make some of the InternalArray methods non-generic to cut down
73         on the number of instantiations. Add implementation for 
74         ICollection:IsReadOnly.
75
76 2009-03-26  Jb Evain  <jbevain@novell.com>
77
78         * Delegate.cs (CreateDelegate): Support for delegates
79         on static methods closed on a null target.
80
81 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
82
83         * Environment.cs: Bump corlib version.
84
85 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
86
87         * Delegate.cs: Add new parameter to CreateDelegate_internal (icall)
88         * Environment.cs: Bump mono_corlib_version to 73
89
90 2009-03-25  Jb Evain  <jbevain@novell.com>
91
92         * Delegate.cs (CreateDelegate): fix checks to deal with
93         valuetypes -> obj conversions for arguments, and avoid
94         issues with such unallowed conversion for return types.
95
96 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
97
98         * String.cs (LastIndexOf): Handle empty strings correctly. Fixes #486234.
99
100 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
101
102         * Type.cs (GetGenericTypeDefinition): Make this throw an exception to be
103         consistent with MS.NET. Move the real implementation to MonoType.
104
105 2009-03-18  Marek Safar  <marek.safar@gmail.com>
106
107         * Decimal.cs: Initialize all fields.
108
109 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
110
111         * ConsoleDriver.cs:
112         * TermInfoDriver.cs: handle Ctrl-D (or similar) in ReadLine.
113         Fixes bug #483950.
114
115         * ControlCharacters.cs: index to the control characters list.
116         * Environment.cs: bumped corlib version.
117
118 2009-03-14  Miguel de Icaza  <miguel@novell.com>
119
120         * Convert.cs (ToType): Control whether this internal function will
121         call an IConvertible.ToType method or not.  
122
123         Classes and structs implementing IConvertible in mscorlib (the
124         only callers that can access Convert.ToType) must pass false to
125         avoid a infinite recursion problem and callers from the public
126         Convert API must call it with true.
127
128         This fixes the regression reported in #485377 that was introduced
129         by the fix for #481687.
130
131         * Int16.cs, UInt64.cs, Double.cs, Enum.cs, SByte.cs, UInt16.cs,
132         Byte.cs, Decimal.cs, Int32.cs, String.cs, Int64.cs, Char.cs,
133         Boolean.cs, Single.cs, UInt32.cs: Update the call sites.
134
135 2009-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
136
137         * Convert.cs: Do not throw InvalidCastException if
138         IConvertible.ToType returns null.
139
140 2009-03-06  AndrĂ©s G. Aragoneses  <aaragoneses@novell.com>
141
142         * Convert.cs: Correct typo in exception message.
143
144 2009-03-06  Miguel de Icaza  <miguel@novell.com>
145
146         * Convert.cs: Apply patch from Tom Hindle that uses
147         IConvertible.ToType if there are no other possible conversions
148         defined. 
149
150         Fixes: #481687 
151
152 2009-03-06  Rodrigo Kumpera  <rkumpera@novell.com>
153
154         * MonoType.cs (MonoTypeInfo): Add default_ctor field.
155
156         * MonoType.cs: Add GetDefaultConstructor that caches using
157         type_info.default_ctor.
158
159         * MonoType.cs (FullName): Protects against type_info been replaced
160         under the hood.
161
162         * Activator.cs (CreateInstance): If the type is a MonoType resolve the
163         default constructor using the new method from MonoType.
164
165         Improves Activator::CreateInstance performance by at least 30%, reduces object churn
166         and domain lock contention.
167
168 2009-03-03  Rodrigo Kumpera  <rkumpera@novell.com>
169
170         * Guid.cs (BaseToString): Reduce allocations.
171
172 2009-03-02  Rodrigo Kumpera  <rkumpera@novell.com>
173
174         * Environment.cs: Bump corlib version.
175
176 2009-03-02  Rodrigo Kumpera  <rkumpera@novell.com>
177
178         * Enum.cs (IsDefined): If the enum underlying type is int32, use
179         the generic version, which doesn't box every element of the array.
180
181 2009-03-02  Rodrigo Kumpera  <rkumpera@novell.com>
182
183         * Enum.cs (GetName): If the enum underlying type is int32, use
184         the generic version, which doesn't box every element of the array.
185
186 2009-03-02  Rodrigo Kumpera  <rkumpera@novell.com>
187
188         * Enum.cs (MonoEnumInfo::GetInfo): Share the boxed form of the
189         MonoEnumInfo between both caches.
190
191 2009-02-28  Zoltan Varga  <vargaz@gmail.com>
192
193         * Enum.cs (FindName): Use a hash table for looking up names instead of
194         a linear search for enums with a lot of values.
195
196 2009-02-27  Rodrigo Kumpera  <rkumpera@novell.com>
197
198         * UInt16.cs (CompareTo/short): Make it return the
199         same values as the /object version.
200
201         * Enum.cs (CompareTo): Use new compare_value_to icall to do the comparison.
202         This avoids two allocations and reduce the number of trips to unmanaged land
203         by one.
204
205         The performance improvement is up to 3.5x with the bonus of reducing the generated
206         garbage.
207
208 2009-02-26  Marek Safar  <marek.safar@gmail.com>
209
210         * Nullable.cs: Inline GetValueOrDefault.
211
212 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
213
214         * String.cs (FormatHelper): If all the arguments are strings, compute an
215         initial length for the stringbuilder to avoid reallocations.
216
217         * MonoType.cs (FullName): Cache the result of this in a field, as
218         computing it is expensive.
219
220         * Environment.cs: Bump corlib version.
221         
222 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
223
224         * Enum.cs (GetInfo): Add a global cache in addition to the thread-local
225         caches to accomodate short living threads like threadpool threads.
226
227 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
228
229         * Type.cs: Add IsUserType internal property.
230
231 2009-02-21  Jb Evain  <jbevain@novell.com>
232
233         * MonoType.cs (InvokeMember): don't pass a null args to
234         Binder.BindToMethod. Fix for #471275.
235
236 2009-02-12  Robert Jordan  <robertj@gmx.net>
237
238         * Exception.cs: Rename remote_stack_trace for MS.NET
239         compatibility. Fixes #425512.
240
241 2009-02-12  Lluis Sanchez Gual  <lluis@novell.com>
242
243         * MarshalByRefObject.cs: Implemented MemberwiseClone(bool).
244
245 2009-02-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
246
247         * AppDomain.cs: this fixes the remoting tests.
248         Zoltan found out that there was a domain improperly using shadow
249         copy.
250
251 2009-02-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
252
253         * DateTime.cs: check for null and empty strings before anything else
254         in CoreParse.
255
256 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
257
258         * Type.cs (GetHashCode): Work on UnderlyingSystemType. Fixes #467229.
259
260 2009-01-24  Zoltan Varga  <vargaz@gmail.com>
261
262         * Variant.cs ApplicationIdentity.cs ActivationContext.cs Environment.cs
263         AppDomain.cs: Fix warnings.
264
265 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
266
267         * AppDomain.cs: LoadAssembly() returns null instead of throwing now.
268         Add new LoadSatellite method.
269
270 2009-01-20  Mark Probst  <mark.probst@gmail.com>
271
272         * Exception.cs: Added a comment explaining the use of trace_ips.
273
274 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
275
276         * Variant.cs (GetValue):  Handling the NULL IDispatch 
277           and IUnknown case.
278
279         Contributed under MIT/X11 license.
280
281 2009-01-09  Miguel de Icaza  <miguel@novell.com>
282
283         * DateTime.cs: Implement TryParse in a way that will not depend on
284         the try/catch statement.   The try/catch statement is still there
285         *just in case*, I might have missed some codepaths.
286
287 2009-01-06  Atsushi Enomoto  <atsushi@ximian.com>
288
289         * DateTime.cs : when ".FF..." is specified, allow milliseconds-less
290           time. Fix #444103.
291
292 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
293
294         * Environment.cs (GetEnvironmentVariable) :  Avoiding an nre if 
295           the variable is not set.
296
297         * Environment.cs (SetEnvironmentVariable) : Adding a call to 
298           internalBroadcastSettingChange to notify Windows that an environment 
299           variable has changed.
300
301         Contributed under MIT/X11 license.
302
303 2008-12-18  Jb Evain  <jbevain@novell.com>
304
305         * String.cs: the Compare methods that were specific to SL2 are now
306         also in .net 2/3.5 sp1.
307
308 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
309
310         * Variant.cs (SetValue):   Changing the behavior for COM object in 
311           VARIANTs to match MS.  Also adding support for BStrWrapper, 
312           UnknownWrapper, and DispatchWrapper.
313
314         Contributed under MIT/X11 license.
315
316 2008-11-28  Miguel De Icaza  <miguel@novell.com>
317
318         * TermInfoDriver.cs: Also register a mapping to make verase be the
319         backspace key.  Funny thing: verase was fetched from the termios,
320         but it was *never* actually used in this file.
321
322         VSUSP and VINTR are likewise ignored.   Must ponder this.
323
324         This makes the backspace key in MacOS work on interactive
325         applications.
326         
327 2008-11-15  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
328
329         * Convert.cs: Removed useless check from ToChar (ushort).
330
331 2008-11-06  Bill Holmes  <billholmes54@gmail.com>
332
333         * Type.cs (FindMembers):  Changing the instantiated type of the 
334           returned MemberInfo array to match the MemberTypes flag
335           passed in argument 1.
336
337         Contributed under MIT/X11 license.
338
339 Mon Nov 3 16:39:37 CET 2008 Paolo Molaro <lupus@ximian.com>
340
341         * Array.cs: in the IList set_Item, ensure the array
342         element is set using the proper type checks (bug #440819).
343
344 Mon Oct 13 16:40:56 CEST 2008 Paolo Molaro <lupus@ximian.com>
345
346         * Environment.cs, OperatingSystem.cs: complete support for
347         PlatformID (bug #433108).
348
349 2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>
350
351         * AppDomain.cs: (Load(AssemblyName)) Use the CodeBase after the Name
352         when both are provided.
353         Fixes bug #322228.
354
355 2008-10-08  Bill Holmes  <billholmes54@gmail.com>
356
357         * Variant.cs : Adding the BRECORD field to ensure the right size on
358           a 64-bit OS.  32-bit 16 bytes, 32-bit 24 bytes.
359
360         Contributed under MIT/X11 license.
361
362 2008-10-08  Bill Holmes  <billholmes54@gmail.com>
363
364         * Variant.cs (SetValue) : Adding code to handle enums.
365
366         Contributed under MIT/X11 license.
367
368 2008-10-08  Bill Holmes  <billholmes54@gmail.com>
369
370         * Variant.cs : Cleaning up some tab formatting problems.
371
372         Contributed under MIT/X11 license.
373
374 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
375
376         * PlatformID.cs: Define Xbox/MacOSX on the 2.0 profile too, since it
377         is part of NET 3.5 SP1.
378
379 2008-10-07  Marek Habersack  <mhabersack@novell.com>
380
381         * Math.cs: implemented the away from zero rounding for the Round
382         (double, int, MidpointRounding) overload.
383
384 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
385
386         * Activator.cs (CreateInstance): Don't return the return value of the
387         ctor.Invoke (object, ...) overload since it is null, return 'newOb' instead.
388
389 Mon Oct 6 15:12:25 CEST 2008 Paolo Molaro <lupus@ximian.com>
390
391         * Array.cs: better message when keys cannot be compared
392         when sorting (bug #368455).
393
394 2008-09-29  Rodrigo Kumpera  <rkumpera@novell.com>
395
396         * Type.cs (MakeGenericType): Only use UnderlyingSystemType for user types.
397         This must exclude TypeBuilder and EnumBuilder. Fixes #430508.
398
399 2008-09-28  Juraj Skripsky  <js@hotfeet.ch>
400
401         * String.cs (ReplaceUnchecked): Avoid any unnecessary work and 
402         string allocations by returning early when no oldValue was found.
403
404 2008-09-24  Marek Habersack  <mhabersack@novell.com>
405
406         * Double.cs: check whether decimal_separator, group_separator and
407         currency_symbol strings aren't empty before trying to index them
408         in Parse ().
409
410 2008-09-24  Jb Evain  <jbevain@novell.com>
411
412         * AppDomain.cs (CreateDomain): call the domain initializer in
413         the newly created AppDomain. Fixes #429545.
414
415 2008-09-24  Jb Evain  <jbevain@novell.com>
416
417         * AppDomain.cs: implement the CreateDomain overload which
418         takes an AppDomain initializer. Fixes #429545.
419
420 2008-09-17  Robert Jordan  <robertj@gmx.net>
421
422         * DelegateSerializationHolder.cs: Starting with .NET 2.0, delegates
423         of non-public methods are allowed to be serialized. Fixes #425345.
424
425 2008-09-15  Andy Hume  <andyhume32@yahoo.co.uk>
426
427         * DateTimeOffset.cs: DateTimeOffset currently has no
428         deserialization constructor, thus deserialization
429         fails ("SerializationException: The constructor to deserialize an
430         object of type System.DateTimeOffset was not found.")
431
432         Patch attached, implements GetObjectData and that constructor.
433         Also includes tests, which include round-tripping to/from MSFT.
434
435 2008-09-14  Zoltan Varga  <vargaz@gmail.com>
436
437         * ConsoleDriver.cs: Remove obsolete GetTtySize icall.
438
439 2008-09-09  Marek Safar  <marek.safar@gmail.com>
440
441         * Convert.cs, Decimal.cs: Fixed float/double to decimal range check.
442
443 2008-09-07  Miguel de Icaza  <miguel@novell.com>
444
445         * TermInfoDriver.cs: Add support for updating the size of the
446         terminal when it changes.   
447
448 2008-08-27  Miguel de Icaza  <miguel@novell.com>
449
450         * TermInfoDriver.cs: Adds support for the Insert and Delete keys
451         on the keyboard.   
452
453 2008-08-26  Miguel de Icaza  <miguel@novell.com>
454
455         * New console features are used by gmcs.exe, but since we only
456         build gmcs.exe with the bootstrap corlib, we need to ensure all
457         the new stuff is included in BOOTSTRAP_NET_2_0
458
459 2008-08-26  Robert Jordan  <robertj@gmx.net>
460
461         * AppDomain.cs (get_Evidence): Fix endless recursion exposed
462         by the test case of bug #420197.
463
464 2008-08-24  Miguel de Icaza  <miguel@novell.com>
465
466         * TermInfoDriver.cs (GetKeyFromBuffer): Add support for reporting
467         Alt-LETTER sequences.   They were ignored previously.
468
469 2008-08-22  Sebastien Pouliot  <sebastien@ximian.com>
470
471         * AppDomainSetup.cs: Remove IAppDomainSetup for SL2. This helps
472         the tuner since the methods are then defined correctly (wrt to the
473         implicit implementation of the interfaces)/
474
475 2008-08-21  Sebastien Pouliot  <sebastien@ximian.com> 
476
477         * Nullable.cs: Add two ComVisible(false) for SL2 profile.
478         * PlatformID.cs: Add Xbox and MacOX for SL2 profile.
479         * WeakReference.cs: Add default, protected, ctor for SL2.
480
481 2008-08-20  Miguel de Icaza  <miguel@novell.com>
482
483         * ConsoleDriver.cs: TtySetup now takes an extra argument: the
484         keypadXmit string.
485
486 2008-08-16  Gert Driesen  <drieseng@users.sourceforge.net>
487
488         * Exception.cs: Fixed value of HResult to match MS. Added support for
489         (de)serializing Data. Use deserialized ClassName, if available, to
490         when name of type is used.
491
492 2008-08-10  Gert Driesen  <drieseng@users.sourceforge.net>
493
494         * IServiceProvider.cs: Added ComVisible attribute (1.0 only).
495         * String.cs: Fixed argument names to match MS.
496
497 2008-08-10  Gert Driesen  <drieseng@users.sourceforge.net>
498
499         * Boolean.cs
500         * Byte.cs
501         * Char.cs
502         * DateTime.cs
503         * DBNull.cs
504         * Decimal.cs
505         * Double.cs
506         * Enum.cs
507         * Int16.cs
508         * Int32.cs
509         * Int64.cs
510         * Single.cs
511         * String.cs
512         * UInt16.cs
513         * UInt32.cs
514         * UInt64.cs: Added missing CLSCompliant attributes for 1.0 profile.
515
516 2008-08-07  Atsushi Enomoto  <atsushi@ximian.com>
517
518         * DateTime.cs : zzzz format allows non-fixed length of number, even
519           in exact parsing mode. Fixed bug #377042.
520
521 2008-08-05  Jb Evain  <jbevain@novell.com>
522
523         * String.cs: add new NET_2_1 Compare methods.
524
525 2008-08-03  Miguel de Icaza  <miguel@novell.com>
526
527         * ConsoleDriver.cs: If the terminal is dumb, do not activate the
528         full terminal support.
529
530 2008-08-02  Marek Safar  <marek.safar@gmail.com>
531
532         * Type.cs: Removed _MemberInfo from base classes list.
533         
534 2008-07-28  Marek Safar  <marek.safar@gmail.com>
535
536         * KnownTerminals.cs: Don't initialize rarely used static data.
537
538 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
539
540         * Delegate.cs: Move the rarely used fields to a separate object, add
541         'method_code' field.
542
543         * Environment.cs: Bump corlib version.
544
545         * ConsoleDriver.cs: Remove unused Suspend icall.
546
547 2008-07-21  Marek Safar  <marek.safar@gmail.com>
548
549         * AppDomain.cs (Load): Check for 0-length assembly name.
550
551 2008-07-21  Rodrigo Kumpera  <rkumpera@novell.com>
552
553         * Enum.cs (GetHashCode): Use new icall get_hashcode to
554         avoid allocating a boxed version of the enum basetype.
555
556 2008-07-17  Marek Safar  <marek.safar@gmail.com>
557
558         * String.cs: reverted GetHashCode changes.
559
560 2008-07-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
561
562         * Char.cs: Remove obsolete lamespecs (it implements IConvertible, small formatting)
563
564 2008-07-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
565
566         * Char.cs: Optimize some Is* checks
567
568 2008-07-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
569
570         * DateTimeOffset.cs: Fix parameter name
571
572 2008-07-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
573
574         * DateTimeOffset.cs: Remove public, make implicit method
575
576 2008-07-06  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
577
578         * Environment.cs: Add missing attribute
579
580 2008-07-04  Rodrigo Kumpera  <rkumpera@novell.com>
581
582         * Delegate.cs (get_Method): Use the internal version
583         of GetMethodFromHandle to avoid the generic class check.
584
585 2008-07-04  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
586
587         * GCCollectionMode.cs: Add attribute
588         * GC.cs: Add semi-stubbed missing method, remove obsolete Lamespec, hide non-public method
589
590 2008-07-04  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
591
592         * Delegate.cs: Fix parameter names for 2.0 profile
593         * Int64.cs: Fix parameter names
594
595 2008-07-04  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
596
597         * IntPtr.cs: Fix parameter names, change internal name to accomodate for parameter changes
598
599 2008-07-04  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
600
601         * Predicate.cs:
602         * Object.cs:
603         * Nullable.cs
604         * MultiCastDelegate.cs
605         * ModuleHandle.cs
606         * Math.cs
607         * MarshalByRefObject.cs
608         * Int64.cs
609         * Int32.cs
610         * Int16.cs
611         * Environment.cs
612         * Delegate.cs
613         * DateTimeOffset.cs
614         * ConsoleKeyInfo.cs
615         * Console.cs
616         * Array.cs
617         * AppDomain.cs: Fix parameter names
618
619 2008-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
620
621         * Exception.cs (GetFullNameForStackTrace): Don't do string
622         concatenation.
623
624 2008-06-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
625
626         * ContextMarshalException.cs:
627         * DllNotFoundException.cs:
628         * EntryPointNotFoundException.cs:
629         * FieldAccessException.cs:
630         * MethodAccessException.cs:
631         * MissingFieldException.cs:
632         * PlatformNotSupportedException.cs: Fix parameter names
633
634 2008-06-30  Marek Safar  <marek.safar@gmail.com>
635
636         * String.cs: Tweaked hash code methods for better distibution, and speed-up.
637
638 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
639
640         * MonoCustomAttrs.cs (IsDefined): Avoid calling the .Assembly property in some
641         cases.
642
643 2008-06-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
644
645         * Char.cs: Fix formatting, rename wrong named param, remove code duplication
646
647 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
648
649         * Enum.cs (GetUnderlyingType): Implement this using an icall.
650         
651         * Enum.cs (Format): Call IsDefined with inherited=false.
652
653         * Exception.cs: Fix a warning.
654
655 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
656
657         * Enum.cs (FindName): Avoid calling String.Compare for the !ignoreCase case.
658
659 2008-06-27  Rodrigo Kumpera  <rkumpera@novell.com>
660
661         * Exception.cs: Build method traces using the
662         stack trace StringBuilder.
663
664 2008-06-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
665
666         * Version.cs: Fix parameter names
667         * UInt64.cs: 
668         * UInt32.cs:
669         * UInt16.cs:
670         * Int64.cs: Fix parameter names
671         * Int32.cs: Fix parameter names; some small formatting
672         * Int16.cs: Fix parameter names
673         * Double.cs: Fix parameter names; small formatting
674         * Single.cs:
675         * SByte.cs:
676         * Byte.cs:
677         * Boolean.cs:
678         * DateTime.cs:
679         * Enum.cs:
680         * Decimal.cs: Fix parameter names
681
682 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
683
684         * Environment.cs: Bump corlib version.
685
686 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
687
688         * Math.cs (IEERemainder): Use the normal BitConverter.Int64BitsToDouble method
689         here to fix this on sparc.
690
691 2008-06-07  Marek Safar  <marek.safar@gmail.com>
692
693         * Array.cs (IndexOf, LastIndexOf): Fixed more array element comparers used
694         instead of tested value comparers.
695
696 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
697
698         * Environment.cs: Bump corlib version.
699
700 2008-06-05  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
701
702         * String.cs: Managed replacement for Replace method ;)
703
704 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
705
706         * Decimal.cs (Divide): Move expensive equality checks to unmanaged code.
707
708 2008-06-02  Ivan N. Zlatev  <contact@i-nz.net>
709
710         * MonoType.cs: For property reflection we should strictly match the return 
711         type if available.
712
713 2008-06-01  Juraj Skripsky  <js@hotfeet.ch>
714
715         * String.cs (Substring): Blocking bug #395904 has been fixed,
716         re-enable optimization.
717
718 2008-06-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
719
720         * String.cs: Replace Split IndexOf
721
722 2008-05-30  Marek Safar  <marek.safar@gmail.com>
723
724         * Array.cs (IndexOf): Use an array element comparer instead of tested value
725         comparer.
726
727 2008-05-28  Zoltan Varga  <vargaz@gmail.com>
728
729         * Console.cs (.cctor): Make sdout synchronized in the console case too.
730         Fixes #395069.
731
732 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
733
734         * NumberFormatter.jvm.cs: Fix tables to avoid arithemtic overflow
735           in Double.ToString as exposed by Bug #383531.
736
737 2008-05-24  Gert Driesen  <drieseng@users.sourceforge.net>
738
739         * String.cs: Comment out 2.0 compatibility fix for SubString, since it
740         causes regressions in System.Xml.
741
742 2008-05-24  Gert Driesen  <drieseng@users.sourceforge.net>
743
744         * String.cs: Changed exception to match MS. Fixed ToCharArray to use
745         startindex for source. In PadLeft and PadRight, only return current
746         string if totalWidth is less than length.
747
748 2008-05-24 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
749
750         * Enum.cs: use Array.BinarySearch on the values in IsDefined and
751         GetName instead of looping through the list. Made the cache in
752         MonoEnumInfo thread static to avoid contention.
753
754 2008-05-20  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
755
756         * String.cs: Replace Split function
757
758 2008-05-19  Sebastien Pouliot  <sebastien@ximian.com>
759
760         * Boolean.cs,
761         * Double.cs,
762         * Enum.cs,
763         * Int64.cs,
764         * Single.cs,
765         * UInt32.cs,
766         * UInt64.cs: Avoid unboxing primitive types more than one time.
767         [Found using Gendarme]
768
769 2008-05-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
770
771         * String.cs: Update Trim functions
772
773 2008-05-19  Zoltan Varga  <vargaz@gmail.com>
774
775         * ConsoleDriver.cs: Avoid initializing the three driver classes when only one
776         is needed.
777
778 2008-05-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
779
780         * String.cs: Update Join and Pad functions
781
782 2008-05-18  Sebastien Pouliot  <sebastien@ximian.com>
783
784         * Environment.cs: Use String.IsNullOrEmpty inside 2.0 code.
785         [Found using Gendarme]
786
787 2008-05-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
788
789         * String.cs: Directly create charenumerator
790
791 2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
792
793         * String.cs: Resubmit uncritical parts of String patch
794
795 2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
796
797         * DateTime.cs: Fix parameter names
798
799 2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
800
801         * Decimal.cs: Fix parameter names
802
803 2008-05-15  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
804
805         * Decimal.cs: Tabbify/Format
806
807 2008-05-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
808
809         * Version.cs
810           UnhandledExceptionEventHandler.cs
811           UInt64.cs
812           UInt32.cs
813           UInt16.cs: Fix parameter names
814           Type.cs: Fix parameter names, formatting
815           TimeSpan.cs
816           StringComparer.cs
817           Single.cs
818           SByte.cs: Fix parameter names
819
820 2008-05-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
821
822         * Double.cs
823           Enum.cs
824           Exception.cs
825           IComparable.cs
826           IEquatable.cs
827           IFormatProvider.cs
828           IFormattable.cs
829           InsufficientMemoryException.cs: Fix parameter names
830
831 2008-05-14  Jb Evain  <jbevain@novell.com>
832
833         * Exception.cs (ToString): output a new line before the 
834         inner exception separator. Fixes #390150.
835
836 2008-05-12  Gert Driesen  <drieseng@users.sourceforge.net>
837
838         * Type.cs: Modifies exceptions to match MS. Changed GetTypeFromHandle
839         on 1.0 profile to throw ArgumentException when handle is invalid,
840
841 2008-05-08  Rodrigo Kumpera  <rkumpera@novell.com>
842
843         * Activator.cs (CreateInstance): Check for null types when creating
844         the error message.
845
846 2008-05-07  Robert Jordan  <robertj@gmx.net>
847
848         * RuntimeFieldHandle.cs, RuntimeTypeHandle.cs, RuntimeMethodHandle.cs:
849         Don't try to serialize uninitialized handles. Fixes #386641.
850
851 2008-05-06  Marek Safar  <marek.safar@gmail.com>
852
853         * IntPtr.cs (eplicit long, GetObjectData): Use ToInt64.
854
855 2008-05-05  Zoltan Varga  <vargaz@gmail.com>
856
857         * Type.cs (GetTypeFromHandle): Apparently, it is possible to create a 
858         RuntimeTypeHandle with a zero handle value by calling its ctor. Add an argument
859         check for that.
860
861         * IntPtr.cs (ToInt64): Use (long)(int) on 32 bit platforms to avoid the default
862         unsigned conversion done by the compiler. Fixes #386466.
863
864 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
865
866         * Type.cs (UnderlyingSystemType): Add a comment pointing people to 
867         Enum.GetUnderlyingType ().
868
869 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
870
871         * Array.cs (LastIndexOf): Return GetLowerBound (0) -1 instead of -1.
872         
873         * Array.cs (LastIndexOf): Fix handling of empty arrays. Fixes #383876.
874
875 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
876
877         * String.cs (Split): Fix the handling of RemoveEmptyEntries when the separator
878         matches at the beginning of the string. Fixes #374511.
879
880 2008-04-13  Jb Evain  <jbevain@novell.com>
881
882         * ICloneable.cs: use the INSIDE_CORLIB pattern to
883         internalize code that is used outside the corlib.
884         Merged from the Moonlight 2 branch.
885
886 2008-04-04  Raja R Harinath  <harinath@hurrynot.org>
887
888         * String.cs (EndsWith) [CultureInfo variant]: Handle null 'culture'.
889         (StartsWith, EndsWith, IndexOf, LastIndexOf) [StringComparison variant]:
890         Throw exception on invalid StringComparison.
891
892 2008-04-01  Eyal Alaluf <eyala@mainsoft.com>
893
894         * NumberFormatter.cs NumberFormatter.jvm.cs: Performance optimizations.
895           Reuse a per thread instance to format all the primitive types. Modify
896           class accordingly so the same
897           instance can be used multiple times.
898         * Int16.cs UInt64.cs Double.cs SByte.cs UInt16.cs Byte.csDecimal.cs
899           TimeSpan.cs Int32.cs Int64.cs Single.cs UInt32.cs: Change use of
900           NumberFormatter to adapt to above changes in class interface.
901
902 2008-03-31  Mark Probst  <mark.probst@gmail.com>
903
904         * MonoType.cs: Don't do CAS security checks in CheckMethodSecurity
905         for 2.1 profile.
906
907 2008-03-28  Marek Safar  <marek.safar@gmail.com>
908
909         * Nullable.cs (Box): Do things explicitly and not rely on broken gmcs
910         behaviour.
911
912 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
913
914         * AppDomain.cs: Update after MonoMethod.InternalInvoke signature change.
915
916         * Environment.cs: Bump corlib version.
917
918         * DateTime.cs: Fix a warning.
919
920 2008-03-21  Sebastien Pouliot  <sebastien@ximian.com>
921
922         * String.cs: Use "this" in Split method instead of calling ToString.
923         Found using Gendarme.
924
925 2008-03-06  Marek Safar  <marek.safar@gmail.com>
926
927         * MonoCustomAttrs (GetCustomAttributes): Type cannot be null with
928         typeof (MonoCustomAttrs) hack.
929
930 Wed Mar 5 19:39:01 CET 2008 Paolo Molaro <lupus@ximian.com>
931
932         * Type.cs: optimize GetTypeCode () for the common case
933         (fixes bug #367354).
934
935 2008-03-02  Roei Erez  <roeie@mainsoft.com>
936
937         * DateTime.cs: Improve the patch supplied by James Purcell to be
938           dotnet-compatible, and add support for RoundTripKind parsing. 
939           Fixed reopened bug #352210.
940
941
942 Tue Feb 26 17:50:17 CET 2008 Paolo Molaro <lupus@ximian.com>
943
944         * DateTime.cs: instroduce a method that returns ticks monotonically.
945
946 2008-02-26  Ivan N. Zlatev  <contact@i-nz.net>
947
948         * Attribute.cs, MonoCustomAttrs: MS ignores the inherit param in 
949         PropertyInfo's ICustomAttributeProvider implementation, but not 
950         in the Attributes, so directly get the attributes from 
951         MonoCustomAttrs instead of going throught the PropertyInfo's 
952         ICustomAttributeProvider.
953         [Fixes bugs #324472 and #322464]
954
955 2008-02-26  Atsushi Enomoto  <atsushi@ximian.com>
956
957         * DateTime.cs : fix roundtrip regression in Sys.Xml.XmlConvertTests,
958           patch by James Purcell (at #352210).
959
960 2008-02-25  Atsushi Enomoto  <atsushi@ximian.com>
961
962         * DateTime.cs, DateTimeUtils.cs : make Kind value from parse result
963           as dotnet-compatible. Patch by James Purcell, fixed bug #352210.
964
965 2008-02-18  Atsushi Enomoto  <atsushi@ximian.com>
966
967         * DBNull.cs : ToType(typeof(DBNull),...) should be allowed.
968
969 2008-02-16  Sebastien Pouliot  <sebastien@ximian.com>
970
971         * Object.cs: Fix parameter name to match MS implementation. Found
972         using Gendarme.
973         * ValueType.cs: Fix parameter name to match MS implementation. 
974         Found using Gendarme.
975
976 2008-02-14  Jb Evain  <jbevain@novell.com>
977
978         * Delegate.cs (CreateDelegate): refactor. DRY!
979
980 2008-02-12  Gert Driesen  <drieseng@users.sourceforge.net>
981
982         * Delegate.cs (CreateDelegate): Walk the inheritance change to find
983         matching method. Skip methods for which the return type does not match
984         the delegate. Fixes bug #360784.
985
986 2008-02-11  Eyal Alaluf <eyala@mainsoft.com>
987
988         * NumberFormatter.cs: Fix ToString("R") for +-Infinity & NaN.
989
990 2008-02-08  Sebastien Pouliot  <sebastien@ximian.com>
991
992         * Random.cs: Explain (and extend) special case in Next(min,max)
993
994 2008-02-08  Juraj Skripsky  <js@hotfeet.ch>
995
996         * Random.cs (Next): Use rounding (via implicit conversion) only on
997         positive values. Fixes bug 359918.
998
999 2008-02-03  Sebastien Pouliot  <sebastien@ximian.com>
1000
1001         * Environment.cs: Remove unused method found with Gendarme.
1002
1003 2008-02-02  Gert Driesen  <drieseng@users.sourceforge.net>
1004
1005         * Variant.cs: Fixed line endings.
1006         * MonoType.cs: Fixed parameter name for ArgumentException to match MS.
1007
1008 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * Type.cs (MakeGenericType): Fix exception message.
1011
1012 2008-01-29  Jb Evain  <jbevain@novell.com>
1013
1014         * AppDomain.cs: add SL overload of DefineDynamicAssembly.
1015
1016 2008-01-29  Marek Safar  <marek.safar@gmail.com>
1017
1018         * Type.cs (MakeGenericType): More argument checks. Fixes #356863 by
1019          Sanghyeon Seo.
1020
1021 2008-01-25  Rodrigo Kumpera  <rkumpera@novell.com>
1022
1023         * MonoType.cs (InvokeMember): Fixed exceptions arguments for last comit.
1024
1025 2008-01-24  Rodrigo Kumpera  <rkumpera@novell.com>
1026
1027         * MonoType.cs (InvokeMember): Check for parameters without default value which
1028         the supplied argument is Missing.Value. Fixes one of the issues of #348522.
1029
1030 2008-01-21  Sebastien Pouliot  <sebastien@ximian.com>
1031
1032         * DateTimeOffset.cs: Avoid NRE on bad cast if null is provided to
1033         Equals(object). Found using Gendarme.
1034
1035 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
1036
1037         * DateTimeOffset.cs: Fix warnings.
1038
1039 2008-01-15  Stephane Delcroix  <sdelcroix@novell.com>
1040
1041         * DateTimeOffset.cs: ParseExact: parse f, F, s too.
1042
1043 2008-01-15  Stephane Delcroix  <sdelcroix@novell.com>
1044
1045         * DateTimeOffset.cs: ParseExact: honor the DateTimeStyles parameter.
1046
1047 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
1048
1049         * AppDomainSetup.cs Buffer.cs Action.cs Array.cs BadImageFormatException.cs Byte.cs
1050         Attribute.cs _AppDomain.cs Boolean.cs AppDomain.cs: Fix some argument names to be 
1051         consistent with MS.
1052
1053 2008-01-14  Sephane Delcroix  <sdelcroix@novell.com>
1054
1055         * DateTimeOffset.cs: start refactoring DoParse.
1056
1057 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
1058
1059         * Type.cs (GetConstructor): Use correct binding flags in type (Type[]) overload.
1060         Fixes #353604.
1061
1062 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
1063
1064         * NumberFormatter.cs, Double.cs, Single.cs: Fix Single & Double default
1065           ToString to handle +-Infinity & NaN.
1066
1067 2008-01-14  Sephane Delcroix  <sdelcroix@novell.com>
1068
1069         * DateTimeOffset.cs: ParseExact (string, string, IFormatProvider) 
1070         implemented.
1071
1072
1073 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
1074
1075         * NumberFormatter.cs: Remove some redundant assignments.
1076
1077 2008-01-13  Gert Driesen  <drieseng@users.sourceforge.net>
1078
1079         * AppDomain.cs: Also fix bug #350530 for overload taking evidence and
1080         args. On 1.0 profile, throw COMException to match MS and to allow
1081         our unit tests to pass on MS.
1082
1083 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
1084
1085         * NumberFormatter.cs: Check in redesigned implementation. Improves
1086           double.ToString performance by 2-3 orders of magnitude and other
1087           primitive numeric types ToString performance.
1088         * NumberFormatter.jvm.cs: The TARGET_JVM managed tables for NumberFormatter
1089           class for reuse if a completely managed NumberFormatter is required.
1090         * Int16.cs UInt64.cs Double.cs UInt16.cs SByte.cs Byte.cs TimeSpan.cs
1091           Int32.cs Int64.cs Single.cs UInt32.cs: Adapt to new NumberFormatter.
1092
1093 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
1094
1095         * AppDomain.cs: Check for a missing entry point in the ExecuteAssembly methods.
1096         Fixes #350530.
1097
1098 2008-01-11  Stephane Delcroix  <sdelcroix@novell.com>
1099
1100         * DateTimeOffset.cs: Fixes the MinValue (was equal to MaxValue)...
1101
1102 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
1103
1104         * Delegate.cs: Implement argument checking in CreateDelegate(Type,object,MethodInfo)
1105         method. Make the CreateDelegate(Type,MethodInfo) overload calls this version.
1106         Fixes #352805.
1107
1108 2008-01-10  Stephane Delcroix  <sdelcroix@novell.com>
1109
1110         * DateTimeOffset.cs: chain the Parse* methods together.
1111
1112 2008-01-09  Atsushi Enomoto  <atsushi@ximian.com>
1113
1114         * DateTime.cs : revert the previous fix. It caused regression on
1115           the buildbot.
1116
1117 2008-01-09  Atsushi Enomoto  <atsushi@ximian.com>
1118
1119         * DateTime.cs : fixed bug #352210. Kind is unspecified by default,
1120           while the tick is for local time by default. This fix also involved
1121           special x509 handling.
1122
1123 2008-01-08  Marek Safar  <marek.safar@gmail.com>
1124
1125         * Array.cs (LastIndexOf<T>): Fixed bound checking.
1126
1127 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
1128
1129         * AppDomain.cs: Move the assembly loading in ExecuteAssembly and 
1130         ExecuteAssemblyByName to managed to as said by the MSDN docs. Fixes #350530.
1131
1132         * Environment.cs: Bump corlib version.
1133         
1134 2008-01-02  Marek Habersack  <mhabersack@novell.com>
1135
1136         * Array.cs: fix a typo to unbreak the build.
1137
1138 2008-1-1  Scott Peterson  <lunchtimemama@gmail.com>
1139
1140         * Array.cs: Slight improvement to the quicksort algorithm.
1141
1142 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
1143
1144         * Environment.cs: Bump corlib version.
1145
1146 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1147
1148         * AppDomain.cs: Added check for null AssemblyName, and invalid
1149         AssemblyName.Name to DefineDynamicAssembly overloads. Loosely based on
1150         patch provided by Cedric Vivier. Fixes bug #349272.
1151
1152 2007-12-20  Stephane Delcroix  <sdelcroix@novell.com>
1153
1154         * DateTimeOffset.cs: set [Min|Max]Value to UTC. Fixes #349621.
1155
1156 2007-12-19  Stephane Delcroix  <sdelcroix@novell.com>
1157
1158         * DateTime.cs:
1159         * DateTimeOffset.cs:
1160         * DateTimeUtils.cs: factored out the common pieces of DT and DTO into DTU.
1161
1162 2007-12-18  Stephane Delcroix  <sdelcroix@novell.com>
1163
1164         * DateTimeOffset.cs: implementing the 4 ToString overloads by reusing
1165         large chunks of System.DateTime code.
1166
1167 2007-12-16  Stephane Delcroix  <sdelcroix@novell.com>
1168
1169         * DateTimeOffset.cs: some bugfix discovered by unit tests.
1170
1171 2007-12-16  Stephane Delcroix  <sdelcroix@novell.com>
1172
1173         * DateTimeOffset.cs: almost complete implementation, still missing the
1174         Parse* and ToString methods.
1175
1176 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
1177
1178         * AppDomain.cs (DoAssemblyResolve): Fix detection of whenever there is a
1179         reflection-only assembly resolve hook.
1180
1181 2007-12-10  Stephane Delcroix  <sdelcroix@novell.com>
1182
1183         * DateTimeOffset.cs: partial implementation. no longer just a stub.
1184
1185 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
1186
1187         * Delegate.cs: Compute the Method property lazily.
1188         
1189         * Delegate.cs: Add a 'method' field.
1190
1191         * Environment.cs: Bump corlib version.
1192
1193 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
1194
1195         * Array.cs: Make the InternalArray_... methods internal.
1196
1197         * Environment.cs: Bump corlib version.
1198
1199 2007-11-21  Atsushi Enomoto  <atsushi@ximian.com>
1200
1201         * AppDomain.cs : filled 2.0 API (extra ones are from 2.0 SP1).
1202         * ContextMarshalException.cs : obsolete in 2.0.
1203
1204 2007-11-21  Atsushi Enomoto  <atsushi@ximian.com>
1205
1206         * MarshalByRefObject.cs : Added MemberwiseClose() stub.
1207           GetLifetimeService() is not virtual (in both 2.0 and 1.1).
1208         * Console.cs : implemented missing 2.0 key members.
1209
1210 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
1211
1212         * Enum.cs: Provided ParamName of Argument(Null)Exceptions. Rewrote
1213         some exception messages.
1214
1215 2007-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1216
1217         * AppDomain.cs: Added some obsolete messages.
1218
1219 2007-11-15  Gert Driesen  <drieseng@users.sourceforge.net>
1220
1221         * MonoType.cs: Modified ParamName for ArgumentException to match
1222         MS. Provide meaningful exception messages. On 2.0, throw ANE instead
1223         of ArgumentException when args is null.
1224
1225 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
1226
1227         * MonoType.cs (Invoke): Allow BindingFlags.SetField and
1228         BindingFlags.SetProperty to be specified together. Fixes #321735.
1229
1230 2007-11-14  Miguel de Icaza  <miguel@novell.com>
1231
1232         * Console.cs, ConsoleDriver.cs, TermInfoDriver.cs,
1233         TermInfoReader.cs, TermInfoNumber.cs, TermInfoStrings.cs,
1234         CStreamReader.cs, CStreamWriter.cs, NullConsoleDriver.cs,
1235         WindowsConsoleDriver.cs: In the 2.1 profile we do not need the
1236         full-blown Console (the terminal-addressable console) so we shrink
1237         it down to the basic 1.0 Console.
1238
1239 2007-11-14  Marek Safar  <marek.safar@gmail.com>
1240
1241         * Nullable.cs: Optimized to use generic comparers.
1242
1243 2007-11-14  Zoltan Varga  <vargaz@gmail.com>
1244
1245         * Array.cs (Copy): Throw InvalidCastException in more cases.
1246
1247 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * GCCollectionMode.cs GCLatencyMode.cs: New net 3.5 types.
1250
1251 2007-11-12  Atsushi Enomoto  <atsushi@ximian.com>
1252
1253         * NumberFormatter.cs : revert previous two changes. It does not
1254           really work for float and hence will rather bring confusion.
1255
1256 2007-11-12  Atsushi Enomoto  <atsushi@ximian.com>
1257
1258         * NumberFormatter.cs : limit the situation that needs roundtrip
1259           verification in the previous change to Double.
1260
1261 2007-11-12  Atsushi Enomoto  <atsushi@ximian.com>
1262
1263         * NumberFormatter.cs : applied a quick fix for bug #320433. It needs
1264           true fix to avoid extra perf. loss.
1265
1266 2007-11-08  Sebastien Pouliot  <sebastien@ximian.com>
1267
1268         * TimeZone.cs: Under 2.0 we must return a Local DateTime.MinValue.
1269         Fix the regression on the x86_64 bot which seems to be in it's own
1270         timezone.
1271
1272 2007-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
1273
1274         * Exception.cs: Cosmetic change to default exception message on
1275         2.0 profile.
1276
1277 2007-11-05  Gert Driesen  <drieseng@users.sourceforge.net>
1278
1279         * Array.cs: Distinguish between notstarted and finished state when
1280         throwing IOE in Current, and provide meaningful exception message.
1281
1282 2007-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1283
1284         * Array.cs: Fix Enumerator<T>.Reset (#322248).
1285
1286 2007-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1287
1288         * Type.cs (MakeGenericType): fix for #331199. If an user-defined type
1289         was used, the runtime would crash. Now we apply UnderlyingSystemType to
1290         all types before handling to the runtime.
1291
1292 2007-11-05  Stephane Delcroix  <sdelcroix@novell.com>
1293
1294         * TimeZone.cs: fix for #323911. The our after DST.Start is already DST.
1295
1296 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
1297
1298         * DateTime.cs : fix for #330085. for Local time, convert to Utc
1299           before getting ticks.
1300
1301 2007-11-03  Gert Driesen  <drieseng@users.sourceforge.net>
1302
1303         * ArgumentException.cs: Change default message to match MS. Removed
1304         unnecessary check from Message, since base.Message can never be null.
1305
1306 2007-11-01  Atsushi Enomoto  <atsushi@ximian.com>
1307
1308         * DateTime.cs : ParseExact() should ignore 'K' when there is no
1309           character is left.
1310
1311 2007-11-01  Atsushi Enomoto  <atsushi@ximian.com>
1312
1313         * DateTime.cs : in roundtrip mode, 'Z' should turn the tick value to
1314           utc time and should not result in different ticks.
1315           Fixed bug #338064.
1316
1317 2007-10-30  Miguel de Icaza  <miguel@novell.com>
1318
1319         * UInt32.cs (Parse): Use Jeff Stedfast's parsing code which is
1320         smaller and does not need checked() constructs. 
1321
1322         * Int64.cs, Int32.cs, Int16.cs: small tuneup: do not throw
1323         exception, instead return the exception like every other place in
1324         this code. 
1325
1326         * Int16.cs, Int32.cs, Int64.cs: Use the Jeff Stedfast parsing code
1327         which is smaller.  We no longer use "checked" to check for
1328         overflows, I refactored some stuff and cleaned up the rest and
1329         fixes #331525.
1330
1331 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
1332
1333         * MonoType.cs: Applied patch from Mario A Chavez 
1334         <mario.chavez@gmail.com>. Add support for invoking members with the 
1335         ParamArray attribute. Fixes #336841.
1336
1337 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
1338
1339         * MonoType.cs (InvokeMember): Make sure one operation is passed in the binding
1340         flags. Fixes #336936.
1341
1342 Fri Oct 26 19:43:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1343
1344         * Environment.cs, String.cs: patch from Tyler Larson
1345         <mono-devel@tlarson.com> to fix the handling of the RemoveEmptyEntries
1346         option in string.Split (bug #322375).
1347
1348 2007-10-26  Dick Porter  <dick@ximian.com>
1349
1350         * Environment.cs: Bump version because of Thread initialisation
1351         changes
1352
1353 2007-10-25  Lluis Sanchez Gual  <lluis@novell.com>
1354
1355         * AppDomain.cs: In DefaultDomain, wrap the returned domain with
1356         a proxy if the current domain is not the root domain.
1357
1358 2007-10-24  Atsushi Enomoto  <atsushi@ximian.com>
1359
1360         * Type.cs : implemented ReflectionOnlyGetType().
1361
1362 2007-10-19  Zoltan Varga  <vargaz@gmail.com>
1363
1364         * AppDomain.cs: Add NET 3.5 DefineDynamicAssembly () overloads.
1365
1366 2007-10-13  Zoltan Varga  <vargaz@gmail.com>
1367
1368         * Delegate.cs (CreateDelegate): Allow binding instance methods to 
1369         delegates with an extra argument, a NET 2.0 feature. Fixes #333647.
1370
1371 Fri Oct 12 08:11:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
1372
1373         * String.cs: reverted unapproved patch that breaks the build.
1374
1375 2007-10-11  Joel Reed  <joelwreed@comcast.com>
1376
1377         * String.cs: fix String.Split(char[],int,StringSplitOptions)
1378         with StringSplitOptions.RemoveEmptyEntries option. The correct 
1379         behavior is to remove empty entries while the string is being split, 
1380         and always return the maximum number of elements possible.
1381         Patch from: Tyler Larson <mono-devel@tlarson.com>
1382         
1383 2007-09-28  Jb Evain  <jbevain@novell.com>
1384
1385         * Object.cs: Make ToString return Type.ToString ()
1386         by default instead of Type.FullName to match .net
1387         behavior. Fix #329419.
1388
1389 2007-09-28  William Holmes  <billholmes54@gmail.com>
1390
1391         * DateTime.cs: Check for AssumeUniversal when parsing string.
1392          Fixes bug #324845
1393
1394 2007-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
1395
1396         * Enum.cs: Use regular single quotes in exception message.
1397
1398 2007-09-14  Paolo Molaro <lupus@ximian.com>
1399
1400         * String.cs: implemented all the string ctors using CreateString
1401         methods, so they can run completely in managed code.
1402
1403 2007-09-13  Marek Safar  <marek.safar@gmail.com>
1404
1405         * DateTimeOffset.cs: Implemented few properties.
1406
1407 2007-09-13  Atsushi Enomoto  <atsushi@ximian.com>
1408
1409         * Decimal.cs, Math.cs : implemented midpoint rounding.
1410
1411 2007-09-13  Atsushi Enomoto  <atsushi@ximian.com>
1412
1413         * Activator.cs : implemented 2.0 CreateInstance()
1414           and CreateInstanceFrom () overloads.
1415
1416 2007-09-12  Sebastien Pouliot  <sebastien@ximian.com>
1417
1418         * Decimal.cs: More explicit text in exception (old and almost 
1419         forgetten patch on laptop ;-)
1420
1421 2007-09-10  Atsushi Enomoto  <atsushi@ximian.com>
1422
1423         * OperatingSystem.cs : implemented ISerializable.
1424
1425 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
1426
1427         * DateTime.cs: Fix a warning.
1428
1429 2007-08-25  Robert Jordan  <robertj@gmx.net>
1430
1431         * DateTime.cs: Implement internal To/FromBinary for the 1.1 profile.
1432
1433 2007-08-25  Alan McGovern  <amcgovern@novell.com>
1434
1435         * DateTime.cs: Reverted DateTime changes.
1436
1437 2007-08-25  Robert Jordan  <robertj@gmx.net>
1438
1439         * DateTime.cs: Implement internal To/FromBinary for the 1.1 profile.
1440
1441 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
1442
1443         * Array.cs: Fix min + max / 2 overflows in the BinarySearch and qsort methods.
1444         Fixes #82469.
1445
1446 2007-08-23  Marek Safar  <marek.safar@gmail.com>
1447
1448         * DateTimeOffset.cs: New .NET 3.5 struct for 2.0 mscorlib.
1449         
1450 2007-08-23  Eyal Alaluf <eyala@mainsoft.com>
1451
1452         * DateTime.cs: Numerous improvements to DateTime.Parse. It handles a lot
1453           more possible formats and more correctly at that. It is also now easier
1454           to manage the formats DateTime.Parse supports.
1455
1456 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
1457
1458         * Exception.cs: Make 1.0 and 2.0 object layout the same since this class is seen
1459         by the runtime. Fixes #82459.
1460
1461 2007-08-16  Gert Driesen  <drieseng@users.sourceforge.net>
1462
1463         * MonoCustomAttrs.cs: In IsDefined, throw ArgumentNullException if
1464         attributeType is null to avoid a SIGSEGV (and match MS). Only partial
1465         fix for bug #82431 on 1.0 profile; it fully fixes the problem for the
1466         1.0 profile, but more changes (in the runtime) are required for the
1467         2.0 profile. Added a FIXME explaining the problem.
1468
1469 2007-08-15  Gert Driesen  <drieseng@users.sourceforge.net>
1470
1471         * MonoCustomAttrs.cs: In IsDefined, only walk inheritance chain if
1472         both AttributeUsage.Inherited and inherit are true. Fixed bug #82431.
1473
1474 2007-08-13  Gert Driesen  <drieseng@users.sourceforge.net>
1475
1476         * ArgumentException.cs: Ignore zero-length ParamName for Message.
1477         Use ParamName property instead of field, since the property is marked
1478         virtual.
1479         * Array.cs: Provide more meaningful exception message when destination
1480         array is not long enough.
1481
1482 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
1483
1484         * Array.cs: Implement InternalArray__set_Item. Fixes #82345.
1485
1486 2007-08-08  Atsushi Enomoto  <atsushi@ximian.com>
1487
1488         * IntPtr.cs : oops, do not ignore format in ToString(string).
1489
1490 2007-08-08  Atsushi Enomoto  <atsushi@ximian.com>
1491
1492         * GC.cs, Exception.cs, IntPtr.cs, Enum.cs, DateTime.cs, Convert.cs
1493           ConsoleKeyInfo.cs, String.cs, Object.cs, Attribute.cs,
1494           Version.cs : couple of cosmetic 2.0 API fixes.
1495
1496 2007-08-06  Aaron Bockover  <abockover@novell.com>
1497
1498         * Environment.cs (ReadXdgUserDir): Support the changes to the
1499         xdg-user-dirs spec that allow $HOME to start the path; also allows
1500         for quotes surrounding the path (Patch ported from Banshee,
1501         BGO #461596)
1502
1503 2007-07-28  Miguel de Icaza  <miguel@novell.com>
1504
1505         * MulticastDelegate.cs (Equals): do not cast to avoid exceptions,
1506         instead use the "as" operator, as pointed out by Jesse Jones'
1507         tool. 
1508
1509 2007-07-21  Gert Driesen  <drieseng@users.sourceforge.net>
1510
1511         * BitConverter.cs: Fixed exceptions to match MS. Fixed invalid use
1512         of ArgumentOutOfRangeException and ArgumentException ctors that take
1513         both parameter name and message. In ToString throws ArgumentException
1514         instead of ArgumentOutOfRangeException when length is negative, and
1515         return zero-length string when length is 0.
1516
1517 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1518
1519         * AppDomainSetup.cs : fix serialization regression.
1520
1521 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1522
1523         * AppDomainSetup.cs :
1524           MonoTODO AppDomainInitializer as its implementation is wrong.
1525
1526 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1527
1528         * AppDomainSetup.cs : added missing 2.0 members.
1529         * AppDomain.cs : support AppDomainInitializer.
1530
1531 2007-06-06  Miguel de Icaza  <miguel@novell.com>
1532
1533         * Int16.cs, UInt64.cs, SByte.cs, UInt16.cs, Byte.cs, Int32.cs,
1534         Int64.cs, UInt32.cs: Fix for 81775.
1535
1536         I removed Parse from a Byte.cs and UInt16.cs as in various cases
1537         they still depended on UInt32.cs for parsing, there is no reason
1538         to keep all of this code duplicated (UInt64 is a different case
1539         though). 
1540
1541         I was hoping for some feedback on whether my tests are correct,
1542         but so far no takers.
1543
1544 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1545
1546         * ModuleHandle.cs: Implement the generic versions of the ResolveXXXHandle () methods.
1547         
1548         * ModuleHandle.cs: Add stubs for generic ResolveXXXHandle () methods.
1549
1550 2007-07-10  Alan McGovern <amcgovern@novell.com>
1551
1552         * Guid.cs: All whitespace should be trimmed from before and
1553         after a string passed into the Guid constructor. Fixes #81958
1554
1555 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1556
1557         * RuntimeTypeHandle.cs: Fix signatures of == and != operators.
1558
1559         * ModuleHandle.cs: Add missing 2.0 stuff.
1560
1561 2007-07-08  Zoltan Varga  <vargaz@gmail.com>
1562
1563         * *.cs: Add missing ComVisible attributes.
1564
1565         * Delegate.cs: Add missing 2.0 CreateDelegate () methods.
1566
1567 2007-07-07  Gert Driesen  <drieseng@users.sourceforge.net>
1568
1569         * DateTime.cs: In ParseExact, throw ArgumentNullException if format
1570         is null; throw FormatException if formats array is empty or if one of
1571         items is null or a zero-length string.
1572
1573 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
1574
1575         * Double.cs (Parse): Fix for string ending in garbaga, it was just ignoring it
1576         instead of throwing FormatException. Fixes #81777
1577
1578 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
1579
1580         * Double.cs (Parse): Fix for whitespace only strings, it was returning zero 
1581         instead of throwing FormatException. Fixes #81630 
1582
1583 2007-07-06  Alan McGovern  <amcgovern@novell.com>
1584
1585         * DateTime.cs: If the format is null or empty, it should default to 'G'.
1586         Fixes bug 81778
1587
1588 2007-07-06  Jonathan Chambers  <joncham@gmail.com>
1589
1590         * __ComObject.cs: Support ExtensibleClassFactory.
1591
1592
1593 2007-07-06  Aaron Bockover  <abockover@novell.com>
1594
1595         * Environment.cs (InternalGetFolderPath): Try reading some
1596         paths from ~/.config/user-dirs.dirs (XDG user dirs spec);
1597         always return something for MyPictures
1598
1599 2007-07-04  Atsushi Enomoto  <atsushi@ximian.com>
1600
1601         * Type.cs : 2.0 TypeHandle and ContainsGenericParameters are virtual
1602           (required fix for 2.0 reflection API fixes).
1603
1604 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
1605
1606         * __ComObject.cs: Move interface lookup to unmanaged.
1607
1608 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1609
1610         * Environment.cs: Bump corlib version.
1611
1612         * Delegate.cs: Applied patch from Robert Jordan (robertj@gmx.net). Keep
1613         the dynamic method referenced by a delegate alive.
1614
1615 2007-06-05  David Ferguson <davecferguson@gmail.com>
1616
1617         * DateTime.cs: Changed DateTime.Parse() to throw a FormatException
1618           instead of an ArgumentOutOfRangeException for .NET 2.0.  An
1619           ArgumentOutOfRangeException is still thrown for .NET 1.1.
1620           Fixes bug #77633
1621           
1622 Mon Jun 4 14:52:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1623
1624         * String.cs: optimized CompareOrdinal ().
1625
1626 2007-06-02  Zoltan Varga  <vargaz@gmail.com>
1627
1628         * MonoCustomAttrs.cs (GetBase): Revert last change as it breaks the build.
1629         
1630         * MonoCustomAttrs.cs (GetBase): Handle properties correctly. Fixes #81797.
1631
1632 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1633
1634         * Delegate.cs: Add invoke_impl field. Reorder fields for better cache behavior. Add
1635         SetMulticastDelegate icall.
1636
1637         * MulticastDelegate.cs (CombineImpl): Call SetMulticastDelegate () on newly created
1638         delegate.
1639
1640         * Environment.cs: Bump corlib version.
1641         
1642 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1643
1644         * __ComObject.cs: Add overload to GetInterface to allow
1645         not throwing exceptions. Fixes as and is operators for COM objects.
1646
1647 2007-05-23  Atsushi Enomoto  <atsushi@ximian.com>
1648
1649         * Array.cs : reverting Array.cs fixes since the runtime depends on
1650           those method attributes.
1651
1652 2007-05-23  Atsushi Enomoto  <atsushi@ximian.com>
1653
1654         * Int16.cs UInt64.cs UIntPtr.cs Double.cs CrossAppDomainDelegate.cs
1655           ResolveEventHandler.cs IntPtr.cs UnhandledExceptionEventHandler.cs
1656           Void.cs AssemblyLoadEventHandler.cs SByte.cs UInt16.cs DateTime.cs
1657           Byte.cs TimeSpan.cs Decimal.cs Int32.cs Delegate.cs
1658           AppDomainInitializer.cs MulticastDelegate.cs Int64.cs
1659           EventHandler.cs Single.cs UInt32.cs AsyncCallback.cs :
1660           cosmetic attribute fixes (ComVisible/Serializable).
1661
1662 2007-05-22  Atsushi Enomoto  <atsushi@ximian.com>
1663
1664         * Convert.cs : completed 2.0 (ToBase64CharArray).
1665         * String.cs : removed MonoTODO.
1666         * DataMisalignedException.cs : removed extra .ctor().
1667         * Array.cs : internalize extra members. Fixed reliability contract.
1668
1669 2007-05-17  Atsushi Enomoto  <atsushi@ximian.com>
1670
1671         * DateTime.cs : added support for 'K'.
1672
1673 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1674
1675         * __ComObject.cs: No need to call CoInitialize anymore since
1676         Thread.ApartmentState was implemented.
1677
1678 2007-05-11  Jeffrey Stedfast  <fejj@novell.com>
1679
1680         Fixes bug #81540
1681
1682         * TermInfoDriver.cs (WriteSpecialKey): Actually clear the screen
1683         and reset the cursor position to 0,0 when the key is
1684         ConsoleKey.Clear.
1685         (Clear): Reset the cursor position to 0,0
1686
1687 2007-05-09  Marek Safar  <marek.safar@gmail.com>
1688
1689         * MulticastDelegate.cs: Fixed operators logic.
1690
1691 2007-05-09  Marek Habersack  <mhabersack@novell.com>
1692
1693         * DateTime.cs: add a format used in ASP.NET QuickStarts 
1694           ("HH':'mm tt MM/dd/yyyy")
1695
1696 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * Type.cs (Equals): Allow a null argument.
1699
1700 2007-04-27  Zoltan Varga  <vargaz@gmail.com>
1701
1702         * Environment.cs (StackTrace): Avoid skipping a frame to be
1703         compatible with MS.
1704
1705 2007-04-25  Atsushi Enomoto  <atsushi@ximian.com>
1706
1707         * DateTimeTest.cs : looks like 'F' even removes preceding '.' ...
1708
1709 2007-04-25  Atsushi Enomoto  <atsushi@ximian.com>
1710
1711         * DateTime.cs : implemented new-2.0 'F' pattern letter.
1712
1713 2007-04-24  Jeffrey Stedfast  <fejj@novell.com>
1714
1715         Fixes the last of the bugs listed in bug #77525
1716
1717         * TermInfoDriver.cs (ctor): For known terminal types, set color16
1718         to true (since we know they support 16 colours).
1719         (Init): set the setlfgcolor and setlbgcolor format strings.
1720         (BackgroundColor): Use the appropriate formatter string for
1721         setting the bgcolor.
1722         (ForegroundColor): Use the appropriate formatter string for
1723         setting the fgcolor.
1724         (TranslateColor): Now takes (and sets appropriately) an output
1725         'bool light' argument.
1726
1727 2007-04-24  Marek Habersack  <mhabersack@novell.com>
1728
1729         * TermInfoDriver.cs: don't include debug stuff by default - it
1730         breaks multithreaded applications (they all attempt to open
1731         console.log and fail because of sharing violation).
1732
1733 2007-04-23  Jeffrey Stedfast  <fejj@novell.com>
1734
1735         * TermInfoDriver.cs (ReadKeyInternal): Since our input stream is
1736         buffered, check if it has more buffered input in addition to our
1737         timeout check. This makes it such that we will actually correctly
1738         match multi-char escape sequences.
1739         (Read): Changed the logic slightly wrt 'fresh' echoing. Once we
1740         encounter a fresh char, all chars afterward should also be
1741         considered 'fresh' even if 'fresh' is returned as false later.
1742         (ReadLine): Same logic here.
1743
1744 2007-04-23  Jeffrey Stedfast  <fejj@novell.com>
1745
1746         Fixes bug #80702 (via getting rid of the casting) and more.
1747
1748         The following change makes it such that even if an application
1749         calls Console.SetOut() with its own output stream, we can still
1750         properly echo user-input from stdin to the real stdout.
1751
1752         * TermInfoDriver.cs (ctor): Grab a reference to the original
1753         Console.stdout so we can be sure we always echo to console.
1754         (QueueEcho): No need to cast Console.stdout anymore.
1755         (EchoFlush): Same.
1756         (WriteConsole: Here too.
1757
1758 2007-04-20  Jeffrey Stedfast  <fejj@novell.com>
1759
1760         * TermInfoDriver.cs (QueueEcho): Renamed from Echo(char). Use
1761         CStreamWriter's new InternalWriteChars().
1762         (Echo): Since we can no longer go thru CStreamWriter's ::Write()
1763         method that does checks for special keys, do the checks here
1764         instead - if it is a special key, flush the echo buffer and then
1765         write the special key.
1766         (EchoFlush): Also updated to use CStreamWriter's new
1767         InternalWriteChars().
1768         (Read): Use the Echo(key) variety.
1769         (ReadKey): Same.
1770         (ReadLine): And here too.
1771
1772         * CStreamWriter.cs (InternalWriteChars): Write a char array
1773         directly to stdout. Do not pass Go, do not collect $200.
1774
1775 2007-04-19  Jeffrey Stedfast  <fejj@novell.com>
1776
1777         Optimization for echoing keypresses back to the console when the
1778         user pastes a block of text rather than manually typing text.
1779
1780         * TermInfoDriver.cs (Echo): A new convenience function for echoing
1781         characters/keys back to the console with an optimization twist and
1782         a bit of lime.
1783         (EchoFlush): Flush our pending echo queue
1784         (Read): Make use of Echo() both for convenience and for speed.
1785         (ReadLine): Same.
1786         (ReadKey): Make use of Echo()/EchoFlush() for simplicity of code,
1787         but we won't get the same optimization out of it.
1788
1789 2007-04-19  Jeffrey Stedfast  <fejj@novell.com>
1790
1791         Fix for bug #81373.
1792
1793         * TermInfoDriver.cs: Changed 'buffer' to be a char array instead
1794         of a byte array and stdin is now a StreamReader rather than a
1795         Stream.
1796         (Init): Setup stdin as a StreamReader using Console.InputEncoding
1797         as our encoding.
1798         (GetCursorPosition): Use stdin.Read() instead of the old
1799         ReadByte() code.
1800         (AddToBuffer): Updated to allocate the correct array type for
1801         'buffer'.
1802         (ReadKeyInternal): Updated to use stdin.Read() rather than
1803         stdin.ReadByte(). This is the main reason we needed to use chars
1804         instead of bytes. Characters entered by the user need to be
1805         represented as unicode chars and not bytes like before.
1806         (Match): Now takes a char[] buffer argument instad of byte[] and
1807         compares the input buffer to the byte-map as chars.
1808
1809 2007-04-18  Jeffrey Stedfast  <fejj@novell.com>
1810
1811         Fixes bug #81159: behave the same as mscorlib
1812
1813         * TermInfoDriver.cs (ReadKeyInternal): Now has an 'out bool fresh'
1814         argument which is used to tell our caller if the key was freshly
1815         read from the console or pre-buffered.
1816         (Read): New implementation of Console.In.Read(char[], int, int)
1817         that behaves exactly like mscorlib's implementation.
1818         (ReadKey): Updated for the ReadKeyInternal() API change - only
1819         echo if the key was fresh.
1820         (ReadLine): Same.
1821
1822         * CStreamReader.cs (Read): Call the new TermInfoDriver.Read()
1823
1824 2007-04-17  Jeffrey Stedfast  <fejj@novell.com>
1825
1826         * CStreamWriter.cs (Write): Optimized this some more, we don't
1827         need a temporary buffer. Just blit chunks of the src buffer
1828         instead.
1829
1830         * CStreamReader.cs (Read): Need to increment our array index so
1831         that we don't store each byte read into the same
1832         position. Discovered this while testing bug #81159 (which appears
1833         to work as expected with current svn, other than this buglet).
1834
1835         * TermInfoDriver.cs (CursorTop::set): SetCursorPosition() sets our
1836         internal cursorTop variable, so no need to explicitly set it again
1837         after calling SetCursorPosition().
1838         (CursorLeft::set): Same idea here.
1839
1840 2007-04-17  Jeffrey Stedfast  <fejj@novell.com>
1841
1842         * TermInfoDriver.cs (ReadLine): Implemented a workaround for
1843         IronPython going behind System.Console's back when writing text to
1844         the screen (it doesn't seem to use Console.stdout, instead it
1845         creates its own file stream or something which just so happens to
1846         write to the same file descriptor) by querying for the cursor
1847         position in ReadLine(), so we lose no real performance (since we
1848         have to wait for user input anyway).
1849
1850 2007-04-17  Jeffrey Stedfast  <fejj@novell.com>
1851
1852         * TermInfoDriver.cs (Init): SetEcho(false), we'll be manually
1853         echoing from now on (ReadLine() has already been doing this, might
1854         as well make ReadKey() behave the same).
1855         (GetCursorPosition): No longer need to disable/re-enable echo
1856         anymore since it is now always false.
1857         (ReadKey): Manually echo the key back to the console just like
1858         ReadLine() has been doing (in the interest of consistancy) if
1859         intercept is false.
1860         (ReadLine): No longer need to disable/re-enable echo, echo is
1861         always off now. Also, fixed what appears to have been a typo.
1862
1863 2007-04-17  Jeffrey Stedfast  <fejj@novell.com>
1864
1865         * TermInfoDriver.cs (IsSpecialKey): Oops, Enter should not be
1866         treated as a special key. Just update out cursor state here like
1867         we do with normal chars.
1868         (WriteSpecialKey): Enter is a no-op now because it is not treated
1869         as a special key anymore.
1870
1871         * CStreamWriter.cs (Write): Only flush our buffer if j > 0
1872
1873 2007-04-17  Jeffrey Stedfast  <fejj@gnome.org>
1874
1875         Turns out my last patch was broken wrt handling some special keys
1876         like Backspace and anything else that changed the cursor position
1877         in some non-standard way.
1878
1879         * CStreamWriter.cs (Write): Instead of calling NotifyWrite(), we
1880         instead need to check IsSpecialKey(), and, if so, flush whatever
1881         we have saved in our temporary buffer and then call
1882         WriteSpecialKey(). Otherwise go on as we did in the last patch.
1883
1884         * TermInfoDriver.cs (NotifyWrite): Broken up into 2 functions:
1885         (IsSpecialKey): Returns true if we need to do some special voodoo
1886         for this key
1887         (WriteSpecialKey): Write the special key (using whatever voodoo
1888         necessary)
1889
1890 2007-04-16  Jeffrey Stedfast  <fejj@gnome.org>
1891
1892         * CStreamWriter.cs (Write): Instead of writing 1 char at a time,
1893         copy the bytes into a temporary char array (with a fixed max size)
1894         so that we can minimize the number of Write() calls we make on the
1895         underlying stream (and thus on the write() system call).
1896
1897 2007-04-17  Alp Toker  <alp@atoker.com>
1898
1899         * Array.cs: Make GetRank() icall private. Subclasses should use the
1900         public Rank property.
1901
1902 2007-04-16  Jeffrey Stedfast  <fejj@novell.com>
1903
1904         * WindowsConsoleDriver.cs: Get rid of unused Echo property.
1905
1906         * NullConsoleDriver.cs: Get rid of Echo property.
1907
1908         * IConsoleDriver.cs: Get rid of Echo property.
1909
1910         * ConsoleDriver.cs (Echo::get/set): Removed, not needed.
1911
1912         * TermInfoDriver.cs (Echo::get/set): Removed, this isn't necessary
1913         and is confusing.
1914         (ReadKey): If we are intercepting the key, call SetEcho (false)
1915         and then reset back to true after reading the key.
1916         (ReadLine): Same idea here.
1917         (GetCursorPosition): We no longer need to keep track of the
1918         previous echo state, we no longer have it :)
1919
1920 2007-04-16  Jeffrey Stedfast  <fejj@novell.com>
1921
1922         Fix for bug #80710 (and a bug I introduced in my last fix due to
1923         this code assuming the underlying term echo state was always
1924         false) and other buglets that I noticed.
1925
1926         * TermInfoDriver.cs (ReadLine): Set (term) Echo to false as we do
1927         our own manual echoing which prevents ^H from getting displayed on
1928         the screen when the user hits backspace.
1929         (ReadLine): If the user hits Backspace and builder.Length is 0, DO
1930         NOT echo the backspace back to the console, ever.
1931         (ReadLine): Only echo characters back to the console if echo is
1932         set to true. Seems the Echo ConsoleDriver property is a Mono
1933         extension, and I'm assuming this is the intended behavior? I can't
1934         see what else the Echo property would be useful for...
1935
1936 2007-04-16  Jeffrey Stedfast  <fejj@novell.com>
1937
1938         Fixes bug #81050
1939
1940         * TermInfoDriver.cs: Renamed the noEcho variable to echo, makes
1941         the logic cleaner/simpler/etc. Plus it was never actually used
1942         other than in the property methods which are called Echo.
1943         (Init): Call ConsoleDriver.SetEcho() with the 'echo' value -
1944         allows for a slight optimization if called from within the
1945         Echo::set property.
1946         (GetCursorPosition): Instead of calling the Echo property methods,
1947         call ConsoleDriver.SetEcho() directly to toggle echo off (if echo
1948         isn't already off, and then back on once we're finished getting
1949         the position - assuming the echo state is on, of course) - this
1950         avoids calling back into Init() which just felt dirty.
1951         (Echo::set): If the Echo state differs from our current state,
1952         call ConsoleDriver.SetEcho() with the new state (this is the
1953         important piece of the fix for bug #81050).
1954         (ReadKey): Simplified the echo logic to make it a bit clearer.
1955         (ReadLine): Same.
1956
1957 2007-04-16  Marek Safar  <marek.safar@gmail.com>
1958
1959         * Char.cs (IsLetter): Faster version.
1960
1961 2007-04-15  Alp Toker  <alp@atoker.com>
1962
1963         * Decimal.cs: Provide 2.0 Round() overloads using System.Math.
1964
1965 2007-04-15  Alp Toker  <alp@atoker.com>
1966
1967         * Activator.cs: CreateInstance(Type,object[]) was not params before
1968         2.0.
1969
1970 2007-04-15  Alp Toker  <alp@atoker.com>
1971
1972         * NonSerializedAttribute.cs: Inherited=false in 2.0.
1973
1974 2007-04-05  Dick Porter  <dick@ximian.com>
1975
1976         * Environment.cs: Increment mono_corlib_version
1977
1978 2007-04-03  Alp Toker  <alp@atoker.com>
1979
1980         * Array.cs: CreateInstance(Type,int[]) is params.
1981         * AppDomain.cs: ExecuteAssemblyByName(string,Evidence,string[]) is
1982         params.
1983
1984 2007-04-03  Alp Toker  <alp@atoker.com>
1985
1986         * Convert.cs:
1987         * Math.cs: Should be static classes in 2.0.
1988
1989 2007-04-03  Alp Toker  <alp@atoker.com>
1990
1991         * Delegate.cs: DynamicInvoke(object[]) is params in 2.0.
1992
1993 2007-04-03  Alp Toker  <alp@atoker.com>
1994
1995         * Delegate.cs: Combine(Delegate[]) is params in 2.0.
1996
1997 2007-03-27  Dick Porter  <dick@ximian.com>
1998
1999         * Environment.cs: Increment mono_corlib_version;
2000
2001 2007-03-16  Miguel de Icaza  <miguel@novell.com>
2002
2003         * BitConverter.cs: Revert the patch from 72237 as that introduces
2004         a regression and we are not sure yet what we will be doing about
2005         that.
2006
2007         Introduce a new InternalInt64BitsToDouble method that provides the
2008         fixed functionality, mark it as internal.
2009
2010         Introduce a new SwappableToDouble method that includes the
2011         swapping ToDouble routine as introduced by Zoltan on 72237, this
2012         is used by InternalInt64BitsToDouble.
2013
2014         * Math.cs (IEEERemainder): Use the InternalInt64BitsToDouble
2015         routine here to preserve the semantics from Zoltan.  
2016
2017         The problem with BitConverter.cs is that it is completely hossed.
2018         In .NET 1.1 it is a bitwise copy, no attempt is ever done to do
2019         endian-specific swapping.   In .NET 2.0 it is *almost* like that,
2020         but it is subtly broken: if data is unaligned then endian
2021         conversions happen.  If the data is properly aligned it behaves
2022         like 1.0.
2023
2024         In general BitConverter is a sad class that offers little control,
2025         we will be introducing a new mono bit converter and encourage
2026         users to use that instead of the entirely broken
2027         System.BitConverter. 
2028
2029 2007-03-11  Gert Driesen  <drieseng@users.sourceforge.net>
2030
2031         * Delegate.cs: Fixed bootstrap build.
2032
2033 2007-03-08  Gert Driesen  <drieseng@users.sourceforge.net>
2034
2035         * StringComparer.cs: Renamed StringComparer classes and promoted them
2036         to top-level classes. Merged Ordinal and OrdinalIgnoreCase comparers.
2037         Fixes binary serialization compatibility with MS.
2038
2039 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2040   
2041         * Type.cs (Equals): Remove a useless check.
2042
2043         * Type.cs: Rename Type:Equals(Type) to EqualsInternal, and add support for checking
2044         UnderlyingSystemType. Fixes #81037.
2045
2046 2007-03-05 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
2047
2048         * TermInfoDriver.cs: adjust buffer indexes after *every* read. Fixes
2049         bug #80329. Robert Jordan attached a similar patch to the bug report
2050         but I didn't see it until after my commit...
2051
2052 2007-03-05  Peter Dettman <peter.dettman@iinet.net.au>
2053
2054         * Enum.cs: The above patch makes the formatting for specifiers 'x'
2055         and 'X' behave like MS.NET, including the correct length for each
2056         possible underlying type, and correctly using capital letters for
2057         the 'X' case.
2058
2059         Patch also includes some more test cases in EnumTests.cs.
2060
2061 2007-02-25  Gert Driesen  <drieseng@users.sourceforge.net>
2062
2063         * AppDomainSetup.cs: If configuration file is not an absolute path,
2064         then throw a MemberAccessException if ApplicationBase is not set,
2065         or otherwise consider it as a path relative to ApplicationBase.
2066         Fixes bug #80934. Patch provided by Jamie Cansdale.
2067         * AppDomain.cs: In CreateDomain, construct AppDomain with
2068         ApplicationBase of default domain if not explicitly set in specified
2069         AppDomainSetup. If config file is not set, then use filename of the
2070         default domain config file. Base on patch provided by Jamie Cansdale.
2071
2072 2007-02-16  Sebastien Pouliot  <sebastien@ximian.com>
2073
2074         * Random.cs: Fix exception messages ("then" -> "than"). Spotted by
2075         Mark A. Nicolosi (#80873).
2076
2077 2007-02-12  Miguel de Icaza  <miguel@novell.com>
2078
2079         * CStreamWriter.cs (Write with char []): take the lock once for
2080         all characters and call manually the InternalWriteChar properly to
2081         speed things up.
2082
2083         (Write with string parameter): same thing, if the driver is not
2084         initialized use a fast path.
2085
2086         If the driver has not been initialized, use a fast path instead. 
2087
2088 Mon Feb 12 21:54:57 CET 2007 Paolo Molaro <lupus@ximian.com>
2089
2090         * MonoType.cs: patch from Cedric Vivier <cedricv@neonux.com> to
2091         get correctly non-public fields from generic types.
2092
2093 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
2094
2095         * __ComObject.cs: Add IUnknown field to object. Cleanup icalls.
2096         
2097 2007-02-03  Zoltan Varga  <vargaz@gmail.com>
2098
2099         * BitConverter.cs (ToDouble): Fix this on big-endian machines.
2100
2101 2007-01-30  Atsushi Enomoto  <atsushi@ximian.com>
2102
2103         * TimeZone.cs: According to the docs, we should not throw when
2104         converting to Localtime if we are a negative value.  Instead we
2105         return DateTime.MinValue.
2106
2107 2007-01-25  Atsushi Enomoto  <atsushi@ximian.com>
2108
2109         * DateTime.cs : copy Kind in those members that return DateTime.
2110           Fixed bug #80614.
2111
2112 2007-01-20  Miguel de Icaza  <miguel@novell.com>
2113
2114         * Array.cs (InternalArray__ICollection_Contains,
2115         InternalArray__IndexOf): Cope with null values in the array (See
2116         bug #80563).
2117
2118 2007-01-19  Marek Habersack  <grendello@gmail.com>
2119
2120         * AppDomain.cs: Make sure that domain
2121         SetupInformation.ConfigurationFile is never null. MS.NET by
2122         default copies the default domain's ConfigurationFile value
2123         there. Fixes bug #80547.
2124
2125 2007-01-14  Jensen Somers <jensen.somers@gmail.com>
2126
2127         * ArraySegment.cs: Added Equals() method, operator == and !=
2128         overloading and GetHashCode().
2129
2130 2007-01-10  Andy Hume <andyhume32@yahoo.co.uk>
2131
2132         * Fixes to a number of exception classes.
2133         
2134         A project of mine uses #ctor(String,Exception) on 
2135         ObjectDisposedException, so I looked at adding that, and any 
2136         other similar constructors missing as per the class status report.
2137         
2138         I also spotted inconsistent setting of HResult, and fixed 
2139         those too.  For instance, ArgumentNullException sets HResult 
2140         only in three out of the four constuctors; not setting it in 
2141         the v2 (String,Exception) one -- and correctly not in the 
2142         Serialization constructor.
2143         
2144         
2145         So, I fixed the remaining missing (String,Exception) 
2146         constructors in corlib (2 of), and fixed the Hresult setting 
2147         in all exceptions there (4 of).
2148         
2149         The remaining Exception constructor omission listed was 
2150         InvalidCastException.ctor(System.String, System.Int32).  MSDN   says:
2151         "This constructor supplies an HRESULT value that is 
2152         accessible to inheritors of the InvalidCastException class, 
2153         via the protected HResult property of the Exception class."
2154         I added that method too, setting the HResult property from 
2155         the Int32 argument.
2156
2157 2007-01-10  Atsushi Enomoto  <atsushi@ximian.com>
2158
2159         * String.cs, StringComparer.cs : avoid extra string creation in
2160           StringComparer.OrdinalIgnoreCase.
2161
2162 2007-01-05  Sebastien Pouliot  <sebastien@ximian.com>
2163
2164         * DateTime.cs: Under 2.0 fix ParseExact to set DateTimeKind.Utc when
2165         DateTimeStyles.AdjustToUniversal is used.
2166
2167 2007-01-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2168
2169         * TermInfoDriver.cs: honor the backspace in ReadLine.
2170
2171 2006-12-30  Marek Safar  <marek.safar@gmail.com>
2172
2173         * String.cs: Character based method only.
2174         (IndexOf, LastIndexOf, Replace, IndexOfAny): Performance improvements.
2175         (Substring): Returns same instance when index is 0.
2176
2177 2006-12-30  Alp Toker  <alp@atoker.com>
2178
2179         * Decimal.cs:
2180         * Math.cs: Implement missing Decimal.Ceiling methods for 2.0.
2181         Closes #80384.
2182
2183 2006-12-22  Sebastien Pouliot  <sebastien@ximian.com> 
2184
2185         * DateTime.cs: Implement missing [To|From]Binary methods for 2.0.
2186         * OperatingSystem.cs: Implement missing ServicePack and VersionString
2187         properties (2.0).
2188         * Version.cs: Add missing Major|MinorRevision properties for 2.0.
2189
2190 2006-12-14  Raja R Harinath  <rharinath@novell.com>
2191
2192         * Type.cs (MakeGenericType): Can only be called on a generic type
2193         definition.
2194
2195 2006-12-03  Miguel de Icaza  <miguel@novell.com>
2196
2197         * DateTime.cs: Fix this on the 2.0 profile, return the
2198         DateTimeKind for the Now property
2199
2200 2006-12-01  Duncan Mak  <duncan@a-chinaman.com>
2201
2202         * ArgumentOutOfRangeException.cs (.ctor): 
2203         * NotFiniteNumberException.cs (.ctor): Add the 2.0 constructor
2204         that takes a string and an inner Exception.
2205
2206 2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
2207
2208         * DateTime.cs :
2209           When comparing enumerations, two or more enumeration values might
2210           match. Thus basically we should do complete matching, but right
2211           now just do reverse order search since only numbered abbrev month
2212           names matter (and full iteration is a mess). Fixed bug #80094.
2213
2214 2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
2215
2216         * DateTime.cs :
2217           use new internal clone-less DateTimeFormatInfo members.
2218
2219 2006-11-29  Martin Baulig  <martin@ximian.com>
2220
2221         * INullableValue.cs: Removed.
2222
2223 2006-11-28  Duncan Mak  <duncan@novell.com>
2224
2225         * ArgumentNullException.cs (.ctor): Added new constructor that's
2226         new in .NET 2.0.
2227
2228         * InsufficientMemoryException.cs: Added missing 2.0 exception.
2229         
2230 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2231
2232         * __ComObject.cs: Removed IDispatchMono.
2233         
2234 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2235
2236         * TermInfoDriver.cs:
2237         * Console.cs: lazy initialization of Console 2.0 (also when
2238         CancelKeyPress is used).
2239
2240 2006-11-27  Miguel de Icaza  <miguel@novell.com>
2241
2242         * Exception.cs (GetType): New method in 2.x, Another Moma catch. 
2243
2244 Mon Nov 27 19:34:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2245
2246         * GC.cs: implemented the needed methods with icalls.
2247
2248 2006-11-26  Miguel de Icaza  <miguel@novell.com>
2249
2250         * Math.cs: Add Floor(Decimal d), for CreativeDocs.NET.
2251
2252         Go Moma!  http://www.mono-project.com/Moma
2253
2254         * Decimal.cs: Refactor code to implement TryParse.
2255
2256         Also, avoid initializing messages on every call to stripStyles
2257
2258 2006-11-22  Miguel de Icaza  <miguel@novell.com>
2259
2260         * DateTime.cs: A small performance hit, we store the actual time
2261         span in a boxed object.   This way, it can be updated from other
2262         threads if necessary.   We always unbox to get the value before
2263         any potential updates. 
2264
2265         Thanks to Gonzalo for catching this.
2266
2267 2006-11-21  Miguel de Icaza  <miguel@novell.com>
2268
2269         * TimeZone.cs (CurrentSystemTimeZone): Cache the current year
2270         daylight savings time in static variables.
2271
2272         (CurrentSystemTimeZone.OnDeserialization): Initialize
2273         this_year_dlt and this_year on this method.
2274
2275         (TimeZone): init statically the currentTimeZone instead of
2276         delaying that to the static property, avoiding a compare. 
2277
2278 2006-11-22  Lluis Sanchez Gual  <lluis@novell.com>
2279
2280         * Array.cs: (compare<T>) if a comparer is provided, it has
2281           priority over other comparison methods.
2282
2283 2006-11-14  Miguel de Icaza  <miguel@novell.com>
2284
2285         * Array.cs: TODOs will from now on be used to flag information
2286         that will be developer-visible, not to flag internal information
2287         that none of us reads or bothers about.
2288
2289         For those, use "FIXME" strings in the source code instead. 
2290
2291         * AppDomain.cs: Update to be more useful.
2292
2293 2006-11-13  Atsushi Enomoto  <atsushi@ximian.com>
2294
2295         * String.cs : fixed incorrect startIndex/length count in
2296           IndexOf(string,StringComparison).
2297
2298 2006-11-07  Marek Safar  <marek.safar@gmail.com>
2299
2300         * String.cs (LastIndexOf): If value is Empty, the return value is
2301         the start index position in value.
2302
2303 2006-10-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2304
2305         * TermInfoDriver.cs: prevent an invalid cast.
2306
2307 2006-10-26  Marek Safar  <marek.safar@seznam.cz>
2308
2309         * String.cs (Concat): Add fast-path for empty strings.
2310
2311 2006-10-20  Jonathan Chambers  <joncham@gmail.com>
2312
2313         * Variant.cs: Add support for bool and interfaces.
2314         
2315 2006-10-18  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2316
2317         * Type.cs: Removed is_subtype_of because IsSubclassOf should be used
2318           that is public and virtual. IsClass: Checking for ValueType is
2319           unnecessary. IsEnum: UnderlyingSystemType is not used anymore so
2320           no EnumBuilder hack is necessary. Checking for Enum is
2321           unnecessary. IsSerializable: Walk BaseType for user defined types.
2322           IsSubclassOf: Walk BaseType for user defined types.
2323
2324         * MonoType.cs: IsValueTypeImpl is unnecessary. IsSubclassOf: Unlike
2325           Type system types throw ArgumentNullException on null Type
2326           argument.
2327
2328 2006-10-14  Gert Driesen  <drieseng@users.sourceforge.net>
2329
2330         * BadImageFormatException.cs: Changed message for default ctor to
2331         match MS. Use internal message field of Exception to check whether
2332         Message is null. Match MS default messages when no message is 
2333         set. Fixed ToString to match MS.
2334
2335 2006-10-09  Miguel de Icaza  <miguel@novell.com>
2336
2337         * Environment.cs: Handle SpecialFolder.MyMusic
2338
2339 2006-10-07 Gert Driesen <drieseng@users.sourceforge.net>
2340
2341         * Enum.cs: Use different exception message depending on whether the
2342         type of the passed in value is an Enum or not. Avoid looking up the
2343         enum's underlying type twice in case of "D" or "d" format specifier.
2344
2345 2006-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2346
2347         * TermInfoDriver.cs: don't allow backspace if we're at the beginning
2348         position for a ReadLine.
2349
2350 2006-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2351
2352         * TermInfoDriver.cs: ironpython autocompletion works now.
2353
2354 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2355
2356         * Console.cs: avoid casting on windows.
2357
2358 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2359
2360         * ConsoleDriver.cs:
2361         * TermInfoDriver.cs:
2362         * IConsoleDriver.cs:
2363         * CStreamWriter.cs:
2364         * ConsoleKeyInfo.cs:
2365         * NullConsoleDriver.cs:
2366         * Console.cs:
2367         * CStreamReader.cs:
2368         * WindowsConsoleDriver.cs: initial changes to handle cursor position
2369         and screen buffers.
2370
2371 2006-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
2372
2373         * ArithmeticException.cs: Modified default message to match MS, to
2374         ensure a local regression test passes on both Mono and .NET.
2375
2376 2006-09-21  Gert Driesen  <drieseng@users.sourceforge.net>
2377
2378         * Exception.cs: Marked message internal to allow derived classes to
2379         access the raw message (without changing the public API).
2380
2381 2006-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2382
2383         * ConsoleDriver.cs:
2384         * TermInfoDriver.cs:
2385         * IConsoleDriver.cs:
2386         * Console.cs:
2387         * WindowsConsoleDriver.cs: don't switch to the alternate window.
2388         Trigger the cancel event. Retrieve the cursor position at the
2389         beginning, as we're going to keep track of it instead of querying it
2390         all the time.
2391
2392 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2393
2394         * Environment.cs (ProcessorCount): Implement as icall.
2395         Patch by Jason McFall.
2396
2397 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2398
2399         * DateTime.cs (Today) [NET_2_0]: Set kind to Local.
2400
2401 2006-09-02  Zoltan Varga  <vargaz@gmail.com>
2402
2403         * Enum.cs (Equals): Use the generic Equals implementation from ValueType which
2404         is faster and avoids allocations.
2405
2406 2006-09-01  Martin Baulig  <martin@ximian.com>
2407
2408         * Array.cs (Array.InternalArray): Removed the helper class;
2409         instead we use private generic methods in System.Array which are
2410         inserted into the vtable at runtime.
2411
2412 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2413
2414         * ConsoleCancelEventArgs.cs: fix my build.
2415
2416 2006-08-22  Miguel de Icaza  <miguel@novell.com>
2417
2418         * MulticastDelegate.cs: Make DynamicInvokeImpl internal in 2.0 
2419
2420         * Converter.cs: update signature to final.
2421
2422         * ModuleHandle.cs: Removed the [Obsolete] flags as they removed
2423         those in the final 2.0
2424
2425         * DateTime.cs: Fixed the signature. 
2426
2427         * Convert.cs: Removed API calls that were deprecated in final 2.0
2428
2429         * Enum.cs: Updated to use the obsoletes flagged in 2.0.
2430
2431         * ConsoleCancelEventArgs.cs: Updated to 2.0
2432
2433 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2434
2435         * Attribute.cs: This needs to do a deep compare, not a shallow
2436         one.   Ran into this bug with the VBNC compiler that compares two
2437         separate attributes for equality using this.
2438
2439         * String.cs (StartsWith): Fix the overloaded constructor that
2440         takes a CultureInfo, if that is null, it means to use the current
2441         culture. 
2442
2443         * TermInfoDriver.cs: Do not throw exceptions on the driver for
2444         SetWindowSize and SetWindowPosition, they can be treated as nops.
2445
2446 2006-08-18  Zoltan Varga  <vargaz@gmail.com>
2447
2448         * *.cs: Use String.Empty instead of "" in a lot of places.
2449
2450 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2451
2452         * DateTime.cs: Remove last patch to DateTime as the fix wasn't correct
2453         and made most x.509 unit tests fails. However the original problem is 
2454         back (only on 2.0).
2455
2456 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2457
2458         Fix #78943
2459         * Activator.cs (CreateInstance): Throw ArgumentException on open
2460         generic types.
2461
2462 2006-08-14  Miguel de Icaza  <miguel@novell.com>
2463
2464         * MonoType.cs: Do the argument testinf for SetField later,
2465         otherwise the implicit (and not documented, but already considered
2466         side effect of checking SetProperty) did not work.
2467
2468         Bug fix #79023
2469
2470 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2471
2472         * String.cs : Normalize() and IsNormalized() implementation.
2473
2474 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2475
2476         * __ComObject.cs: Added defintion of IDispatch interface, and
2477         property. Get CLSID of supertype for creation if class not
2478         ComImport attributed (allows for inheritance of RCW).
2479         * MonoType.cs: Implement IsCOMObjectImpl.
2480
2481 2006-08-09  Atsushi Enomoto  <atsushi@ximian.com>
2482
2483         * DateTime.cs : fixed X509Certificate() case that regressed only
2484           under NET_2_0.
2485
2486 2006-08-07  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2487
2488         * Console.cs: Use correct code pages on Windows and initialize
2489           InputEncoding and OutputEncoding to the actual encodings used.
2490
2491 2006-08-05  Duncan Mak  <duncan@novell.com>
2492
2493         * Char.cs (TryParse): Implemented missing 2.0 method, which fixed
2494         bug #79007.
2495
2496 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2497
2498         * __ComObject.cs: Added support for marshalling objects.
2499         
2500 2006-07-24  Atsushi Enomoto  <atsushi@ximian.com>
2501
2502         * Char.cs : implemented utf32 conversion methods thus fixed bug #78856.
2503
2504 2006-07-19  John Luke  <john.luke@gmail.com>
2505
2506         * TermInfoDriver.cs: switch order of alt and control when
2507         calling new ConsoleKeyInfo()
2508
2509 2006-07-19  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2510
2511         * String.cs: Improve CreateString () performance when length is zero.
2512
2513 2006-07-18  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2514
2515         * String.cs: Added CreateString () methods. Constructors with matching
2516           argument list are redirected to these methods that improves
2517           performance as well as fixes bug #78703.
2518
2519 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2520
2521         * __ComObject.cs: Begin implementing COM Interop.
2522         * Environment.cs: Increment corlib version.
2523         
2524 2006-07-12  Zoltan Varga  <vargaz@gmail.com>
2525
2526         * Delegate.cs (DynamicInvokeImpl): Add support for bound delegates in Net 2.0.
2527
2528 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2529
2530         * Double.cs (Parse): Fix handling of inner whitespace.
2531
2532 2006-07-09  Zoltan Varga  <vargaz@gmail.com>
2533
2534         * Int32.cs: Fix a warning.
2535
2536 2006-07-07  Atsushi Enomoto  <atsushi@ximian.com>
2537
2538         * TimeZone.cs : consider DateTimeKind in ToLocalTime() and 
2539           ToUniversalTime(). Fixed bug #78784. Patch by Thong Nguyen.
2540         * DateTime.cs : DateTimeKind for UtcNow should be Utc.
2541
2542 2006-06-28  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2543
2544         * Char.cs: Implemented IsHighSurrogate and IsLowSurrogate methods.
2545
2546 2006-06-27  Atsushi Enomoto  <atsushi@ximian.com>
2547
2548         * Double.cs : don't throw Exception in TryParse() for 'E'.
2549           Fixed bug #78546.
2550
2551 2006-06-20  Jb Evain  <jbevain@gmail.com>
2552
2553         * Math.cs: implement Math.Truncate.
2554
2555 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
2556
2557         * DateTime.cs :
2558           Another lame win32 dependent pattern. Fixed bug #78618.
2559
2560 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2561
2562         * Environment.cs: Implement Set/GetEnvironmentVariable for User/Machine.        
2563
2564 2006-06-07  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2565
2566         * Environment.cs: Use Consts.FxFileVersion for Environment.Version
2567           as Consts.RuntimeVersion was removed.
2568
2569 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2570
2571         * Variant.cs: Added.
2572         * Environment.cs: Incremented corlib version since adding Variant.      
2573         
2574 2006-06-01  Raja R Harinath  <rharinath@novell.com>
2575
2576         * Nullable.cs (operator==, operator!=): Remove.
2577
2578 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2579
2580         * MonoDummy.cs: Removed as it is no longer needed.
2581
2582         * Environment.cs: Bump corlib version.
2583         
2584         * Environment.cs: Revert the last change.
2585         
2586         * Environment.cs: Bump corlib version.
2587
2588         * MonoAsyncCall.cs: New file.
2589
2590 2006-05-30  Gert Driesen  <drieseng@users.sourceforge.net>
2591
2592         * Char.cs: Removed duplicate (explicit) interface implementation.
2593         * String.cs: Removed duplicate (explicit) interface implemenation.
2594         * MulticastDelegate.cs: Fixed API mismatches.
2595
2596 2006-05-29 Paolo Molaro <lupus@ximian.com>
2597
2598         * String.cs: make sure that the chars truncated by a stringbuilder
2599         are zeroed.
2600
2601 2006-05-29  Martin Baulig  <martin@ximian.com>
2602
2603         * Exception.cs
2604         (Exception.StackTrace): Use the new stack trace format which is
2605         very similar to the one of MS.NET - method name goes first,
2606         file / line number last and in the method name, we separate class
2607         and method name by `.'.
2608
2609         * Environment.cs
2610         (Environment.StackTrace): Enable line-number information.
2611
2612 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
2613
2614         * DateTime.cs :
2615           Implement 2.0 TryParseExact(). Patch by Seo Sanghyeon.
2616
2617 2006-05-17  Kazuki Oikawa  <kazuki@panicode.com>
2618
2619         * Array.cs : added internal sort method used
2620           in System.Collections.Generics.List<T>.Sort(Comparison<T>).
2621
2622 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2623
2624         * Environment.cs: Bump corlib version.
2625
2626 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2627
2628         * MonoType.cs (GetMethodImpl): Fix a warning.
2629
2630 2006-05-08  Atsushi Enomoto  <atsushi@ximian.com>
2631
2632         * ArrayTest.cs : use proper comparer in IndexOf() and LastIndexOf().
2633           Patch by Kazuki Oikawa. Fixed bug #77277.
2634
2635 2006-05-07  Zoltan Varga  <vargaz@gmail.com>
2636
2637         * Nullable.cs (Equals): Fix comparison to null. Fixes #78322.
2638
2639 2006-04-28  Atsushi Enomoto  <atsushi@ximian.com>
2640
2641         * Nullable.cs : updated Nullable<T> API to 2.0 RTM.
2642
2643 2006-04-26  Atsushi Enomoto  <atsushi@ximian.com>
2644
2645         * Double.cs : (Parse) handle currency symbol when
2646           AllowCurrencySymbol is passed as part of the style. Patch by
2647           nede@aliquant.com, modified to eliminate redundant Substring().
2648           This fixes bug #77721.
2649
2650 2006-04-26  Atsushi Enomoto  <atsushi@ximian.com>
2651
2652         * MonoType.cs : (GetMethod) when zero-length type[] is explicitly
2653           passed, don't return methods with some arguments. Fixed bug #77367.
2654
2655 2006-04-21  Gert Driesen  <drieseng@users.souceforge.net>
2656
2657         * Enum.cs: Provide meaningful message when type of passed in value
2658         does not match enum type.
2659
2660 2006-04-19  Raja R Harinath  <rharinath@novell.com>
2661
2662         * Char.cs (Equals): Don't access 'm_value' field of other
2663         instances.  Cast directly to 'char'.
2664
2665 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
2666
2667         * DateTime.cs : implement SpecifyKind(). Patch by Thong Nguyen.
2668
2669 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
2670
2671         * NumberFormatter.cs : general performance improvements. Avoid 
2672           extraneous evaluation for simple formatting. Details are seen in 
2673           bug #77792. Patch by Kazuki Oikawa.
2674
2675 2006-04-13  Atsushi Enomoto  <atsushi@ximian.com>
2676
2677         * DateTime.cs : implement IsDaylightSavingTime().
2678           Patch by Seo Sanghyeon <tinuviel@sparcs.kaist.ac.kr>.
2679
2680 2006-04-04  Atsushi Enomoto  <atsushi@ximian.com>
2681
2682         * Array.cs :
2683           added some more [ReliabilityContract].
2684           removed some [CLSCompliant].
2685           renamed generic method parameter names.
2686
2687 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
2688
2689         * Environment.cs (SetEnvironmentVariable): Implement.
2690
2691 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
2692
2693         * Array.cs : oops, the last change caused regression. The array must
2694           be transparent to ReadOnlyCollection, not create another list.
2695
2696 2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>
2697
2698         * Array.cs : AsReadOnly<T>() in RTM returns ReadOnlyCollection<T>.
2699           Thus removed ReadOnlyArray<T> and ReadOnlyArrayEnumerator<T>.
2700           In 2.0 some members became non-virtual.
2701
2702 2006-03-23  Atsushi Enomoto  <atsushi@ximian.com>
2703
2704         * String.cs : oops, NET_2_0.
2705
2706 2006-03-23  Atsushi Enomoto  <atsushi@ximian.com>
2707
2708         * String.cs : added new IndexOf() and LastIndexOf() overloads, and
2709           IEnumerable<char>.GetEnumerator().
2710
2711 2006-03-21  KornĂ©l PĂ¡l  <kornelpal@gmail.com>
2712
2713         * String.cs: Make memcpy4 private as it is a helper method.
2714           Make memcpy internal to can be used from UnicodeEncoding.
2715
2716 2006-03-19  Marek Safar  <marek.safar@seznam.cz>
2717
2718         * Nullable.cs (Compare, Equals): Added constrain as gmcs now correctly
2719         reports an error here.
2720
2721 2006-03-16  Atsushi Enomoto  <atsushi@ximian.com>
2722
2723         * Double.cs : (Parse) reject String.Empty.
2724
2725 Wed Mar 15 16:30:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2726
2727         * LocalDataStoreSlot.cs: implement as index in an array.
2728         Implemented finalizer and allow it to remove the data stored
2729         in the slot.
2730
2731 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
2732
2733         * Environment.cs: Bump corlib version.
2734
2735 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
2736
2737         * MonoCustomAttrs.cs (IsDefined): Avoid a runtime assert if a type
2738         overwrites GetCustomAttributes () but not IsDefined ().
2739
2740 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
2741
2742         * Environment.cs: Bumped corlib version to 48 (due to r57532)
2743
2744 2006-03-07  Martin Baulig  <martin@ximian.com>
2745
2746         * String.cs (String.FormatHelper): Try getting an `ICustomFormatter'
2747         from the `provider' if possible.
2748
2749 2006-02-26  Gert Driesen  <drieseng@users.souceforge.net>
2750
2751         * DecimalFormatter.cs: Removed obsolete class, as it has been replaced
2752         by NumberFormatter.
2753         * DoubleFormatter.cs: Same.
2754         * SingleFormatter.cs: Same.
2755
2756 2006-02-21  Marek Safar  <marek.safar@seznam.cz>
2757
2758         * String.cs (Equals): Optimized for speed.
2759
2760 2006-02-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2761
2762         * TermInfoDriver.cs: patch by Mike Hull that fixes bug #77518.
2763
2764 Mon Feb 20 11:19:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2765
2766         * MonoType.cs: patch from Joachim Ante <joe@otee.dk> to
2767         improve error messages.
2768
2769 2006-02-15  Martin Baulig  <martin@ximian.com>
2770
2771         * Type.cs (Type.IsGenericInstance): Removed.
2772
2773 2006-02-14  Ankit Jain  <jankit@novell.com>
2774             Raja R Harinath  <rharinath@novell.com>
2775  
2776         * ArraySegment.cs (.ctor): Fix bounds check. Rename param 'length' to
2777         'count'.
2778
2779 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
2780
2781         * TermInfoDriver.cs (CreateKeyInfoFromInt): Fix handling of tab and its
2782         friends.
2783         
2784         * TermInfoDriver.cs (GetWindowDimensions): Obtain the exact terminal
2785         size using an icall.
2786         (GetCursorPosition): Convert the row and column to 0 based indexing. 
2787         Also fix reading of large values.
2788         (CreateKeyInfoFromInt): Convert LF to ConsoleKey.Enter.
2789
2790         * ConsoleDriver.cs (GetTtySize): New icall.
2791
2792 2006-02-10  Zoltan Varga  <vargaz@gmail.com>
2793
2794         * Array.cs: Fix some methods which previously returned Nullable<T>.
2795
2796         * Nullable.cs: Add T: struct constraint and fix constructor.
2797
2798 Fri Feb 3 11:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2799
2800         * String.cs: changed StartsWith/EndsWith to faster versions.
2801
2802 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2803
2804         * String.cs: implement 2.0 StartsWith and EndsWith new overloads. Based
2805         on a patch by Thong Nguyen.
2806
2807 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
2808
2809         * String.cs: Implement one of the new net 2.0 Split methods.
2810
2811 2006-01-31  Atsushi Enomoto  <atsushi@ximian.com>
2812
2813         * String.cs : (LastIndexOf) Fixed bug #77412. It should not expect
2814           that value length is bigger than its index.
2815
2816 2006-01-27  Zoltan Varga  <vargaz@gmail.com>
2817
2818         * DateTime.cs: Add some 2.0 methods and properties.
2819
2820 2006-01-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2821
2822         * Console.cs: if InternalCodePage returns -1, use the default encoding.
2823         Also match the UTF8 one properly. Patch by wall_john@sohu.com.
2824
2825 2006-01-19  Atsushi Enomoto  <atsushi@ximian.com>
2826
2827         * ModuleHandle.cs : GetPEKind() is not public in 2.0 RTM.
2828
2829 2006-01-16  Alp Toker  <alp@atoker.com>
2830
2831         * TimeSpan.cs: Simple implementation of NET 2.0 TryParse() using
2832         try/catch
2833
2834 2006-01-05  Raja R Harinath  <rharinath@novell.com>
2835
2836         Fix regressions introduced by the fix to #71300.
2837         * Activator.cs (CreateInstance): Use Binder.SelectMethod instead
2838         of home-grown FindBestCtor.
2839         (FindBestCtor): Delete.
2840
2841 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
2842
2843         * Nullable.cs: Update to Net 2.0 RTM.
2844         
2845         * Nullable.cs: Add comments about runtime dependencies on the layout of
2846         this type.
2847
2848 2006-01-02  Sebastien Pouliot  <sebastien@ximian.com>
2849
2850         * Activator.cs: Now find the best ctor when null are used for 
2851         paramaters. Fix bug #71300. Added checks for specific types (void,
2852         TypedReference, ArgIterator and RuntimeArgumentHandle).
2853         * Console.cs: Re-use Environment logic to detect Windows.
2854         * Type.cs: Re-applied r45150 as the real bug was in Activator.
2855
2856 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
2857
2858         * Activator.cs: Add a 'params' to one of the CreateInstance overloads.
2859
2860         * RuntimeTypeHandle.cs RuntimeMethodHandle.cs RuntimeFieldHandle.cs:
2861         Add == and != operators.
2862
2863 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
2864
2865         * Environment.cs: Bump corlib version to 46.
2866         * TimeZone.cs: Partial fix for #76094. Added [Serializable] attribute 
2867         and renamed internal CurrentTimeZone class to CurrentSystemTimeZone 
2868         (like MS). This allows serialization roundtrip to work in Mono but 
2869         there's still an issue when deserializing a stream from MS. 
2870
2871 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com> 
2872  
2873         * NumberFormatter.cs: Fixed rounding for float and the string output
2874         now includes all the precision (not counting preceding zeros). This
2875         fix the DecimalTest.TestConstructSingleRounding_NotWorking test cases.
2876
2877 2005-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
2878  
2879         * Array.cs: Fixed Sort<T> with IComparable (generic or not) bug #77039
2880
2881 2005-12-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2882
2883         * Array.cs: Added the Sort<T> methods (generics). 
2884
2885 2005-12-19  Sebastien Pouliot  <sebastien@ximian.com> 
2886  
2887         * Array.cs: Fixed BinarySearch when the array is empty (#77030). Added
2888         some null check which throws ArgumentNullException under 2.0.
2889
2890 2005-12-15  Sebastien Pouliot  <sebastien@ximian.com>
2891
2892         * DateTime.cs: Added MonoTODO to ctor accepting a Calandar instance.
2893         * Double.cs: Under 2.0 throw a ArgumentException when parsing with
2894          NumberStyles.AllowHexSpecifier. Partial fix for #72221. Added the
2895         second, simpler, TryParse method (2.0).
2896         * Single.cs: Added the TryParse methods for 2.0.
2897
2898 2005-12-15  Raja R Harinath  <rharinath@novell.com>
2899
2900         * Type.cs (IsGenericType): Make virtual.
2901
2902 2005-12-08  Sebastien Pouliot  <sebastien@ximian.com> 
2903
2904         * AppDomainSetup.cs: ApplicationBase throw exception on get (not on 
2905         set). New behaviour is more like MS - but most issues (unit tests)
2906         were really path issues. Fix bug #71291.
2907         * DateTime.cs: Add more information when throwing an exception in 
2908         ctor(long). Useful for debugging.
2909
2910 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
2911
2912         * Single.cs Double.cs: Fix warnings.
2913
2914 2005-12-06  Sebastien Pouliot  <sebastien@ximian.com> 
2915  
2916         * Convert.cs: ToBase64String method didn't use the option parameter so
2917         we always included new lines. Fix bug #76876.
2918
2919 2005-12-06  Sebastien Pouliot  <sebastien@ximian.com>
2920
2921         * AppDomainSetup.cs: Added missing ComVisible and removed LAMESPEC 
2922         (the docs were fixed).
2923         * NumberFormatter.cs: Fixed the "NotWorking" case where 1.15 was 
2924         misrounded compared to MS implementation. Extra care is required when
2925         dealing with the extra 2 digits information (e.g. double precision is
2926         15 digits but 17 are kept - for a reason ;-)
2927
2928 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
2929
2930         * Environment.cs: Bump version
2931
2932         * Nullable.cs: New Box and Unbox methods for the jit
2933
2934 2004-12-05  Peter Dennis Bartok <pbartok@novell.com>
2935
2936         * Enum.cs: Properly handle "No bits set" case even if the sorted numbers
2937           list does not have enum value 0 as the first item. Fixes #76921
2938
2939 2005-12-05  Sebastien Pouliot  <sebastien@ximian.com>
2940
2941         * AppDomain.cs: CreateComInstanceFrom isn't static in any profile.
2942
2943 Mon Dec 5 15:14:59 CET 2005 Paolo Molaro <lupus@ximian.com>
2944
2945         * Double.cs: remove unused icall.
2946         * BitConverter.cs: handle double binary format on ARM FPA.
2947
2948 2005-12-02  Alp Toker  <alp@atoker.com>
2949
2950         * MonoType.cs:
2951         * Type.cs: DeclaringMethod should return MethodBase, not MethodInfo
2952
2953 2005-12-02  Alp Toker  <alp@atoker.com>
2954
2955         * AppDomain.cs: ReflectionOnlyPreBindAssemblyResolve renamed to
2956         ReflectionOnlyAssemblyResolve in 2.0 final
2957
2958 2005-12-01  Alp Toker  <alp@atoker.com>
2959
2960         * String.cs: Add static and non-static Equals(... StringComparison) for
2961         2.0.
2962
2963 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2964
2965         * TermInfoDriver.cs: special case for the escape key. Fixes bug #76781.
2966
2967 2005-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2968
2969         * TermInfoDriver.cs: if the cursor_address capability contains a %i, we
2970         have to add 1 to x and y when setting the cursor position.
2971         Fixes bug #76856.
2972
2973         * Convert.cs: remove unused variables.
2974
2975 Wed Nov 30 12:14:20 EST 2005 Paolo Molaro <lupus@ximian.com>
2976
2977         * NumberFormatter.cs: work around arch-specific ulong cast behaviour
2978         with large numbers.
2979
2980 Tue Nov 29 05:38:37 EST 2005 Paolo Molaro <lupus@ximian.com>
2981
2982         * Convert.cs: fix endianess issue when converting to base-8
2983         format. All the base code would need a rewrite for efficience.
2984
2985 2005-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2986
2987         * String.cs: Added support for Compare(... StringComparison) in 2.0.
2988
2989 2005-11-25  Alp Toker  <alp@atoker.com>
2990
2991         * Type.cs (IsVisible): New 2.0 property, implemented recursively.
2992
2993 2005-11-17  Dick Porter  <dick@ximian.com>
2994
2995         * Environment.cs: Incremented corlib version
2996
2997 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2998
2999         * Int32.cs, UInt32.cs, Int16.cs, UInt16.cs, Int64.cs,
3000         UInt64.cs, Byte.cs, SByte.cs, Double.cs : Modify internal Parse
3001         methods to return the exception as an out parameter,
3002         instead of throwing it. This will be of special help
3003         to TryParse methods.
3004         * Environment.cs: Update corlib version to 42.
3005         
3006 2005-11-14  Raja R Harinath  <rharinath@novell.com>
3007
3008         * EventHandler.cs (EventHandler<TEventArgs>): Rename from EventHandler<T>.
3009
3010 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
3011
3012         * Type.cs (GetPseudoCustomAttributes): Return ComImportAttribute as well.
3013
3014 2005-11-11  Lluis Sanchez Gual  <lluis@novell.com>
3015
3016         * TimeZone.cs: Removed incorrect double-check lock and unneeded
3017         hashtable access.
3018
3019 2005-11-11  Marek Safar  <marek.safar@seznam.cz>
3020
3021         * Type.cs: IsNested implemented, signature fixes.
3022
3023 2005-11-11  Raja R Harinath  <rharinath@novell.com>
3024
3025         * Array.cs (Resize<T>) [2-argument variant]: Fix nullref.
3026
3027 2005-11-10  Zoltan Varga  <vargaz@gmail.com>
3028
3029         * Array.cs (Resize<T>): New internal method which takes a 'length' argument
3030         as well to avoid copying the whole array.
3031
3032 2005-11-09  Atsushi Enomoto  <atsushi@ximian.com>
3033
3034         * Int64.cs : ditto for long.
3035
3036 2005-11-09  Atsushi Enomoto  <atsushi@ximian.com>
3037
3038         * Int32.cs : Parse("2147483648", format_provider) should be rejected.
3039
3040 2005-11-09  Sebastien Pouliot  <sebastien@ximian.com>
3041
3042         * AttributeTargets.cs: Added [ComVisible (true)] and [Serializable] 
3043         in 2.0 profile.
3044         * Base64FormattingOptions.cs: Added missing [Flags] attribute.
3045         * ConsoleKey.cs: Removed old BackSpace and WhiteSpace (they were 
3046         already replaced by Backspace and Whitespace)
3047         * DateTime.cs: Moved DayOfWeek enum to it's own file.
3048         * DateTimeKind.cs: New (2.0) enum.
3049         * DayOfWeek.cs: New file (extracted from DateTime.cs).
3050         * DomainManagerInitializationFlags.cs: Removed extra [Serializable].
3051         * EnvironmentVariableTarget.cs: Added [ComVisible (true)] and fixed 
3052         values (-1 to all of them).
3053         *  Exception.cs: Added a LinkDemand for SerializationFormatter on
3054         GetObjectData method.
3055         *  LoaderOptimization.cs: Added [ComVisible (true)] and [Serializable] 
3056         on enum and added [Obsolete] to DomainMask and DisallowBindings in 2.0
3057         profile.
3058         * PlatformID.cs: Added [ComVisible (true)] and [Serializable] in 2.0 
3059         profile.
3060         * StringComparison.cs: New (2.0) enum (needed for Uri).
3061         * TermInfoDriver.cs: Fixed BackSpace -> Backspace (see ConsoleKey.cs).
3062         * TypeCode.cs: Added [ComVisible (true)] and [Serializable] in 2.0 
3063         profile.
3064
3065 2005-11-08  Atsushi Enomoto  <atsushi@ximian.com>
3066
3067         * Type.cs : I forgot to mention, some '(' were missing in the
3068           improved patch ;-)
3069
3070 2005-11-08  Zoltan Varga  <vargaz@freemail.hu>
3071
3072         * Type.cs (GetPseudoCustomAttributes): Check for TypeAttributes.Serializable instead of
3073         IsSerializable property, since the latter returns true for delegates/enums.
3074
3075 2005-11-05  KornĂ©l PĂ¡l  <kornelpal@hotmail.com>
3076
3077         * Environment.cs: Use Consts.RuntimeVersion as Environment.Version that
3078           makes maintenance easier.
3079
3080 2005-10-24  Martin Baulig  <martin@ximian.com>
3081
3082         * Type.cs (Type.IsGenericTypeDefinition): Make this virtual.
3083
3084 2005-10-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3085
3086         * String.cs: fix bound checkings for LastIndexOfAny. Closes bug #76519.
3087
3088 2005-10-20  Raja R Harinath  <rharinath@novell.com>
3089
3090         * Array.cs (Swapper): Remove NET_2_0 guards from nested declaration.
3091
3092 2005-10-16  Michal Moskal  <malekith@nemerle.org>
3093
3094        * TermInfoDriver.cs: Call Init () in Background/ForegroundColor.
3095
3096 2005-10-14  Atsushi Enomoto  <atsushi@ximian.com>
3097
3098         * DateTime.cs : another crappy Windows dependent format.
3099
3100 2005-10-14  Ben Maurer  <bmaurer@ximian.com>
3101
3102         * DateTime.cs: Speed up when parsing date time objects by not
3103         duplicating cultureinfo arrays.
3104
3105 2005-10-13  Zoltan Varga  <vargaz@gmail.com>
3106
3107         * Type.cs (GetTypeCode): Applied patch from 
3108         Mike Welham <mwelham@gmail.com>. Return TypeCode.Empty when null is
3109         passed in.
3110
3111 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
3112
3113         * Delegate.cs: Add support for delegate covariance and contravariance
3114         from net 2.0.
3115
3116 2005-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3117
3118         * StringComparer.cs : (OrdinalIgnoreCaseComparer.Equals()) reverse.
3119
3120 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
3121
3122         * String.cs (ParseFormatSpecifier): Fix skipping of whitespace. Fixes
3123         #76204.
3124
3125 2005-09-23  Miguel de Icaza  <miguel@novell.com>
3126
3127         * Decimal.cs: Fix typo, patch from Tomas Kukol <tomas.kukol@gmail.com>
3128
3129 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
3130
3131         * MonoCustomAttrs.cs (GetCustomAttributesInternal): Add
3132         attributeType parameter.
3133         (IsDefined): New icall.
3134
3135         * MonoCustomAttrs.cs: Avoid instantiating all custom attrs of an
3136         object when only a specific attribute type is requested. Fixes #76062.
3137
3138         * Environment.cs: Bump corlib version.
3139
3140 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
3141
3142         * TypeLoadException.cs MissingMethodException.cs MissingFieldException.cs: Add new ctors called by the runtime. Improve Message property.
3143
3144 2005-09-14  Atsushi Enomoto  <atsushi@ximian.com>
3145
3146         * DateTime.cs : (_DoParse) don't check ticks range before computing
3147           the actual value. Fixed bug #76082.
3148
3149 2005-09-14  Atsushi Enomoto  <atsushi@ximian.com>
3150
3151         * TimeZone.cs : When the target DateTime is in the range of
3152           DST end to DST + delta, don't adjust UtcOffset gap between that of
3153           DST and that of STD. This should fix bug #75985.
3154
3155 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
3156
3157         * TimeZone.cs, DateTime.cs :
3158           - ToLocalTime() and ToUniversalTime() are moved to TimeZone.
3159           - Added more COM patterns. Patch by Ankit Jain. Fixed bug #72132.
3160           - use ToLocalTime() and don't depend on the own offset computation.
3161             Parse() with 'Z' pattern is closer to correct value on switching
3162             Daylight Saving Time. See bug #75985.
3163
3164 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
3165
3166         * DateTime.cs : (DoParse) DateTimeStyles.AdjustToUniversal was not
3167           handled as expected and it kept time value as local one.
3168           Patch by Brion Vibber. Fixed bug #75995.
3169
3170 2005-09-06  Atsushi Enomoto  <atsushi@ximian.com>
3171
3172         * DateTime.cs : Literal escape (\) was not checking format as
3173           expected. Fixed bug #75213.
3174
3175 2005-09-05  Miguel de Icaza  <miguel@novell.com>
3176
3177         * MonoType.cs: Patch from Jonathan Chambers to implement
3178         Type.GUID. 
3179
3180 2005-09-05  Martin Baulig  <martin@ximian.com>
3181
3182         Reflect latest API changes in the August CTP.
3183
3184         * Type.cs (Type.HasGenericArguments): Removed.
3185         (Type.BindGenericParameters): Renamed to MakeGenericType().
3186
3187 2005-09-01  Atsushi Enomoto  <atsushi@ximian.com>
3188
3189         * DateTime.cs : another idiotic COM dependent format.
3190
3191 2005-09-01  KornĂ©l PĂ¡l  <kornelpal@hotmail.com>
3192
3193         * __ComObject.cs: Fixed to be internal. Removed CLSCompliant attribute.
3194         Added some comments about the class.
3195
3196 2005-08-30  Sebastien Pouliot  <sebastien@ximian.com>
3197
3198         * AppDomain.cs: Use the more concise property syntax for declarative
3199         security.
3200         * AppDomainManager.cs: Default HostSecurityManager is null.
3201
3202 2005-08-25  Atsushi Enomoto  <atsushi@ximian.com>
3203
3204         * NumberFormatter.cs : eliminate non-ASCII character.
3205
3206 2005-08-25  Marek Safar  <marek.safar@seznam.cz>
3207
3208         * Enum.cs: Better exception message.
3209         
3210 2005-08-21  Gert Driesen  <drieseng@users.sourceforge.net>
3211
3212         * Convert.cs: In FromBase64String, return empty byte array for zero
3213         length string. Pass bool to InternalFromBase64String to control 
3214         whether to allow a whitespace-only string.
3215         * Environment.cs: Bump corlib version.
3216
3217 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
3218
3219         * Environment.cs: Bump corlib version.
3220
3221 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
3222
3223         * Math.cs: Implement a new 2.0 Round method.
3224
3225 2005-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
3226
3227         * Convert.cs: Throw OverflowException if result is larger than
3228         ushort.MaxValue to match MS.NET. Remove commented code.
3229
3230 2005-08-17  Gert Driesen  <drieseng@users.sourceforge.net>
3231
3232         * Convert.cs: For now, do not throw OverflowException if hex prefixed
3233         value is negative for signed types (other than int64). Need to look
3234         into this further.      
3235
3236 2005-08-17  Gert Driesen  <drieseng@users.sourceforge.net>
3237
3238         * Convert.cs: Numerous fixed in overloads taking base to match 
3239         behaviour of MS.NET. Throw ArgumentOutOfRangeException is string is
3240         empty. If base is 16, 8 or 2, then throw ArgumentException if first 
3241         character is a negative sign. Throw OverflowException if hex prefixed 
3242         value is negative for signed types (other than int64) to match MS.NET. 
3243
3244 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
3245
3246         * DateTime.cs : added another COM dependent pattern (rather to describe
3247           how it works on .NET than to add the pattern itself...).
3248
3249 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
3250
3251         * DateTime.cs : added case for bug #53023.
3252
3253 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
3254
3255         * Type.cs: Add IsGenericType property from NET 2.0.
3256
3257 2005-08-10  Atsushi Enomoto  <atsushi@ximian.com>
3258
3259         * String.cs : added new StartsWith()/EndsWith() override, fixing
3260           existing EndsWith() which incorrectly assumed that both string
3261           lengths must be equivalent (they are not always equal).
3262         * StringComparer.cs : added Ordinal and OrdinalIgnoreCase.
3263
3264 2005-08-09  Zoltan Varga  <vargaz@freemail.hu>
3265
3266         * String.cs: Implement Split(String[]) methods.
3267
3268 2005-08-09  Miguel de Icaza  <miguel@novell.com>
3269
3270         * AppDomainSetup.cs: Full-pathization of the appBase should only
3271         be done on Windows, the ":" condition never applied to Linux.
3272
3273         * ConsoleKey.cs: Include a few aliases for a few values that were
3274         introduced recently.
3275
3276 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3277
3278         * ConsoleKey.cs: added Backspace, which has the same value as BackSpace.
3279         Fixes bug #75697.
3280
3281 2005-08-08  Atsushi Enomoto  <atsushi@ximian.com>
3282
3283         * String.cs : (StartsWith) compared string lengths are not always the
3284           same in culture-sensitive comparison.
3285
3286 2005-08-05  Gert Driesen  <drieseng@users.sourceforge.net>
3287
3288         * Array.cs: Changed protected ctor to private. Fixes API compatibility
3289         with MS.NET.
3290         * RuntimeFieldHandle.cs: Equals methods and GetHashCode should only
3291         be exposed in 2.0 profile.
3292         * RuntimeMethodHandle.cs: Equals methods and GetHashCode should only
3293         be exposed in 2.0 profile.
3294         * RuntimeTypeHandle.cs: Equals methods and GetHashCode should only
3295         be exposed in 2.0 profile.
3296         * Type.cs: Added GetType method and implemented _Type interface.
3297         Fixes API compatibility with MS.NET.
3298
3299 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
3300
3301         * StringComparer.cs: Add generics version of string interfaces.
3302
3303 2005-07-26  Atsushi Enomoto  <atsushi@ximian.com>
3304
3305         * StringComparer.cs : implemented StringCultureComparer.GetHashCode().
3306
3307 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
3308
3309         * StringSplitOptions.cs MidpointRounding.cs: New files.
3310
3311         * String.cs Math.cs: Add stubs for some new 2.0 APIs.
3312
3313 2005-07-26  Marek Safar  <marek.safar@seznam.cz>
3314
3315         * StringComparer.cs: New file.
3316
3317 2005-07-26  Raja R Harinath  <harinath@gmail.com>
3318
3319         * Enum.cs (GetValue): Make private.  Return an ulong.
3320         (Parse): Tighten scope of couple of variables.  Use ulong when
3321         twiddling bits.
3322
3323 2005-07-25  Raja R Harinath  <rharinath@novell.com>
3324
3325         * Enum.cs (FindName, GetValue): New.  Carved out of ...
3326         (Parse): ... this.  Refactor and simplify code.  Avoid incurring
3327         exceptions when parsing names.  Avoid allocating arrays unless
3328         necessary.  Avoid conversion of an enumeration constant to its own
3329         type.  (Incorporates ideas from a patch by Gonzalo Paniagua Javier.)
3330
3331 2005-07-13  Lluis Sanchez Gual  <lluis@novell.com>
3332
3333         * MarshalByRefObject.cs: GetLifetimeService() should be virtual.
3334         Fixes bug #75527.
3335
3336 2005-07-13  Miguel de Icaza  <miguel@novell.com>
3337
3338         * Array.cs: Patch from rodrigobamboo@gmail.com that fixes the
3339         signature for GetValue and SetValue to make the long [] argument
3340         be a params argument. 
3341
3342 2005-07-11  Pedro MartĂ­nez JuliĂ¡  <pedromj@gmail.com>
3343
3344         * Convert.cs: Fix the bug when Convert.ChangeType was using
3345         NumberFormatInfo instead of DateTimeFormatInfo when the type to
3346         change is a DateTime.
3347
3348 2005-07-11  Martin Baulig  <martin@ximian.com>
3349
3350         * Array.cs: Use Type.Equals() instead of `==' to compare type
3351         parameters.     
3352
3353 2005-07-10  Kamil Skalski <nazgul@nemerle.org>
3354
3355         * Type.cs: Mark BindGenericParameters as deprecated. Use
3356         MakeGenericType as default implementation with updated signature.
3357
3358 2005-07-09  Zoltan Varga  <vargaz@freemail.hu>
3359
3360         * Attribute.cs (IsDefined): Fix IsDefined for ParameterInfo's. Fixes
3361         #75514.
3362
3363 2005-07-05  Lluis Sanchez Gual  <lluis@novell.com>
3364
3365         * DelegateSerializationHolder.cs: When the deserialized target is
3366         a proxy, call IsInstanceOfType to force the proxy to load the
3367         real type of the remote object. This is needed to make sure that
3368         subsequent calls to GetType() return the expected type. This fixes
3369         bug #75447.
3370
3371 2005-07-03  Ben Maurer  <bmaurer@ximian.com>
3372
3373         * OperatingSystem.cs: patch from Aleksandar Dezelin to fix
3374         serialization.
3375
3376 2005-06-30  Sebastien Pouliot  <sebastien@ximian.com> 
3377
3378         * Guid.cs: Avoid code duplication between overriden methods (new in 
3379         2.0). Avoid exception processing when possible. Renamed parameters to
3380         match the framework. Added ComVisible to NET_2_0.
3381
3382 2005-06-28  Elliott Draper  <el@eldiablo.co.uk>
3383
3384         * Activator.cs: This implements the generic Activator.CreateInstance<T>()
3385         function for NET_2_0. It's full signature is:
3386                 public static T CreateInstance<T>();
3387
3388 2005-06-28  Lluis Sanchez Gual  <lluis@novell.com>
3389
3390         * Decimal.cs: Renamed internal fields for the sake of serialization
3391         interoperability with MS.NET.
3392         * Exception.cs: In the StackTrace property, return the stack trace
3393         if it has a value, even if the exception has not been thrown
3394         (it may have been deserialized).
3395
3396 2005-06-28  Martin Baulig  <martin@ximian.com>
3397
3398         * Array.cs (Array.InternalArray<T>): New nested class; derives
3399         from Array.  This is now used by the runtime for arrays; fixes #74953.
3400
3401 2005-06-27  Atsushi Enomoto  <atsushi@ximian.com>
3402
3403         * String.cs : added some extra whitespace characters for Trim().
3404           Fixed bug #75259.
3405
3406 2005-06-13  Michal Moskal <malekith@nemerle.org>
3407         
3408         * MonoType.cs: Don't use MethodHandle in GetMethod/GetConstructor,
3409         since it now throws on MethodBuilders. Don't use FieldHandle in
3410         GetField (throws on FieldBuilder) - just use the name.
3411
3412 2005-06-13  Martin Baulig  <martin@ximian.com>
3413
3414         * MonoType.cs
3415         (MonoType.getFullName): Added `bool assembly_qualified' argument.
3416         (MonoType.AssemblyQualifiedName): The interncall now adds the
3417         assembly name, so we don't need to do it here.
3418         (MonoType.FullName): Use the new getFullName() API.
3419
3420 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
3421
3422         * Char.cs: ToLowerInvariant and ToUpperInvariant are now public in 
3423         NET_2_0. Added "new" white char and ComVisible for 2.0.
3424
3425 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3426
3427         * Convert.cs: FromBase64String and FromBase64CharArray are now internal
3428         calls to avoid extra allocations.
3429
3430 2005-06-09  Kamil Skalski <nazgul@nemerle.org>
3431
3432         * Type.cs: Add MakeGenericType method form .NET 2.0 beta 2 API
3433
3434         * Type.cs MonoType.cs: Add internal virtual
3435         Get{Method,Constructor,Field} for obtaining instanciated *Info objects
3436         from non-instanciated counterparts
3437
3438 2005-06-09  Zoltan Varga  <vargaz@freemail.hu>
3439
3440         * ModuleHandle RuntimeMethodHandle.cs RuntimeTypeHandle.cs RuntimeFieldHandle.cs RuntimeArgumentHandle.cs: Add missing 2.0 attributes.
3441
3442 2005-06-08  Zoltan Varga  <vargaz@freemail.hu>
3443
3444         * Type.cs: Add missing 2.0 attributes.
3445
3446 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3447
3448         * MonoCustomAttrs.cs: Added GetCustomAttributesDataInternal icall, and
3449         also internal method GetCustomAttributesData, used by 
3450         System.Reflection.CustomAttributeData.
3451         
3452 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
3453
3454         * Activator.cs: Added  _Activator interface (and members) for 1.1 and
3455         missing attributes (for both 1.1 and 2.0).
3456         * String.cs: Made internal To[Lower|Upper]Invariant methods public for
3457         2.0. Reworked Trim() to skip a useless call. Added missing attribute
3458         for 2.0.
3459         * Type.cs: Added  _Type, _MemberInfo interfaces (1.1/2.0). Added 
3460         missing attribute for 2.0. Hided some public/protected methods.
3461
3462 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
3463
3464         * ModuleHandle.cs: Update after PortableExecutableKinds name change.
3465
3466 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
3467
3468         * _AppDomain.cs: Added new members in the interface (added in 1.1 SP1)
3469         * AppDomain.cs: Added new members from _AppDomain interface.
3470         * AppDomainManager.cs: Fixed flags and added attributes.
3471         * DomainManagerInitializationFlags.cs: The flag has been renamed to 
3472         AppDomainManagerInitializationOptions in beta2.
3473
3474 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
3475
3476         * Type.cs MonoCustomAttrs.cs: Return SerializableAttribute for types as well.
3477
3478 2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>
3479
3480         * Exception.cs: Implements _Exception only for 2.0.
3481
3482 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
3483
3484         * GC.cs: Fix build.
3485         
3486         * GC.cs UnhandledExceptionEventArgs.cs IntPtr.cs RuntimeFieldHandle.cs 
3487           String.cs Object.cs Math.cs RuntimeMethodHandle.cs ModuleHandle.cs 
3488           RuntimeTypeHandle.cs AppDomain.cs: Add some missing 2.0 methods/attributes.
3489
3490 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3491
3492         * Environment.cs:
3493         * AppDomain.cs: if the assembly is loaded from a byte array, Location
3494         returns "". Fixes bug #74958.
3495
3496 2005-06-04  Ben Maurer  <bmaurer@ximian.com>
3497
3498         * *.cs: More 2.0 API fixups
3499
3500         * *.cs: In beta 2, generics are no longer non-cls-compliant.
3501
3502 2005-06-05  Kazuki Oikawa  <kazuki@panicode.com>
3503
3504         * NumberFormatter.cs: Fixed the output of 0.ToString("00.00E00")
3505         that was different from MSFT.
3506         * String.cs: Fixed IndexOfAny thrown an exception
3507         when startIndex of arguments equals Length. (Closes bug #75083.)
3508
3509         * Decimal.cs: Changed to use NumberFormatter in ToString.
3510         * NumberFormatter.cs: Implemented decimal formatter.
3511
3512 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3513
3514         * Type.cs: reverted wrong fix for bug #71300 in r45150. This makes SSL
3515         support in System.Net work again.
3516
3517 2005-06-01  Ben Maurer  <bmaurer@ximian.com>
3518
3519         * CharEnumerator.cs: add IEnumerable <char> support
3520
3521 2005-05-30  Sebastien Pouliot  <sebastien@ximian.com>
3522
3523         * Activator.cs: Added missing validation on parameters.
3524
3525 2005-05-28  Ben Maurer  <bmaurer@ximian.com>
3526
3527         * Type.cs: Check that the arguments of the `types' array are
3528         non-null. Fixes bug 71300
3529
3530 2005-05-28  Sebastien Pouliot  <sebastien@ximian.com>
3531
3532         * AppDomainSetup.cs: Added new 2,0 constructors and the 
3533         ActivationArguments property.
3534         * AppDomainManager.cs: Added using System.Runtime.Hosting as it is the
3535         new location for the ApplicationActivator class.
3536         * ApplicationActivator.cs: Moved to System.Runtime.Hosting namespace.
3537
3538 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
3539
3540         * Environment.cs: bump corlib version for bug #75060.
3541
3542 2005-05-27  Raja R Harinath  <rharinath@novell.com>
3543
3544         * Environment.cs (ExpandEnvironmentVariables): Rewrite
3545         sb.Append (s.SubString (a, b)) to sb.Append (s, a, b).
3546         * String.cs (FormatHelper): Rewrite sb.Append (s.SubString (a)) to
3547         sb.Append (s, a, s.Length - a).  Avoid allocating 'pad' string --
3548         StringBuilder has an appropriate Append overload.
3549
3550 2005-05-26  Zoltan Varga  <vargaz@freemail.hu>
3551
3552         * Type.cs (IsEnum): Special case EnumBuilder here.
3553
3554 2005-05-26  Sebastien Pouliot  <sebastien@ximian.com>
3555
3556         * MonoType.cs: Changed call from GetName to UnprotectedGetName to
3557         allow call to work with serialization under a restrictive policy.
3558         The code path (the protected information) isn't being used.
3559
3560 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
3561
3562         * Exception.cs: Use the new StackTrace ctor.
3563
3564         * Type.cs: Improve support for user defined type subclasses.
3565
3566 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3567
3568         * DateTime.cs : Added minimum digit parameter to ParseNumber() to
3569           reject 2 digit years for "yyyy".
3570           Use GetAllDateTimePatterns() instead of constant string.
3571           Fixed bug #72788.
3572
3573 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
3574
3575         * DateTime.cs : next_not_digit prevented some valid parse.
3576           Just remove it, since now we pass max length to ParseNumber() and
3577           thus it is not needed anymore. Fixed bug 63137.
3578
3579 2005-05-24  Atsushi Enomoto  <atsushi@ximian.com>
3580
3581         * DateTime.cs : HH should not always block tt. Fixed bug #60912.
3582           Reset num after whitespace parsing.
3583           Added "M/d/yyyy HH':'mm':'ss tt" as an invariant pattern.
3584
3585 2005-05-24  Atsushi Enomoto  <atsushi@ximian.com>
3586
3587         * DateTime.cs : Allow ',' where whitespaces are allowed.
3588           Fixed bug #71289.
3589
3590 2005-05-22  Ben Maurer  <bmaurer@ximian.com>
3591
3592         * BitConverter.cs: Speed this up, fixing 74014. Patch from
3593         `Aleksandar Dezelin'.
3594
3595 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
3596
3597         * Type.cs: Add some helper methods needed by other classes.
3598
3599         * Array.cs: Improve support for user defined Type subclasses.   
3600         
3601         * Type.cs: Rename GetTypeCode icall to GetTypeCodeInternal and add a managed
3602         wrapper function, not used yet.
3603
3604         * Type.cs Array.cs: Revert this as it breaks the build.
3605
3606         * Type.cs Array.cs: Improve support for user defined Type subclasses.
3607
3608 2005-05-19  Ben Maurer  <bmaurer@ximian.com>
3609
3610         * Delegate.cs (Equals): Use `as' to protect in the case where !
3611         (obj is Delegate)
3612
3613 2005-05-19  Raja R Harinath  <rharinath@novell.com>
3614
3615         * Console.cs (Readline) [NET_2_0]: Avoid "uninitialized variable"
3616         error.
3617
3618 2005-05-19  Miguel de Icaza  <miguel@novell.com>
3619
3620         * TermInfoDriver.cs: Removed warning.
3621
3622         * Array.cs (Resize<T>, TrueForAll<T>, ConvertAll<TInput,TOutput>,
3623         FindLastIndex<T>: Parameter names are normative.        
3624         Fix coding style ("Method<T>" not "Method <T>")
3625         Throw argument exceptions per argument.
3626         
3627         (FindAll): Fix bug, actually return the values that were computed,
3628         not a short version of the original array.
3629         
3630 2005-05-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3631
3632         * Console.cs: fix error in the 2_0 side and split ReadLine in 2, one
3633         for each framework version.
3634
3635 2005-05-15  Andreas Nahr  <ClassDevelopment@A-SoftTech.com>
3636
3637         * Attribute.cs:
3638         * Exception.cs: .Net 1.1 already has these interfaces
3639
3640 Mon May 16 18:23:49 CEST 2005 Paolo Molaro <lupus@ximian.com>
3641
3642         * MonoCustomAttrs.cs, Type.cs: do not create a SerializableAttribute
3643         object on GetCustomAttributes (fixes bug #74717).
3644
3645 2005-05-15  Atsushi Enomoto  <atsushi@ximian.com>
3646
3647         * DateTime.cs : for 'z' next_not_digit didn't work as expected.
3648           Fixed bug #74775.
3649
3650 2005-05-15  Atsushi Enomoto  <atsushi@ximian.com>
3651
3652         * DateTime.cs : don't allow extraneous pattern characters also for
3653           non-exact parsing (ParseExact() was fine). Bug #74936 fixed
3654
3655 2005-05-13  Gert Driesen <drieseng@users.sourceforge.net>
3656
3657         * Activator.cs: Match exceptions thrown by MS.NET for
3658         CreateInstance overloads if type is abstract. Fixes bug #74861.
3659
3660 2005-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3661
3662         * OperatingSystem.cs: PlatformID.Unix.
3663
3664 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
3665
3666         * Environment.cs: Patch from Gonzalo to fix Environment.OSVersion.
3667         Platform under NET_2_0 to return PlatformID.Unix. Fix bug #74841.
3668
3669 2005-05-07  Atsushi Enomoto  <atsushi@ximian.com>
3670
3671         * NumberFormatter.cs : roundtrip number is already rounded before
3672           FormatGeneral() and DefaultMaxPrecision was extraneous. This fixes
3673           bug #72955.
3674
3675 2005-05-07  Ben Maurer  <bmaurer@ximian.com>
3676
3677         * Array.cs (BinarySearch): Patch from kazuki to pass arguments to
3678         the comparer in the same order as msft. Fixes #70725
3679
3680 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3681
3682         * Enum.cs: the hashtable don't need to be synchronized any more, since
3683         it's only accessed from withint a lock.
3684
3685         * Console.cs: stdin, stdout and stderr will never be finalized. Fixes
3686         bug 74768.
3687
3688 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
3689
3690         * Array.cs: Remove CLSCompliant (false) attributes.
3691
3692 2005-05-06  Martin Baulig  <martin@ximian.com>
3693
3694         * Predicate.cs, Action.cs, Comparision.cs, Converter.cs: Add
3695         [CLSCompliant(true)] attribute.
3696
3697 2005-05-04  Miguel de Icaza  <miguel@novell.com>
3698
3699         * Enum.cs (MonoEnumInfo): Based on a patch from James Willcox,
3700         initialize cache as a static method.  Fixes #74828.
3701
3702 2005-05-03  Marek Safar  <marek.safar@seznam.cz>
3703
3704         * Console.cs: CancelKeyPress is stubbed.
3705
3706 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
3707
3708         * ActivationContext.cs: Updated for beta2.
3709         * AppDomainManager.cs: Updated for beta2.
3710         * ApplicationId.cs: Updated for beta2.
3711         * ApplicationIdentity.cs: Updated for beta2.
3712         * Exception.cs: Now use Assembly.UnprotectedGetName () as Exception 
3713         doesn't leak the code base from the returned AssemblyName.
3714
3715 2005-04-25  Martin Baulig  <martin@ximian.com>
3716
3717         * Environment.cs (Environment.Version): Changed to 2.0.50215.
3718
3719 2005-04-22  Sebastien Pouliot  <sebastien@ximian.com>
3720
3721         * Attribute.cs: Added _Attribute interface to NET_2_0 to reduce the 
3722         number of "missing" in the class status pages.
3723
3724 2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3725
3726         * MulticastDelegate.cs: (GetInvocationList) when building the list that
3727         is later traversed forward, mark 'this' as the end of the chain.
3728         Fixes bug #74607.
3729
3730 2005-04-19  Zoltan Varga  <vargaz@freemail.hu>
3731
3732         * Environment.cs: Bump corlib version.
3733
3734 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3735
3736         * WindowsConsoleDriver.cs: ignore key release events.
3737
3738 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
3739
3740         * Char.cs : ToUpper()/ToLower() comparison ranges were incorrect.
3741
3742 2005-04-05  Sebastien Pouliot  <sebastien@ximian.com>
3743
3744         * _AppDomain.cs: Add security checks to the interface. Declarative 
3745         security on events requires BOOTSTRAP_WITH_OLDLIB to work properly 
3746         with older MCS.
3747         * AppDomain.cs: Add some (not complete) security checks. Bug#74411 is
3748         blocking some cases from working properly. Declarative security on 
3749         events requires BOOTSTRAP_WITH_OLDLIB to work properly with older MCS.
3750
3751 2005-04-04  Sebastien Pouliot  <sebastien@ximian.com>
3752
3753         * AppDomain.cs: Use the PolicyLevel to resolve the granted permissions
3754         on the AppDomain. Added an internal property to get the granted set.
3755
3756 2005-04-04  Atsushi Enomoto  <atsushi@ximian.com>
3757
3758         * String.cs,
3759           Char.cs : use TextInfo for ToLower() and ToUpper().
3760
3761 2005-03-31  Sebastien Pouliot  <sebastien@ximian.com>
3762
3763         * Exception.cs: Added Assert for TypeInformation to GetObjectData and
3764         ToString methods (not required for 2.0 as TypeInformation will be 
3765         deprecated). Added null check for GetObjectData.
3766
3767 Tue Mar 29 11:47:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
3768
3769         * Delegate.cs: allow IronPython 0.7 to compile.
3770
3771 2005-03-24  Miguel de Icaza  <miguel@novell.com>
3772
3773         * Delegate.cs: Add CreateDelegate with a target option, currently
3774         internal as it is not exposed by the framework yet.
3775
3776 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
3777
3778         * String.cs: Add some 2.0 methods.
3779
3780 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
3781
3782         * Activator.cs: Now use the supplied evidences when loading 
3783         assemblies. Added LinkDemand for RemotingConfiguration on both
3784         GetObject methods.
3785         * Console.cs: Added Assert for UnmanagedCode on OpenStandard[Error|
3786         Input|Output] as they use a handle on a FileStream (which is
3787         restricted otherwise). Added Demand for UnmanagedCode for the
3788         Set[Error|In|Out] methods.
3789         * MarshalByRefObject.cs: Added LinkDemand for Infrastructure on 
3790         CreateObjRef, GetLifetimeService and InitializeLifetimeService.
3791         * RuntimeMethodHandle.cs: Added Demand for UnmanagedCode on 
3792         GetFunctionPointer method.
3793         * TypedReference.cs: Added LinkDemand for ReflectionPermission's
3794         MemberAccess on MakeTypedReference.
3795
3796 2005-03-14  Sebastien Pouliot  <sebastien@ximian.com>
3797
3798         * Environment.cs: Fix CAS unit tests for NET_1_1.
3799         * Exception.cs: Fix CAS unit tests for NET_1_1.
3800
3801 2005-03-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3802
3803         * Version.cs: don't ignore the last number. Fixes bug #73539.
3804
3805 2005-03-11  Sebastien Pouliot  <sebastien@ximian.com>
3806
3807         * MonoType.cs: When the security manager is active, constructors and
3808         methods will return null if a linkdemand fails during reflection 
3809         query.
3810
3811 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
3812
3813         * Array.cs (Sort): Bail out early if length <= 1. Fixes #72721.
3814
3815 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
3816
3817         * Environment.cs: Bump corlib version.
3818
3819 2005-03-10  Martin Baulig  <martin@ximian.com>
3820
3821         * Nullable.cs (Nullable<T>.ToString): Return an empty string if
3822         we're null.
3823
3824 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
3825
3826         * Activator.cs MonoType.cs: Applied patch from Carlos Alberto Cortez
3827         (carlos@unixmexico.org). Allow creation of valuetypes with no ctor.
3828         Fixes #73432.
3829
3830 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
3831
3832         * Environment.cs: Bump corlib version.
3833
3834         * Exception.cs (StackTrace): Return the wrapper info as well.
3835
3836 2005-03-02  Kazuki Oikawa  <kazuki@panicode.com>
3837
3838         * NumberFormatter.cs: Some internal classes was converted to structs,
3839         and improved some points.
3840
3841 2005-02-26  Kazuki Oikawa  <kazuki@panicode.com>
3842
3843         * NumberFormatter.cs: Improved performance and memory usage
3844         when integer standard format.
3845         * SByte.cs:
3846         * Int16.cs:
3847         * Int32.cs:
3848         * Int64.cs:
3849         * Byte.cs:
3850         * UInt16.cs:
3851         * UInt32.cs:
3852         * UInt64.cs:
3853         * Single.cs:
3854         * Double.cs:
3855         * TimeSpan.cs: Improved these directly call to NumberFormatter.
3856
3857 2005-02-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3858
3859         * TermInfoDriver.cs: set the xmit mode if available. Handle key input
3860         and translate them into a ConsoleKeyInfo.
3861         * TermInfoReader.cs: added a method to return the bytes of a string
3862         property.
3863         * ConsoleKeyInfo.cs: added copy constructor and setters.
3864
3865 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
3866
3867         * Array.cs: Add missing 2.0 attributes and correct some parameter names.
3868
3869 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3870
3871         * AppDomain.cs: Changed GetAssemblies, LoadAssembly, and Load signatures,
3872         and added some to support the reflection only methods. DoAssemblyResolve
3873         was modified to invoke the new PreBindAssemblyResolve event when the
3874         assembly is reflection only.
3875         
3876 2005-02-21  Zoltan Varga  <vargaz@freemail.hu>
3877
3878         * GC.cs Double.cs IntPtr.cs Array.cs Decimal.cs Math.cs Single.cs:
3879         Add net 2.0 ReliabilityContractAttributes.
3880
3881 2005-02-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3882
3883         * TermInfoDriver.cs: cygwin terminals are handled by the windows
3884         console driver.
3885
3886         * TermInfoReader.cs:
3887         * TermInfoNumbers.cs:
3888         * KnownTerminals.cs:
3889         * TermInfoBooleans.cs:
3890         * TermInfoStrings.cs: documented.
3891
3892 2005-02-19  Kazuki Oikawa <kazuki@panicode.com>
3893
3894         * Array.cs: Reverse the order in the Equals calls.
3895
3896 2005-02-18  Zoltan Varga  <vargaz@freemail.hu>
3897
3898         * Exception.cs (StackTrace): Implement this in managed code since it is
3899         needed by CAS. Fixes #72146.
3900
3901 2005-02-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3902
3903         * WindowsConsoleDriver.cs: implemented MoveBufferArea.
3904
3905 2005-02-14  Raja R Harinath  <rharinath@novell.com>
3906
3907         * Array.cs (Array.Swapper) [!BOOTSTRAP_WITH_OLDLIB]: Make nested.
3908         See #72015.
3909
3910 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
3911
3912         * Version.cs (CompareTo, Equals): Make sure the versions for
3913         generics handle `null'. The non-generics versions now just call
3914         the regular versions, to reduce code duplication.
3915
3916         * Boolean.cs (CompareTo): make this really work for generics 
3917
3918         * Type.cs (GetProperty): Passing new Type [0] is different than
3919         null. null means `I don't care how many types this has,' while new
3920         Type [0] means `this must have 0 types.'
3921
3922 2005-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3923
3924         * corlib.dll.sources: added WindowsConsoleDriver.cs
3925
3926         * System/ConsoleDriver.cs: use WindowsConsoleDriver on windows and
3927         implemented the few missing properties/methods.
3928
3929         * System/IConsoleDriver.cs: uncommented all methods/properties.
3930         * System/TermInfoDriver.cs: implement changes from IConsoleDriver.
3931         * System/WindowsConsoleDriver.cs: implemented IConsoleDriver for
3932         windows. Only missing MoveBufferArea by now.
3933
3934 2005-02-11  Zoltan Varga  <vargaz@freemail.hu>
3935
3936         * Type.cs (IsAssignableFrom): Add support for TypeBuilders.
3937
3938         * Int32.cs AppDomain.cs: Fix warnings.
3939
3940 2005-02-10  Marek Safar  <marek.safar@seznam.cz>
3941
3942         * IServiceProvider.cs: Is not ComVisible.
3943
3944         * NonSerializedAttribute.cs: Fix AttributeUsage flags.
3945
3946         * Type.cs: Fix ClassInterface attribute.
3947
3948 Tue Feb 8 19:26:47 CET 2005 Paolo Molaro <lupus@ximian.com>
3949
3950         * Delegate.cs: remove the finalizer from Delegate: this
3951         is handled internally by the runtime now.
3952
3953 2005-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3954
3955         * Activator.cs: provide the Type name when throwing an exception.
3956
3957 2005-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3958
3959         * TimeZone.cs: lock on the static Hashtable instead of 'this'. Fixes
3960         bug #72238.
3961
3962 Fri Feb 4 15:46:04 CET 2005 Paolo Molaro <lupus@ximian.com>
3963
3964         * Array.cs: provide specialized versions of some methods.
3965
3966 Thu Feb 3 15:15:25 CET 2005 Paolo Molaro <lupus@ximian.com>
3967
3968         * String.cs: provide a managed memcpy and memset method
3969         for use both in corlib and from the JIT. Implement
3970         some methods with the managed helpers and remove some icalls.
3971
3972 2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>
3973
3974         * Exception.cs: Added Data property for NET_2_0 (required for new
3975         unit tests).
3976
3977 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3978
3979         * ConsoleDriver.cs:
3980         * TermInfoDriver.cs:
3981         * IConsoleDriver.cs:
3982         * Console.cs: added BufferWidth and BufferHeight.
3983
3984 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3985
3986         * ConsoleDriver.cs:
3987         * Console.cs:
3988         * TermInfoDriver.cs:
3989         * IConsoleDriver.cs: added a few more properties and fixed cursor
3990         addressing.
3991
3992 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3993
3994         * ConsoleDriver.cs: static class that forwards the Console 2.0 class
3995         calls to the proper driver.
3996         * TermInfoDriver.cs: terminfo based console driver.
3997         * IConsoleDriver.cs: interface implemented by console drivers.
3998
3999         * ConsoleCancelEventArgs.cs:
4000         * ConsoleCancelEventHandler.cs:
4001
4002         * ConsoleModifiers.cs: 
4003         * ConsoleSpecialKey.cs:
4004         * ConsoleColor.cs:
4005         * ConsoleKey.cs: new enumerations.
4006
4007         * ConsoleKeyInfo.cs: New file.
4008
4009         * TermInfoReader.cs: reader for terminfo capabilities files.
4010
4011         * TermInfoNumbers.cs:
4012         * TermInfoBooleans.cs:
4013         * TermInfoStrings.cs: enumations for terminfo property names.
4014
4015         * KnownTerminals.cs: byte arrays for selected terminals.
4016
4017         * Console.cs: added more 2.0 methods and implemented some of them.
4018
4019
4020 2005-01-30  Atsushi Enomoto  <atsushi@ximian.com>
4021
4022         * Int32.cs : (FindSign) IndexOf() is better than creating substring.
4023
4024 2005-01-27  Sebastien Pouliot  <sebastien@ximian.com>
4025
4026         * BadImageFormatException.cs: Protect the fusion (GAC) log from being
4027         disclosed unless code has ControlPolicy and ControlEvidence.
4028
4029 2005-01-27  Zoltan Varga  <vargaz@freemail.hu>
4030
4031         * Exception.cs: Compute stack trace on demand.
4032
4033 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
4034
4035         * Environment.cs: Removed hack for static class (NET_2_0). Added 
4036         proper security for FailFast (documented in FDBK20543). Added new
4037         method IsRunningOnWindows to replace (Platform == 128) as the logic is
4038         gonna change in the future (Unix is id #4 in NET_2_0).
4039
4040 2005-01-24  Sebastien Pouliot  <sebastien@ximian.com>
4041
4042         * Environment.cs: Added CAS security (both declarative and imperative)
4043         as a test. This shouldn't affect execution unless --security is 
4044         specified.
4045
4046 2005-01-19  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
4047         * Type.cs: Corrected implementation for the Type.FilterNameIgnoreCase
4048         and Type.FilterName delegates They weren't dealing with the optional '*'
4049         at the end of the filter mask
4050
4051 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
4052
4053         * Array.cs: Fix a typo in the previous patch.
4054         
4055         * Array.cs: Fix some test failures in the generic methods.
4056
4057         * Array.cs: Implement AsReadOnly.
4058
4059 2005-01-13  Geoff Norton  <gnorton@customerdna.com>
4060
4061         * Guid.cs: Fix endian issues (use Mono.Security.BitConverterLE).  Fixes
4062         #71242
4063
4064 2005-01-11  Sebastien Pouliot  <sebastien@ximian.com>
4065
4066         * AppDomain.cs: Removed Activate and ActivateNewProcess methods. They
4067         have been removed from 2.0.
4068
4069 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
4070
4071         * Boolean.cs Char.cs Single.cs Double.cs: Implement IComparable<T> in
4072         NET 2.0.
4073
4074 2005-01-10  Sebastien Pouliot  <sebastien@ximian.com>
4075
4076         * ApplicationIdentity.cs: Throw ArgumentNullException if name is null.
4077         Add default culture (neutral) to the name when none is specified.
4078         * AppDomain.cs: Changed IsDefaultAppDomain (2.0). Is seems that we 
4079         can't trust Id ?
4080
4081 2005-01-09  Sebastien Pouliot  <sebastien@ximian.com>
4082
4083         * DateTime.cs: Reverted last patch for utc as it broke all certificate
4084         handling and another unit test in DateTime.
4085
4086 2005-01-09  Miguel de Icaza  <miguel@ximian.com>
4087
4088         * DateTime.cs: Return immediately if useutc is set to true, there
4089         is no need to do the extra computation (which also happened to
4090         create a new DateTime using the `use_localtime' constructor, which
4091         lead to the erroneous date returns when using 'u' or `U'
4092         formats).   
4093
4094         Fixes another bug in the regression test suite.
4095
4096 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com> 
4097
4098         * AppDomain.cs: Fix the DefaultDomain property to return the root 
4099         domain (as it seems that the root's Id isn't always 0).
4100         * BitConverter.cs: The "special support" for ToString(new byte[0]) is
4101         only for NET_2_0 - previously this was an ArgumentOutOfRangeException.
4102
4103 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
4104
4105         * IntegerFormatter.cs: The - sign inside the "negative" section in
4106         a multi-format string means `show the sign' only if it is the
4107         first token, not `copy verbatim'.  In the other sections it means
4108         `copy-verbatim'.
4109
4110         This makes things like:  (-34).ToString ("#;-#") show up as "-34"
4111         instead of "--34".
4112
4113         The bad news is that this code needs to be rewritten to handle all
4114         the formatting cases, see bug #71112 for details.
4115
4116         * Convert.cs (Convert.ToType): Throw an InvalidCastException if
4117         the conversion is invalid, not ArgumentException, this fixes
4118         another regression in our test suite.
4119
4120 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
4121
4122         * AppDomain.cs: Add ApplicationIdentity property for 2.0;
4123         * AppDomainManager.cs: Remove HostRefusedSet support (it does not 
4124         exists anymore).
4125
4126 2005-01-08  Zoltan Varga  <vargaz@freemail.hu>
4127
4128         * DateTime.cs: Create MaxValue and MinValue using a different constructor to avoid static 
4129         initialization problems.
4130
4131 2005-01-02  Ben Maurer  <bmaurer@ximian.com>
4132
4133         * Int32.cs: NumberStyles.AllowExponent was supported by the
4134         Int32.Parse function. From Akira <mei@work.email.ne.jp>. Fixes bug
4135         70469.
4136
4137 2005-01-01  Atsushi Enomoto  <atsushi@ximian.com>
4138
4139         * Base64FormattingOptions.cs : it was not in System namespace.
4140
4141 2004-12-21  Atsushi Enomoto  <atsushi@ximian.com>
4142
4143         * DateTime.cs : If no progress on value string, don't regard as
4144           matched. This fixes bug #70707.
4145
4146 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
4147
4148         * Environment.cs: Bump corlib version.
4149
4150 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
4151
4152         * Array.cs (DoBinarySearch): Fix a warning.
4153
4154 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
4155
4156         * Environment.cs: Bump corlib version.
4157
4158         * AppDomain.cs: Add new DefineInternalDynamicAssembly () method.
4159
4160 2004-12-06  Ben Maurer  <bmaurer@ximian.com>
4161
4162         * Exception.cs: Prevent stringifying the type name on the
4163         ctor. this gets called a few times on every execution to create a
4164         nullref exception.
4165
4166 2004-12-06  Martin Baulig  <martin@ximian.com>
4167
4168         * Decimal.cs: Decimal constant support has been merged into GMCS,
4169         removed the FIXME.
4170
4171 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
4172
4173         * Environment.cs: Bump corlib version.
4174         
4175         * Environment.cs: Bump corlib version.
4176
4177 2004-11-30  Zoltan Varga  <vargaz@freemail.hu>
4178
4179         * MonoType.cs (UnderlyingSystemType): Make this return this as in
4180         MS.NET. Fixes #56245.
4181
4182 2004-11-29  Atsushi Enomoto  <atsushi@ximian.com>
4183
4184         * GC.cs : Collect(generation) actually does not throw an exception
4185           even if generation > MaxGeneration (MS document bug).
4186
4187 2004-11-28  Zoltan Varga  <vargaz@freemail.hu>
4188
4189         * Exception.cs: Implement _Exception under NET_2_0.
4190
4191         * Byte.cs SByte.cs UInt16.cs Int16.cs: Make these compile under csc 2.0.
4192
4193         * AccessViolationException.cs DataMisalignedException.cs OperationCanceledException.cs
4194         NotCancelableException.cs TimeoutException.cs: New files.
4195
4196 2004-11-23  Raja R Harinath  <rharinath@novell.com>
4197
4198         * Decimal.cs [NET_2_0]: Use old code till GMCS imports decimal
4199         constant support.
4200
4201 2004-11-23  Raja R Harinath  <rharinath@novell.com>
4202
4203         * Decimal.cs [BOOTSTRAP_WITH_OLDLIB]: Use old code for compilers
4204         without decimal constant support.
4205
4206 2004-11-23  Marek Safar  <marek.safar@seznam.cz>
4207
4208         * Decimal.cs: Updated to use compiler decimal constant support.
4209
4210 2004-11-20  Zoltan Varga  <vargaz@freemail.hu>
4211
4212         * MonoType.cs: Revert last change since it breaks remoting.
4213
4214 2004-11-18  Zoltan Varga  <vargaz@freemail.hu>
4215
4216         * MonoType.cs (UnderlyingSystemType): Make this return this as in
4217         MS.NET. Fixes #56245.
4218
4219 2004-11-17  Carlos Alberto Cortez <carlos@unixmexico.org>
4220
4221         * INullable.cs: New interface added.
4222         * Nullable.cs: Methods added. Also a static Nullable class
4223         containing static methods.
4224         
4225 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
4226
4227         * BitConverter.cs: Added support for special case when ToString is 
4228         called with (new byte [0]).
4229
4230 2004-11-10  Lluis Sanchez  <lluis@novell.com>
4231
4232         * Exception.cs: Added setter for StackTrace.
4233
4234 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
4235
4236         * IntegerFormatter.cs: Avoid .ToCharArray
4237
4238 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
4239
4240         * Single.cs, Double.cs (GetHashCode): Better hashcode impl
4241
4242 2004-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4243
4244         * InvalidOperationException.cs: make the message more meaningful and
4245         real. Fixes bug #69055.
4246
4247 2004-10-28  Ben Maurer  <bmaurer@ximian.com>
4248
4249         * String.cs: Rather than == String.Empty, use .Length == 0. It
4250         is a bit faster (avoids a method call, and the code is less complex).
4251
4252 2004-10-24  Fawad Halim  <fawad@fawad.net>
4253         * Environment.cs: If an Environment variable value isn't found, leave the trailing % of the reference for further matches.
4254         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.
4255         This fixes bug #64995.
4256
4257 2004-10-19  Lluis Sanchez  <lluis@novell.com>
4258
4259         * MarshalByRefObject.cs: Field _identity is not serializable.
4260         This fixes bug #68567.
4261
4262 2004-10-17  Ben Maurer  <bmaurer@ximian.com>
4263
4264         * DateTime.cs (ZeroPad): Use unsafe code to speed this up. We
4265         avoid entering slow integer formatting code.
4266
4267         (_ToString): Use ZeroPad here when possible, as it is faster.
4268
4269 2004-10-11  Martin Baulig  <martin@ximian.com>
4270
4271         * Environment.cs: Bump corlib version to 28.
4272
4273 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
4274
4275         * Convert.cs (ToType): Throw an exception when converting null to a
4276         valuetype. Fixes #67780.
4277
4278 2004-10-08  Atsushi Enomoto  <atsushi@ximian.com>
4279
4280         * DateTime.cs : Performance fix. ParseExact() implementation should
4281           avoid s = s.Substring(1).
4282
4283 2004-10-08  Atsushi Enomoto  <atsushi@ximian.com>
4284
4285         * DateTime.cs : When it it not exact parse, 'Z' is allowed as a suffix
4286           of m/s/t/z. This fixes bug 66723.
4287
4288 Wed Oct 6 12:37:54 CEST 2004 Paolo Molaro <lupus@ximian.com>
4289
4290         * String.cs: make GetHashCode() managed.
4291
4292 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
4293
4294         * AppDomain.cs: Make ThreadStatic variables static. Fixes #56614.
4295
4296         * Runtime*Handle.cs ModuleHandle.cs: Add Equals + GetHashCode.
4297
4298         * ModuleHandle.cs: Add missing methods.
4299
4300         * RuntimeTypeHandle.cs: Add GetModuleHandle () method.
4301
4302 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
4303
4304         * AttributeTargets.cs: Add 2.0 GenericParameter value.
4305
4306         * Environment.cs: Bump corlib version.
4307
4308 2004-10-02  Zoltan Varga  <vargaz@freemail.hu>
4309
4310         * Int32.cs UInt32.cs Byte.cs SByte.cs Int16.cs UInt16.cs Int64.cs UInt64.cs: Implement 2.0 TryParse methods.
4311
4312 2004-09-30  Geoff Norton  <gnorton@customerdna.com>
4313
4314         * Convert.cs: ConvertToBase* was not endian aware.  Implemented EndianSwap
4315         and swapping of all values before going into the BitConverter so that values
4316         are returned with proper endianess.
4317
4318 2004-09-23  Martin Garton  <martin@wrasse.demon.co.uk>
4319
4320         * Convert.cs: ToType was returning unconverted object when it should
4321         fail with an ArgumentException.
4322
4323 2004-09-27  Zoltan Varga  <vargaz@freemail.hu>
4324
4325         * Array.cs: Add stub for AsReadOnly<T>.
4326         
4327 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
4328
4329         * Type.cs: Add MakePointerType && stub for ReflectionOnlyGetType.
4330
4331         * MonoCustomAttrs.cs (GetCustomAttributesBase): Add support for
4332         parameters.
4333
4334 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
4335
4336         * MonoCustomAttrs.cs (GetCustomAttributesBase): Add support for
4337         methods and fields.
4338         
4339         * MonoCustomAttrs.cs: Beginnings of support for returning 2.0 pseudo
4340         custom attributes.
4341
4342         * MonoCustomAttrs.cs (RetrieveAttributeUsage): Avoid infinite recursion.
4343
4344         * MonoCustomAttrs.cs (GetCustomAttributes): Fix the 'attributeType is 
4345         sealed' optimization.
4346
4347         * Type.cs: Implement 2.0 StructLayoutAttribute property. 
4348
4349         * Type.cs Add GetPseudoCustomAttributes () method.
4350
4351 2004-09-24  Martin Baulig  <martin@ximian.com>
4352
4353         * Type.cs (Type.GetGenericParameterConstraints): New public method.
4354
4355 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
4356
4357         * MonoCustomAttrs.cs (GetCustomAttributes): Rename the icall to
4358         GetCustomAttributesInternal and add a 'pseudoAttrs' argument.
4359
4360         * Type.cs: Tweak Module property in 2.0 build.
4361
4362 2004-09-23  Martin Baulig  <martin@ximian.com>
4363
4364         * Type.cs (Type.GenericParameterAttributes): New public property.
4365
4366 2004-09-23  Martin Baulig  <martin@ximian.com>
4367
4368         * GenericParameterAttributes.cs: New file.
4369
4370 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
4371
4372         * ModuleHandle.cs: Updated after changes to Module class.
4373
4374 2004-09-21  Geoff Norton <gnorton@customerdna.com>
4375
4376         * Type.cs: BindingFlags.IgnoreCase was being ignored, this reimplements
4377         this filter. Fixes bug #65778.
4378
4379 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
4380
4381         * Environment.cs: Bump corlib version.
4382
4383 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
4384
4385         * ModuleHandle.cs: New file.
4386
4387         * RuntimeFieldHandle.cs: Add an internal ctor.
4388
4389 2004-09-19  Dick Porter  <dick@ximian.com>
4390
4391         * Console.cs: Use the internal wrappers for StreamReader and
4392         StreamWriter that catch IOException.
4393
4394 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
4395
4396         * Environment.cs: Bumped mono_corlib_version to 25.
4397
4398 2004-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4399
4400         * AppDomain.cs: added SetupInformationNoCopy property, since
4401         SetupInformation creates a copy now, all updates to it should use the
4402         actual data. Fixes bug #61991 take 2.
4403
4404 2004-09-09  Tim Coleman <tim@timcoleman.com>
4405         * Base64FormattingOptions.cs: New enum
4406         * Convert.cs: Add new ToBase64String methods for Fx 2.0
4407
4408 2004-09-08  Marek Safar  <marek.safar@seznam.cz>
4409
4410         * Console.cs,
4411         * GC.cs: Class is static for NET_2_0.
4412
4413 2004-09-07 Ben Maurer  <bmaurer@users.sourceforge.net>
4414
4415         * Activator.cs: Make sure not to call .GetType on a
4416         null argument. fixes 63852
4417
4418 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
4419
4420         * Array.cs (Clear): make this an icall.
4421
4422 2004-09-05 Ben Maurer  <bmaurer@users.sourceforge.net>
4423
4424         * MonoCustomAttribute.cs: Avoid the call to GetBase when possible.
4425
4426 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4427
4428         * Environment.cs: (ExpandEnvironmentVariables) don't nullify the case
4429         insensitive enironment variables hashtable once we create it.
4430
4431 2004-09-04  Sebastien Pouliot  <sebastien@ximian.com>
4432
4433         * AppDomain.cs: Changed 2 imperative security demands to declarative
4434         (unsupported) so it doesn't (for now) call the security runtime.
4435
4436 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
4437
4438         * Delegate.cs: Free the delegate trampoline in the finalizer.
4439
4440 2004-08-26  Sebastien Pouliot  <sebastien@ximian.com>
4441
4442         * ApplicationId.cs: Completed GetHashCode using information from MS
4443         (FDBK13339).
4444
4445 2004-08-23  Sebastien Pouliot  <sebastien@ximian.com>
4446
4447         * Boolean.cs: Added TryParse static method for NET_2_0 profile.
4448
4449 2004-08-19  Atsushi Enomoto  <atsushi@ximian.com>
4450
4451         * DateTime.cs : When hour format is "hh", MS.NET (maybe incorrectly)
4452           allows 12, that should not be accepted (13 is rejected) and
4453           interpreted as 0. This fixes bug 63376.
4454
4455 2004-08-17  Sebastien Pouliot  <sebastien@ximian.com>
4456
4457         * Version.cs: Fixed Clone so we can use it on versions with only
4458         major/minor or major/minor/build.
4459
4460 2004-08-17  Martin Baulig  <martin@ximian.com>
4461
4462         * MonoType.cs (MonoType.getFullName): Added `bool full_name'
4463         argument specifying whether or not to include the type arguments.
4464         (MonoType.FullName): Don't include the type arguments.
4465         (MonoType.ToString): Include them here.
4466
4467         * Environment.cs: Bumped mono_corlib_version to 24.
4468
4469 2004-08-16  Duncan Mak  <duncan@ximian.com>
4470
4471         * AttributeUsageAttribute.cs: Change the AttributeUsage to
4472         AttributeTargets.Class, from AttributeTargets.All, fixes Zoltan's
4473         bug #62895.
4474
4475 2004-08-11  Marek Safar  <marek.safar@seznam.cz>
4476
4477         * AppDomain.cs: Fixed typo of DefineDynamicAssembly argument.
4478         Added call to AddPermissionRequests to pass permissions
4479         arguments.
4480         * Environment.cs: Added a few Fx 2.0 methods
4481
4482 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
4483
4484         * ApplicationId.cs: Fixed typo to fix NET_2_0 compilation.
4485         * AppDomain.cs: Fixed use of Evidence and AppDomainSetup (copies, not
4486         references). Added (non-obsolete) Fx 2.0 properties and methods.
4487         * AppDomainSetup.cs: Added internal copy constructor.
4488         * DomainManagerInitializationFlags.cs: Fixed values.
4489
4490 2004-08-08  Sebastien Pouliot  <sebastien@ximian.com>
4491
4492         * AppDomainInitializer.cs: New Fx 2.0 class for AppDomain.
4493         * AppDomainManager.cs: New Fx 2.0 class for AppDomain.
4494         * ApplicationActivator.cs: New Fx 2.0 class for AppDomain.
4495         * ApplicationId.cs: New Fx 2.0 class.
4496         * ApplicationIdentity.cs: Fixed ToString.
4497         * DomainManagerInitializationFlags.cs: New Fx 2.0 flags for AppDomain.
4498
4499 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
4500
4501         * AppDomain.cs: Added a new icall, getDomainByID, to get the an 
4502         AppDomain using it's Id. Completed SetAppDomainPolicy.
4503         * Environment.cs: Bumped mono_corlib_version to 23.
4504
4505 2004-08-02  Martin Baulig  <martin@ximian.com>
4506
4507         * DateTime.cs, TimeSpan.cs, Guid.cs, Version.cs: Implement IComparable<T>.
4508
4509 2004-07-29  Atsushi Enomoto  <atsushi@ximian.com>
4510
4511         * Environment.cs : GacPath on windows is based on mscorlib.dll, and
4512           now its location is changed.
4513
4514 2004-07-21  Lluis Sanchez Gual  <lluis@novell.com>
4515
4516         * Environment.cs: Return the MS.NET 2.0 beta1 runtime version for the
4517           NET_2_0 profile.
4518         
4519 2004-07-18  Martin Baulig  <martin@ximian.com>
4520
4521         * Array.cs: Ben Maurer implemented all the new generic methods
4522         here :-)
4523
4524 2004-07-17  Martin Baulig  <martin@ximian.com>
4525
4526         * Decimal.cs: Implement IComparable<Decimal>.
4527
4528 2004-07-17  Martin Baulig  <martin@ximian.com>
4529
4530         * Byte.cs, Int16.cs, Int32.cs, Int64.cs, SByte.cs, String.cs,
4531         UInt16.cs, UInt32.cs, UInt64.cs: Implement IComparable<T>.      
4532
4533 2004-07-13  Sebastien Pouliot  <sebastien@ximian.com>
4534
4535         * ActivationContext.cs: New class in Fx 2.0. Required for 
4536         System.Security.Policy.
4537         * ApplicationIdentity.cs: New class in Fx 2.0. Required for 
4538         System.Security.Policy.
4539         * IApplicationDescription.cs: New interface in Fx 2.0. Required for 
4540         System.Security.Policy.
4541         * IHostContext.cs: New interface in Fx 2.0. Required for 
4542         System.Security.Policy.
4543
4544 2004-07-12  Geoff Norton <gnorton@customerdna.com>
4545
4546         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
4547           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
4548           and will add/subtract the hour if needed
4549
4550 2004-07-07  Geoff Norton <gnorton@customerdna.com>
4551
4552         * Monotype.cs: Patch for bug #58844.  Dont throw exceptions right away;
4553           pass through all the possibly BindingInfo's and keep a bool value as to the type
4554           of exception we might need to throw;
4555
4556 2004-07-07  Geoff Norton <gnorton@customerdna.com>
4557
4558         * Patch to fix bug #58973
4559
4560 2004-07-02  Jackson Harper  <jackson@ximian.com>
4561
4562         * PlatformID.cs: New 2.0 values.
4563         
4564 2004-06-25  Ben Maurer <bmaurer@ximian.com>
4565         
4566         * Environment.cs: GetFolderPath has new behavior. r=miguel
4567
4568 2004-06-23  Sebastien Pouliot  <sebastien@ximian.com>
4569
4570         * DateTime.cs: Throw ArgumentOutOfRangeException if the year is
4571         bigger than 9999. Fix bug #41845.
4572         * FloatingPointFormatter.cs: Applied correction from Jon Skeet on
4573         the "R"eversible format for negative numbers.
4574
4575 2004-06-21  Jackson Harper  <jackson@ximian.com>
4576
4577         * Decimal.cs: Make sure to use invariant culture when parsing
4578         floats stringified with the invariant culture. Patch by Rodrigo
4579         B. de Oliveira.
4580         
4581 2004-06-19  Atsushi Enomoto  <atsushi@ximian.com>
4582
4583         * FloatingPointFormatter.cs : Literal string should be kept in the
4584           output.
4585
4586 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
4587
4588         * DateTime.cs : Concatenating whitespace removal was not working fine.
4589           Modified FormatException message (1 cent kindness).
4590
4591 2004-06-18  Ben Maurer  <bmaurer@ximian.com>
4592         
4593         * Action.cs, ArraySegment.cs, Comparison.cs, Converter.cs, Predicate.cs:
4594         new generics classes
4595         * IComparable.cs: add the new <T> version.
4596         * EventHandler.cs: new <T> version.
4597         
4598 2004-06-18  Dick Porter  <dick@ximian.com>
4599
4600         * String.cs: The icall can cope with embedded \0 now.
4601
4602 2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
4603
4604         * DateTime.cs :
4605           - Added new common pattern "yyyy/M/dZ"
4606           - empty string should not be compared in _ParseEnum()
4607           - Use culture independent string comparison in _ParseString()
4608           - Whitespace removal should be checked after '..' token check (some
4609             pattern such like es-ES LongDatePattern contains spaces in '..').
4610           - formats null check should be done (to throw ArgumentNullException)
4611             in ParseExact().
4612           - When specified one character format, dates are incorrectly regarded
4613             as to use invariant culture.
4614
4615 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
4616
4617         * ArgIterator.cs: changed layout to Auto
4618         * DateTime.cs: changed layout to Auto
4619
4620 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
4621
4622         * DateTime.cs: CRLF to LF
4623
4624 2004-06-17  Sebastien Pouliot  <sebastien@ximian.com>
4625
4626         * Decimal.cs: Fixed regression in System.Data caused by the recent 
4627         changes. Adapted (and moved) the code to correct the scale from 
4628         SqlMoney. Removed unused (and unusable) IsOne and fixed IsZero (where
4629         scale has no importance).
4630
4631 2004-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
4632
4633         * Activator.cs: In CreateInstance(), use Public|Instance if access binding
4634           attributes are omitted.
4635
4636 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4637
4638         * DateTime.cs : GetDateTimeFormats(char, IFormatProvider) should also
4639           check if the format character is valid.
4640
4641 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4642
4643         * DateTime.cs : AddDays(double) rounds the input.
4644
4645 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4646
4647         * DateTime.cs : Incorrect maxvalue comparison in ToUniversalTime().
4648           Fixed ToLocalTime() as well, but it does check range for MinValue.
4649
4650 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4651
4652         * DateTime.cs : Added overflow check in ToUniversalTime() and
4653           ToLocalTime(). Fixed bug #60253.
4654
4655 2004-06-16  Sebastien Pouliot  <sebastien@ximian.com>
4656
4657         * FloatingPointFormatter.cs: Implemented "R" format using Jon Skeet
4658         source code (with permission). Fix (biggest) part of bug #60110.
4659         http://www.yoda.arachsys.com/csharp/floatingpoint.html
4660
4661 2004-06-15  Sebastien Pouliot  <sebastien@ximian.com>
4662
4663         * Decimal.cs: Fixed scale after Round (a different scale is correct 
4664         from a math point of view but affect the string representation of the
4665         value). Note: other operations also have scale problems!
4666         * DecimalFormatter.cs: Fixed FormatGeneral to match Fx 1.1 output.
4667         * FloatingPointFormatter.cs: Fixed ToString which doesn't use banker's
4668         rounding (which is the rounding provided by Math.Round). This fix bug
4669         #60111. The code (new Round methods) should be moved elsewhere (as it
4670         may also be required elsewhere) post Mono 1.0.
4671
4672 2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>
4673
4674         * AppDomainSetup.cs: added TODO for serialization
4675         * ExecutionEngineException.cs: added missing serialization ctor
4676         * InvalidProgramException.cs: added missing serialization ctor
4677         * MulticastNotSupportedException.cs: added missing serialization ctor
4678         * ObsoleteAttribute.cs: fixed serialization compatibility with MS.NET
4679         * Random.cs: fixed serialization compatibility with MS.NET
4680
4681 2004-06-15  Paolo Molaro <lupus@ximian.com>
4682
4683         * Type.cs: removed unused (and non-existing) icall type_is_instance.
4684
4685 2004-06-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4686
4687         * Environment.cs: use internalGetHome instead of getting "HOME" as
4688         that variable may not be defined.
4689
4690 2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>
4691
4692         * TimeSpan.cs: Fixed timespan with large values for hours or minutes
4693         (overflow is only checked for days but can also occurs in hours and
4694         minutes which uses Int32 when multiplying). The new results match MS
4695         implementation.
4696
4697 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
4698
4699         * FloatingPointFormatter.cs : Recognize '%' and '\u2030' and replace
4700           them with matching NumberFormatInfo properties.
4701
4702 2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
4703
4704         * Double.cs : Use IFormatProvider.GetFormat() instead of literal '-'.
4705         * FloatingPointFormatter.cs :
4706           Use NumberFormatInfo.NegativeSign. This change saves many XSLT test
4707           failures.
4708           Format Permille pattern (It is undocumented but actually available,
4709           and used in xsl:format-number).
4710
4711 2004-06-14  Raja R Harinath  <rharinath@novell.com>
4712
4713         * Console.cs (Console.Write, Console.WriteLine): Disable __arglist
4714         version with BOOTSTRAP_WITH_OLDLIB.
4715         * String.cs (STring.Concat): Likewise.
4716
4717 2004-06-13  Atsushi Enomoto  <atsushi@ximian.com>
4718
4719         * FloatingPointFormatter.cs :
4720           - Don't format more than 15 fraction digits. Don't report to Pedro
4721             directly (removing the error message with his concent).
4722           - When format string starts with '.', it means integral part format 
4723             is not specified. Ignore '.' characters after the first
4724             appearance. Fixed bug #59890.
4725           - 0.0 is formatted only before the third ';' appearance.
4726
4727 2004-06-11  Sebastien Pouliot  <sebastien@ximian.com>
4728
4729         * DateTime.cs: Added a AddRoundedMilliseconds which use the "old Mono"
4730         rounding logic which worked for FromOADate (while the newer didn't).
4731         * TimeSpan.cs: Now throw an OverflowException when the timespan is
4732         over MaxValue or under MinValue.
4733
4734 2004-06-11  Martin Baulig  <martin@ximian.com>
4735
4736         * Console.cs (Write, WriteLine): Implemented the varargs versions.
4737
4738 2004-06-11  Martin Baulig  <martin@ximian.com>
4739
4740         * String.cs (Concat): Implemented the varargs version.
4741
4742 2004-06-10  Sebastien Pouliot  <sebastien@ximian.com>
4743
4744         * Decimal.cs: Hacked the Parse method to allow the runtime C code to
4745         decode it properly (i.e. matching MS results). Fixed the Round method
4746         for negative decimal numbers (moved code from Math.cs).
4747         * Math.cs: Now use Decimal class for Round(Decimal,int). Required to
4748         fix a bug when rounding a negative decimal.
4749
4750 2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4751
4752         * AppDomain.cs: set the _principal to null when changing the policy.
4753         * Console.cs: remove ClsCompliant attribute from a method marked as
4754         internal and added comment.
4755
4756 2004-06-10  Gert Driesen <drieseng@users.sourceforge.net>
4757
4758         * Delegate.cs: marked protected fields private to match public
4759         API of MS.NET, marked DynamicInvokeImpl and GetMethodImpl
4760         protected to fix public API
4761         * Enum.cs: marked ctor protected to match public API of MS.NET
4762         * MulticastDelegate.cs: marked DynamicInvokeImpl protected to
4763         match public API of MS.NET
4764
4765 2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
4766
4767         * DateTime.cs : Added more common patterns.
4768
4769 2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>
4770
4771         * Decimal.cs: Fixed banker rounding by calling Math.Round. This won't
4772         be a performance winner (the actual Math code has a note to wait a
4773         better Decimal implementation) but it returns the correct results
4774         (without adding new code in corlib or the runtime). Fix #37744.
4775
4776 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
4777
4778         * DateTime.cs :
4779           - A bunch of fixes (patch by Steven Brown). Fraction seconds are 
4780             now represented as double. Strict token check for 'Z'.
4781           - Pattern validity check in GetDateTimeFormats(char).
4782           - Fixed pattern "yyyy/M/d HH:mm:ss".
4783
4784 2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>
4785
4786         * Decimal.cs: Fixed remainder (and optimized some cases not to call 
4787         unmanaged code). Simplified divide. Removed workaround for bug #59793.
4788         Fixed GetHashCode to return different result for X and -X.
4789
4790 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4791
4792         * DateTime.cs :
4793           - Now re-checked all common format patterns. They should be tried
4794             with both current culture and invariant culture. Since '/' covers
4795             '-', removed extraneous patterns. Added more common patterns
4796             such as "yyyy-MM-dd" and X509Certificate pattern (it is valid
4797             only after NET_1_1). Commented out 1 character format patterns.
4798           - The format patterns we should try should not be obtained by
4799             GetAllDateTimePatterns(). Just use 'd', 'D', 't', 'T', ... (one
4800             character patterns), to handle UTC correctly. Examined patterns
4801             are changed, to 1) common patterns with specified (or current)
4802             culture, 2) common patterns with invariant, 3) The above "one
4803             character patterns" with specified (or current) culture.
4804           - When trying to parse some kind of patterns such as RFC1123, 
4805             always use invariant DateTimeFormatInfo so that they can avoid
4806             parsing with culture-dependent calendar.
4807           - Check "GMT" only when doing Parse(). Don't it when ParseExact().
4808           - Removed extraneous '-' case. It is not special one.
4809           - When ParseExact(), allow only '/' for '/' pattern character.
4810           - When Parse(), allow any non-letter & non-number characters.
4811           - When pattern is not fully parsed, reject that format.
4812           - Added "exact" parameter to some ParseExact().
4813           - RFC1123 pattern is (again) now parsed in local time. I regressed
4814             some problems in previous fix.
4815
4816 2004-06-08  Sebastien Pouliot  <sebastien@ximian.com>
4817
4818         * Decimal.cs: Fixed cast to integer types to truncate (not round) the
4819         value.
4820
4821 2004-06-07  Duncan Mak  <duncan@ximian.com>
4822
4823         * Exception.cs (Source): This can return null.
4824
4825 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
4826
4827         * DateTime.cs: Fixed FromFileTime for negative values. Fixed 
4828         constructor to limit range of milliseconds from 0,999. Fixed
4829         ToType method to work for object, string and DateTime.
4830
4831 2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>
4832
4833         * DateTime.cs: Fixed OLE Automation date conversions: timezone 
4834         insensitive, wrong exception in FromOADate, handling of Min/Max 
4835         values, negative doubles where integer part is negative but 
4836         decimals are positive! Charming format ;-)
4837
4838 2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>
4839
4840         * String.cs: Fixed Join in case separator parameter is null.
4841         * TimeSpan.cs: Cache format errors during parsing and throw 
4842         FormatException only if there was no overflow.
4843
4844 2004-06-06  Gert Driesen <drieseng@users.sourceforge.net>
4845
4846         * MonoCustomAttrs.cs: fixed issue where an empty array was 
4847         returned when GetCustomAttributes was invoked with null
4848         attribute type and there was only one result
4849
4850 2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>
4851
4852         * Decimal.cs: Fixed ToString(String.Empty) to default ("G").
4853         * Int16.cs: Fixed ToString(String.Empty) to default ("G").
4854         * Int32.cs: Fixed ToString(String.Empty) to default ("G").
4855         * Int64.cs: Fixed ToString(String.Empty) to default ("G").
4856         * SByte.cs: Fixed ToString(String.Empty) to default ("G").
4857         * UInt16.cs: Fixed ToString(String.Empty) to default ("G").
4858         * UInt32.cs: Fixed ToString(String.Empty) to default ("G").
4859         * UInt64.cs: Fixed ToString(String.Empty) to default ("G").
4860
4861 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
4862
4863         * Convert.cs: Fixed the convertion of negative integers (byte, short, 
4864         int and long) into string in a specific base (2, 8, 10 or 16).
4865
4866 2004-06-04  Sebastien Pouliot  <sebastien@ximian.com>
4867
4868         * Math.cs: Fixed IEEERemainder to return -0 (0x8000000000000000) when
4869         the dividend is negative and the result is 0 (remainder).
4870
4871 2004-06-03  Sebastien Pouliot  <sebastien@ximian.com>
4872
4873         * Delegate.cs: Fix the NullReferenceException in Combine(Delegate[]).
4874
4875 2004-06-02  Sebastien Pouliot  <sebastien@ximian.com>
4876
4877         * TimeSpan.cs: Fixed overflow issues when delaing with big (days) time
4878         spans. Fixed parsing when only days are presents in the string (which
4879         should be illegal according to the documentation but is supported).
4880
4881 2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>
4882
4883         * TimeSpan.cs: Fixed exceptions in FromXXX methods as they are 
4884         somewhat different from the documentation.
4885
4886 2004-06-01  Gert Driesen <drieseng@users.sourceforge.net>
4887
4888         * Type.cs: added missing attributes on InvokeMember
4889
4890 2004-06-01  Miguel de Icaza  <miguel@ximian.com>
4891
4892         * String.cs: Flag concat with four arguments internal. 
4893
4894 2004-05-31  Sebastien Pouliot  <sebastien@ximian.com>
4895
4896         * Array.cs: Fixed legal case where value is null.
4897         * Byte.cs: Fixed ToString when format is an empty string (use "G").
4898         * Guid.cs: Renamed private fields (and changed some to signed) to 
4899         match MS implementation and allow serialization to work. Fix 
4900         bug #59113.
4901
4902 2004-05-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4903
4904         * DateTime.cs: adjust milliseconds for fraction specifier ('f').
4905
4906 2004-05-30  Miguel de Icaza  <miguel@ximian.com>
4907
4908         * Console.cs: Remove *again* the version of WriteLine with four
4909         arguments;  That should *not* be added.  
4910
4911         Flag it as internal as people migrate their code.
4912
4913 2004-05-29  Sebastien Pouliot  <sebastien@ximian.com>
4914
4915         * Convert.cs: Fixed ToSByte(string,IFormatProvider) to throw 
4916         ArgumentNullException (only case, all other returns 0). Fixed exception
4917         reporting for hex prefix only strings. Fixed ChangeTo where null could
4918         be misinterpreted between null and Empty.
4919
4920 2004-05-28  Sebastien Pouliot  <sebastien@ximian.com>
4921
4922         * Convert.cs: Fixed integer parsing for special cases (0x, 0X for base
4923         16), non-base 10 negative numbers ... see new unit tests. Fixed the 
4924         case when we parse Int64.MinValue (positive doesn't fit a signed long).
4925
4926 2004-05-28  Jackson Harper  <jackson@ximian.com>
4927
4928         * Environment.cs: Increment version number.
4929         
4930 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
4931
4932         * AppDomain.cs (Load): Try loading from assemblyRef.CodeBase if exists.
4933         Fixes #59189.
4934
4935 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
4936
4937         * DateTime.cs : I reverted my fix by accident :(
4938
4939 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
4940
4941         * DateTime.cs :
4942           - In ToString(), Don't use culture-dependent daynames to format
4943             Universal/RFC1123 date/time. Also, use FullDateTimePattern for 'U'.
4944           - Fixed GetDateTimeFormats () that generated incorrect 'U' value 
4945             (since the format string is the same as 'F').
4946
4947 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
4948
4949         * DateTime.cs : don't adjust utc value in ToString(). It must output
4950           the same time value, just adding 'Z' for UTC.
4951
4952 2004-05-28  Atsushi Enomoto <atsushi@ximian.com>
4953
4954         * DateTime.cs : in 'Z' case, remove the 'Z' char from input before
4955           proceeding.
4956
4957 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4958
4959         * AppDomainSetup.cs: InitAppDomainSetup is not needed now.
4960
4961 2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>
4962
4963         * Byte.cs: Fixed parsing for "-0" which is valid for unsigned types.
4964         * Convert.cs: Convert with a base parameter cannot parse negative 
4965         string numbers, even "-0".
4966         * UInt16.cs: Fixed parsing for "-0" which is valid for unsigned types.
4967         * UInt32.cs: Fixed parsing for "-0" which is valid for unsigned types.
4968         * UInt64.cs: Fixed parsing for "-0" which is valid for unsigned types.
4969
4970 2004-05-27  Atsushi Enomoto <atsushi@ximian.com>
4971
4972         * DateTime.cs : 
4973           - Added "yyyy/MM/dd HH:mm:ss 'GMT'" and "yyyy-MM-dd HH:mm:ss 'GMT'"
4974             to common formats (yes, I know it is nothing more than hack)
4975           - Fixed some GetDateTimeFormats() that just returned patterns.
4976           - For InvariantCulture, now try both supported formats and our
4977             predefined formats.
4978           - It was accepting incorrectly extraneous characters. That caused
4979             some UTC/non-UTC bug.
4980           - RFC1123 string should return universal time. Uncomment again (the
4981             problem should went away because of the extra characters fix above.
4982
4983             With some of the changes above, fixed bug #47720.
4984
4985 2004-05-27  Atsushi Enomoto <atsushi@ximian.com>
4986
4987         * DateTime.cs : quick revert 'Z' support for certificate verifications.
4988
4989 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
4990
4991         * Array.cs: Removed duplicate condition if LastIndexOf.
4992
4993 2004-05-26  Atsushi Enomoto <atsushi@ximian.com>
4994
4995         * DateTime.cs :
4996           - Added "yyyy-MM-dd HH:mm:ss" to "compatible patterns".
4997             (Fixed bug #58938.)
4998           - As a quick remedy to accept more patterns, Parse() now also tries
4999             InvariantInfo patterns (this is because we have no more than one
5000             pattern for each pattern component.)
5001           - In _DoParse(), 'Z' should not be read as timezone specifier. Some
5002             culture uses 'Z' as AM/PM designer, and it should be recognized as
5003             part of the UTCpattern (if it actually UTC pattern for the culture
5004             contains 'Z').
5005
5006 2004-05-26  Gert Driesen (drieseng@users.sourceforge.net)
5007
5008         * MonoCustomAttrs.cs: Fixed issue with AllowMultiple, as MS
5009         seems to allow multiple attributes with AllowMultiple at
5010         runtime.
5011
5012 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
5013
5014         * Byte.cs: Throw an OverflowException for negative numbers.
5015         * Convert.cs: Accept 0x and 0X as prefix when parsing base16 strings.
5016         * Environment.cs: Bumped mono_corlib_version to 20 (rng interface).
5017
5018 2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>
5019
5020         * Array.cs: Fixed possible integer overflow.
5021         * BitConverter.cs: Fixed a possible integer overflow in ToString.
5022         * Guid.cs: Added an internal method to create a random Guid without
5023         using CryptoConfig (which is heavy on first use). This is only used
5024         in S.R.E.ModuleBuilder to speedup MCS compilation.
5025         * String.cs: Fixed reported exception for PadLeft|Right. Fixed 
5026         possible integer overflow in methods that takes index and count
5027         as parameters.
5028
5029 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5030
5031         * String.cs: Add new Strcpy icalls which take a char array as 
5032         parameter.
5033
5034 2004-05-25  Atsushi Enomoto <atsushi@ximian.com>
5035
5036         * DateTime.cs : added more invariant format patterns. This should
5037           really fix bug #57656.
5038
5039 2004-05-25 14:14 CET Patrik Torstensson <totte@hiddenpeaks.com>
5040
5041         * BitConverter.cs (ToBoolean): Return true or false instead
5042         of unsafe returing byte as bool. Fixes bug #58874.
5043
5044 2004-05-25  Atsushi Enomoto <atsushi@ximian.com>
5045
5046         * DateTime.cs : In ToString(string, IFormatProvider), use "G" if
5047           string format argument is null.
5048
5049 2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>
5050
5051         * Version.cs: Rename of data fields to match those in Microsoft.NET.
5052           Patch by PAF@design.ru.
5053
5054 2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5055
5056         * DateTime.cs: allow double quotes in the formats. Don't set
5057         next_not_digit to true in presence of single or double quotes. Patch by
5058         Martin Probst.
5059
5060 2004-05-24  Zoltan Varga  <vargaz@freemail.hu>
5061
5062         * AppDomainSetup.cs (InitAppDomainSetup): This one returns void.
5063
5064 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
5065
5066         * Array.cs: Fixed exception when we try to Clear outside bounds.
5067         * Boolean.cs: Fixed Equals for True!=True (see bugzilla #58874).
5068         * BitConverter.cs: Fixed negative index and integer overflow in
5069         To... methods.
5070         * Buffer.cs: Fixed integer overflow in BlockCopy.
5071
5072 2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>
5073
5074         * Array.cs: Clear can now work on multidimentional arrays.
5075         * IntPtr.cs: We now only accept 32bits values in the long constructor
5076         unless we're on a 64 bits machine.
5077         * UIntPtr.cs: We now only accept 32bits unsigned values in the ulong 
5078         constructor unless we're on a 64 bits machine.
5079
5080 2004-05-22  Duncan Mak  <duncan@ximian.com>
5081
5082         * Convert.cs: The file was mostly in DOS endings already, for the
5083         sake of consistency, converted it all to DOS endings.
5084         (ToType): When value is null, immediately return null and don't
5085         ever throw a NullReferenceException. When conversionType is null,
5086         throw an InvalidCastException. Give a better error message when
5087         attempting to convert to a DBNull as well.
5088
5089 2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>
5090
5091         * Decimal.cs: Fixed To... methods that needs to trunk the integer part
5092         of Decimal (and not use the banker's rounding like Convert.To...).
5093         * Single.cs: Fixed CompareTo and Equals (copied fix from Double) wrt
5094         to NaN compares (see new unit tests).
5095
5096 2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>
5097
5098         * Convert.cs: Added checks for integer overflow for From|ToBase64Char.
5099         Also fixed the case where wide (16 bits) characters were converted to 
5100         bytes.
5101
5102 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
5103
5104         * ThreadStaticAttribute.cs
5105         * ContextStaticAttribute.cs
5106         * FlagsAttribute.cs
5107         * ObsoleteAttribute.cs : now that Inherited is false by
5108         default on AttributeUsageAttribute (as it should be) we
5109         need to explicitly set Inherited to false for those
5110         attributes should it be be false.
5111
5112 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
5113
5114         * AttributeUsageAttribute.cs: Inherited property should be
5115         true by defaultrs.cs: respect Inherited property, and
5116
5117 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
5118
5119         * MonoCustomAttrs.cs: respect Inherited property, and
5120         AllowMultiple property of a CustomAttribute. This fixes
5121         a major issue we had with respect to custom attributes.
5122
5123 2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)
5124
5125         * MonoType.cs: throw ArgumentNullException when type parameter in
5126         GetCustomAttributes(Type, bool) is null
5127
5128 2004-05-18  Sebastien Pouliot  <sebastien@ximian.com>
5129
5130         * Buffer.cs: Added checks for null source and destination. Fix failing
5131         CryptoStream unit test.
5132         * Guid.cs: Fixed thread-safety issue. Simplified implementation to use
5133         pseudo-random numbers to generate GUIDs (as per section 3.4 of the 
5134         spec). This removes the TODO to get the computer MAC address and
5135         the chances to get a duplicate GUID (across different machines).
5136
5137 2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5138
5139         * TimeSpan.cs: Only catch expected exceptions, if we get other exceptions
5140           than OverflowExceptions then something went wrong internally
5141
5142 2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5143
5144         * Char.cs: Fix long standing bug with ToLower/ToUpper not being
5145           culture - sensitive
5146
5147 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
5148
5149         * Buffer.cs: Optimize BlockCopy.
5150
5151         * Environment.cs: Bump corlib version.
5152
5153 2004-05-14  Atsushi Enomoto <atsushi@ximian.com>
5154
5155         * __ComObject.cs : This class is not regarded as CLSCompliant by csc.
5156           See also bug #58478.
5157
5158 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5159
5160         * AppDomainSetup.cs: don't throw an exception if dynamic_base has not
5161         been set. Just return null as MS. Fixes bug #58120.
5162
5163 2004-05-14  Marek Safar  <marek.safar@seznam.cz>
5164
5165         * Boolean.cs, Byte.cs, Char.cs, DBNull.cs, DateTime.cs,
5166           Decimal.cs, Double.cs, Enum.cs, Int16.cs, Int32.cs,
5167           Int64.cs, IntegerFormatter.cs, SByte.cs, Single.cs,
5168           String.cs, UInt16.cs, UInt32.cs, UInt64.cs: Removed
5169           useless [CLSCompliant (false)]
5170
5171
5172 2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>
5173
5174         * __ComObject.cs: To please corcompare (no implementation).
5175
5176 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
5177
5178         * Environment.cs: Bump corlib version.
5179
5180 2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>
5181
5182         * Environement.cs: Removed two security attributes for CurrentDirectory
5183         that weren't documented (and anyway we don't support them).
5184
5185 2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5186
5187         * Char.cs: Fix exceptions
5188
5189 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
5190
5191         * MissingMemberException.cs: Fix in serialization constructor.
5192
5193 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5194
5195         * Environment.cs: GetGacPath return value is resolved at runtime on
5196         windows.
5197
5198 2004-05-07  Sebastien Pouliot  <sebastien@ximian.com>
5199  
5200         * Convert.cs: ToBase64CharArray method was depending on a bug in 
5201         S.S.C.ToBase64Transform class to work. Added an internal method to 
5202         provide the same functionality (multiple block processing).
5203
5204 2004-05-06  Jackson Harper  <jackson@ximian.com>
5205
5206         * Environment.cs: Make $HOME the personal directory.
5207
5208 2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>
5209  
5210         * Convert.cs: ToBase64String method was depending on a bug in 
5211         S.S.C.ToBase64Transform class to work. Added an internal method to 
5212         provide the same functionality (multiple block processing).
5213
5214 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
5215  
5216         * Environment.cs: Completed OSVersion property.
5217         * Version.cs: Added internal CreateFromString() to "try" to build the
5218         best version number form the specified string.
5219  
5220 2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5221
5222         * TimeSpan.cs: Redid a lot of stuff in TimeSpan from scratch.
5223           Fixes several potential bugs and makes things way faster.
5224
5225 2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5226
5227         * TimeSpan.cs: Formatting changes
5228
5229 2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>
5230
5231         * Activator.cs: change _flags to a const.
5232         * IntegerFormatter.cs: make tables readonly.
5233         * Convert.cs: tables readonly
5234         * DateTime.cs: ditto.
5235         * IntPtr.cs: avoid a cctor.
5236
5237 2004-04-29  Jackson Harper  <jackson@ximian.com>
5238
5239         * MonoType.cs: 
5240         * Type.cs: NET_2_0 now instead of 1_2. 
5241         
5242 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5243
5244         * Environment.cs: implemented GetLogicalDrives.
5245
5246 2004-04-28  Miguel de Icaza  <miguel@ximian.com>
5247
5248         * Applied patch from Atsushi Enomoto that allows Synchronized
5249         writers to have a `dont close' flag, this fixes 52094
5250
5251 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
5252
5253         * MonoCustomAttrs.cs, MonoType.cs: Property.GetGetMethod() does not
5254         return the method if it is private (it did until now because of a
5255         bug). Make sure it works as it worked before the fix.
5256         * Type.cs: Implemented FilterAttribute delegate.
5257
5258 2004-04-28  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5259
5260         * IntegerFormatter.cs: Prevent the use of the explicit static constuctor
5261
5262 2004-04-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5263
5264         * IntegerFormatter.cs: Made functions internal (needed by other patches)
5265
5266 2004-04-27  Lluis Sanchez Gual  <lluis@ximian.com>
5267
5268         * DateTime.cs: TODO cleaning.
5269         * Delegate.cs: GetObjectData should be virtual.
5270         * IntegerFormatter.cs: Method factorization. I don't want to fix bugs in
5271           30 methods almost identical.
5272         * MulticastDelegate.cs: Implemented GetObjectData.
5273         
5274 2004-04-26  Jackson Harper  <jackson@ximian.com>
5275
5276         * Environment.cs: Things going bump in the night.
5277
5278 2004-04-25  Miguel de Icaza  <miguel@ximian.com>
5279
5280         * Convert.cs (toBase64Transform): Make private.
5281
5282 2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5283
5284         * Convert.cs:
5285         * Decimal.cs:
5286         * DecimalFormatter.cs:
5287         * FloatingPointFormatter.cs: Call invariant Char functions
5288         * Guid.cs: Call invariant Char and String functions
5289         * String.cs: Call invariant Char functions
5290
5291 2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5292
5293         * String.cs: Refactored the Invariant ToXXX into its own internal methods
5294           so they are directly callable within corlib (can prevent early
5295           construction of CultureInfo, InvariantCulture and related classes)
5296
5297 2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5298
5299         * String.cs: Managed impl. of Invariant parts of ToLower, ToUpper
5300         * Char.cs: Managed impl. of Invariant parts of ToLower, ToUpper
5301
5302 2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5303
5304         * String.cs: Check for null values
5305
5306 2004-04-23  Peter Bartok <pbartok@novell.com>
5307
5308         * Environment.cs: GetLogicalDrives now returns "/" instead of null. Gonzalo
5309           will do a better fix in the future, but this way apps can at least use it.
5310
5311 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
5312
5313         * Environment.cs: Better support for GetFolderPath (same results as MS 
5314           on Windows).
5315
5316 2004-04-22  Lluis Sanchez Gual  <lluis@ximian.com>
5317
5318         * Activator.cs: Removed TODOs for finished methods.
5319         * AppDomainSetup.cs: When setting a relative path to ApplicationBase, it
5320           must be relative to the current directory, not the temp directory.
5321           Implemented DynamicBase.
5322         * Convert.cs: No need to create a ToBase64Transform instance at every call
5323           to ToBase64CharArray.
5324         * DateTime.cs: Implemented missing methods FromFileTimeUtc and 
5325           ToFileTimeUtc.
5326         * Decimal.cs: Implemented FromOACurrency and ToOACurrency.
5327         * Delegate.cs: Removed class TODO.
5328         * IntegerFormatter.cs: Use Char.IsLetter and Char.IsDigit instead of ad-hoc
5329           methods.
5330         * Type.cs: Removed TODOs for things already implemented.
5331         
5332 2004-04-21  Lluis Sanchez Gual  <lluis@ximian.com>
5333
5334         * Char.cs: Implemented culture-dependent ToLower and ToUpper methods.
5335         * MulticastDelegate.cs: Removed unused code.
5336
5337 2004-04-19  Lluis Sanchez Gual  <lluis@ximian.com>
5338
5339         * AppDomain.cs: Implemented DynamicDirectory and SetDynamicBase.
5340         * Array.cs: Removed some TODOs in CreateInstance and IndexOf.
5341         * BadImageFormatException.cs: TODO reformat.
5342         * DateTime.cs: Implemented GetDateTimeFormats and GetDateTimeFormats.
5343         * DelegateSerializationHolder.cs: Made class internal.
5344         * Enum.cs: Removed TODO for localization, since this is something that has
5345           to be done for all classes.
5346         * Environment.cs: Removed TODO.
5347         * Exception.cs: Changed ToString to use StringBuilder.
5348         * MonoDummy.cs: Made class internal.
5349         * UnitySerializationHolder.cs: Added support for modules.
5350
5351 2004-04-16  David Sheldon <dave-mono@earth.li>
5352
5353         * DecimalFormatter.cs: Don't append a decimal point after the
5354           end of a number. ((decimal)1).ToString("P0") should be "100 %", not
5355           "100. %"
5356
5357 2004-04-09  Miguel de Icaza  <miguel@ximian.com>
5358
5359         * OutOfMemoryException.cs: Removed the call to Locale.GetText from
5360           this.
5361
5362 2004-04-10  Gert Driesen (drieseng@users.sourceforge.net)
5363
5364         * MonoDummy.cs: added MonoTODO to make sure we remove this class
5365           when its no longer needed
5366
5367 2004-04-09  David Sheldon <dave-mono@earth.li>
5368
5369         * Convert.cs: Allow + signs in strings for ToInt32, and
5370           - if it is base 10.
5371
5372 2004-04-08  Atsushi Enomoto  <atsushi@ximian.com>
5373
5374         * Nullable.cs : usingdecl should also be conditional.
5375
5376 2004-04-07  Martin Baulig  <martin@ximian.com>
5377
5378         * Nullable.cs: New file.
5379
5380 2004-04-07  Martin Baulig  <martin@ximian.com>
5381
5382         * Type.cs (Type.GetGenericArguments): Make this abstract.
5383
5384 2004-04-07  Jackson Harper  <jackson@ximian.com>
5385
5386         * Environment.cs: Increase corlib version number.
5387         
5388 2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5389
5390         * Environment.cs:
5391         (ExpandEnvironmentVariables): on windows, env. vars. are case
5392         insensitive.
5393
5394 2004-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5395
5396         * AppDomain.cs: Added static to [ThreadStatic] _principal field. 
5397         Removed [ThreadStatic] for _principalPolicy (not required).
5398
5399 2004-04-06  Miguel de Icaza  <miguel@ximian.com>
5400
5401         * Guid.cs: Flag as Sequential.
5402
5403 2004-04-02  Dick Porter  <dick@ximian.com>
5404
5405         * String.cs: More sanity checks in Replace().  Fixes bug 55822.
5406
5407 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5408
5409         * Environment.cs: Implement ExpandEnvironmentVariables static method.
5410         Now call the runtime to get the username (fix #56144).
5411
5412 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5413
5414         * MonoType.cs: AssemblyQualifiedName now displays culture, version...
5415         Fixes bug #56341.
5416
5417 2004-03-29  Miguel de Icaza  <miguel@ximian.com>
5418
5419         * Console.cs: If we fail to open stdin/stdout/stderr, create
5420         readers with a NullStream.  This can happen if our caller does not
5421         setup stdin/stoud/stderr file handles.  #56158 exposed this, but
5422         it will happen elsewhere.
5423
5424 2004-03-29  Lluis Sanchez Gual <lluis@ximian.com>
5425
5426         * Convert.cs: In ToSingle(double), removed checks for Single.MaxValue
5427         and Single.MinValue. MS.NET don't do it. This fixes bug #56005.
5428         * Guid.cs: Added support for guid strings in the "N" and "P" formats in
5429           the constructor. This fixes bug #54019.
5430
5431 2004-03-23  Lluis Sanchez Gual <lluis@ximian.com>
5432
5433         * FloatingPointFormatter.cs: Made the class thread safe. Had to move some
5434           internal variables to structures that are moved around methods.
5435           Factorized some common formatting code into FormatNumberInternal.
5436           
5437 2004-03-23  Dick Porter  <dick@ximian.com>
5438
5439         * DateTime.cs: Allow any character for DateSeparator when parsing,
5440         except TimeSeparator, a digit or a letter.  Fixes bug 54047.  Also
5441         deleted the previous fix for 54721, because this covers it too.
5442         
5443 2004-03-23  Dick Porter  <dick@ximian.com>
5444
5445         * DateTime.cs: Check the date string for too many digits when
5446         parsing.  Fixes bugs 53023 and 53025.
5447
5448 2004-03-22  Dick Porter  <dick@ximian.com>
5449
5450         * String.cs: Use the provider when converting strings to other
5451         types.
5452
5453         * DateTime.cs: Add MM-dd-yyyy to the list of standard date parsing
5454         formats.  Fixes bug 54721.
5455
5456 2004-03-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5457
5458         * Console.cs: Styled, optimized calls
5459         * CrossAppDomainDelegate.cs: Small header fix
5460         * Buffer.cs: Style, improve errors
5461         * BitConverter.cs: Style, improve errors, remove obsolete comment
5462         * Attribute.cs: Style, improve errors, small fix
5463         * Array.cs: Style, improve errors, small fix, added TODOs
5464         * Activator.cs: Style, localized errors, added error checks
5465         * Byte.cs: Style, localized errors, fixed wrong exception parameters
5466         * Char.cs: Style
5467         * Boolean.cs: Style
5468         * AppDomainSetup.cs: Style
5469         * AppDomain.cs: Style, implemented two methods (redirect)
5470
5471 2004-03-21  Jackson Harper  <jackson@ximian.com>
5472
5473         * FloatingPointFormatter.cs: Set precision from number format info
5474         when it is not specified. This fixes bug #54983.
5475         
5476 2004-03-18  Nick Drochak <ndrochak@ieee.org>
5477
5478         * Math.cs: Use IsNaN() method not "x == NaN".
5479
5480 2004-03-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5481
5482         * EntryPointNotFoundException.cs
5483         * DuplicateWaitObjectException.cs
5484         * DllNotFoundException.cs
5485         * DivideByZeroException.cs
5486         * ContextMarshalException.cs
5487         * CannotUnloadAppDomainException.cs
5488         * BadImageFormatException.cs
5489         * ArrayTypeMismatchException.cs
5490         * ArithmeticException.cs
5491         * ArgumentOutOfRangeException.cs
5492         * ArgumentNullException.cs
5493         * ArgumentException.cs
5494         * ApplicationException.cs
5495         * AppDomainUnloadedException.cs: Added missing HResult overrides
5496
5497         * BadImageFormatException.cs: Improved/ Fixed implementation
5498
5499 2004-03-15  Sebastien Pouliot  <sebastien@ximian.com>
5500
5501         * Random.cs: Corrected random value when Next is called with a 
5502         negative value. Testing indictae that our results aren't exactly the 
5503         same as MS, we have a +/- 1 (probably rounding errors due to 
5504         different implementation).
5505
5506 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5507
5508         * Environment.cs: updated corlib version.
5509
5510 2004-03-15  Lluis Sanchez Gual <lluis@ximian.com>
5511
5512         * Boolean.cs, Byte.cs, Char.cs, Double.cs, Int16.cs, Int32.cs, Int64.cs,
5513           SByte.cs, Single.cs, UInt16.cs, UInt32.cs, UInt64.cs: Renamed internal
5514           field "value" to "m_value", so it is interoperable with MS.NET when 
5515           serializing and deserializing data. Based on the patch from Daniel
5516           Keep.
5517
5518 2004-03-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5519
5520         * TypeInitializationException.cs
5521         * SystemException.cs
5522         * StackOverflowException.cs
5523         * RankException.cs
5524         * OverflowExceptionException.cs
5525         * OutOfMemoryException.cs
5526         * NullReferenceException.cs
5527         * NotSupportedException.cs
5528         * NotFiniteNumberException.cs
5529         * InvalidOperationException.cs
5530         * InvalidCastException.cs
5531         * IndexOutOfRangeException.cs
5532         * FormatException.cs
5533         * ExecutionEngineException.cs: improved parameter names
5534
5535 2004-03-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5536
5537         * Enum.cs
5538         * EntryPointNotFoundException.cs
5539         * DuplicateWaitObjectException.cs
5540         * DoubleFormatter.cs
5541         * DllNotFoundException.cs
5542         * DivideByZeroException.cs
5543         * DelegateSerializationHolder.cs
5544         * Delegate.cs
5545         * DBNull.cs
5546         * ContextStaticAttribute.cs
5547         * ContextMarshalException.cs
5548         * ContextBoundObject.cs
5549         * CLSCompliantAttribute.cs
5550         * CharEnumerator.cs
5551         * CannotUnloadAppDomainException.cs
5552         * BadImageFormatException.cs
5553         * AttributeUsageAttribute.cs
5554         * AttributeTargets.cs
5555         * AsyncCallback.cs
5556         * AssemblyLoadEventHandler.cs
5557         * AssemblyLoadEventArgs.cs
5558         * ArrayTypeMismatchException.cs
5559         * ArithmeticException.cs
5560         * ArgumentOutOfRangeException.cs
5561         * ArgumentNullException.cs
5562         * ArgumentException.cs
5563         * ArgIterator.cs
5564         * ApplicationException.cs
5565         * AppDomainUnloadedException.cs
5566         * AppDomain.cs: Mono styled, fixed exceptions/ locales
5567           removed excess usings
5568
5569 2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>
5570
5571         * Convert.cs: FromBase64 now ignore some characters (tab, LF, CR and
5572         spaces) which fixed #54939. Changed the way that the length is 
5573         validated (multiple of 4) because the ignored characters must not be
5574         included in the count.
5575
5576 2004-03-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5577
5578         * String.cs: Monostyled
5579
5580 2004-03-09  Jackson Harper  <jackson@ximian.com>
5581
5582         * Char.cs: Only use a byte for numeric data.
5583         
5584 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5585
5586         * TypedReference.cs: Added missing Attributes
5587         * ParamArrayAttribute.cs: Small style fix
5588         * OperatingSystem.cs: Added .Net 1.1 member
5589
5590 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5591
5592         * FieldAccessException.cs
5593         * FormatException.cs
5594         * InvalidCastException.cs
5595         * InvalidOperationException.cs
5596         * MemberAccessException.cs
5597         * MethodAccessException.cs
5598         * MissingFieldException.cs: Locale strings
5599         * MissingMemberException.cs: Locale strings
5600         * MissingMethodException.cs: Locale strings
5601         * NotFiniteNumberException.cs
5602         * NotImplementedException.cs
5603         * NotSupportedException.cs
5604         * NullReferenceException.cs
5605         * ObjectDisposedException.cs
5606         * OutOfMemoryException.cs
5607         * OverflowExceptionException.cs
5608         * PlatformNotSupportedException.cs
5609         * RankException.cs: Added missing HResult overrides
5610
5611 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5612
5613         * RuntimeTypeHandle.cs
5614         * RuntimeMethodHandle.cs
5615         * RuntimeFieldHandle.cs: Implemented serialization (partially untested)
5616
5617 2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5618
5619         * EventArgs.cs
5620         * Exception.cs
5621         * ExecutionEngineException.cs
5622         * FieldAccessException.cs
5623         * FormatException.cs
5624         * GC.cs
5625         * Guid.cs
5626         * IndexOutOfRangeException.cs
5627         * IntPtr.cs
5628         * InvalidCastException.cs
5629         * InvalidOperationException.cs
5630         * InvalidProgramException.cs
5631         * IServiceProvider.cs
5632         * LoaderOptimization.cs
5633         * LoaderOptimizationAttribute.cs
5634         * MarshalByRefObject.cs
5635         * Math.cs
5636         * MemberAccessException.cs
5637         * MethodAccessException.cs
5638         * MissingFieldException.cs
5639         * MissingMemberException.cs
5640         * MissingMethodException.cs
5641         * MultiCastDelegate.cs
5642         * MulticastNotSupportedException.cs
5643         * NonSerializedAttribute.cs
5644         * NotFiniteNumberException.cs
5645         * NotImplementedException.cs
5646         * NotSupportedException.cs
5647         * NullReferenceException.cs
5648         * ObjectDisposedException.cs
5649         * ObsoleteAttribute.cs
5650         * OperatingSystem.cs
5651         * OutOfMemoryException.cs
5652         * OverflowExceptionException.cs
5653         * PlatformID.cs
5654         * PlatformNotSupportedException.cs
5655         * Random.cs
5656         * RankException.cs
5657         * ResolveEventArgs.cs
5658         * ResolveEventHandler.cs
5659         * RuntimeFieldHandle.cs
5660         * RuntimeMethodHandle.cs
5661         * RuntimeTypeHandle.cs: Mono styled, fixed exceptions/ locales
5662           removed excess usings
5663
5664 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5665
5666         * SystemException.cs: Exceptions set the HResult
5667         * TypeLoadException.cs: Exceptions set the HResult, fixed wrong exception usage
5668         * SByte.cs: Implemented two missing methods, fix wrong parameters for ArgumentNullException
5669
5670 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5671
5672         * TypedReference.cs
5673         * TypeLoadException.cs
5674         * TypeInitializationException.cs
5675         * TypeCode.cs
5676         * TimeZone.cs
5677         * ThreadStaticAttribute.cs
5678         * SystemException.cs
5679         * STAThreadAttribute.cs
5680         * StackOverflowException.cs
5681         * SingleFormatter.cs
5682         * Single.cs
5683         * SerializableAttribute.cs: Mono styled, fixed exceptions/ locales
5684           removed excess usings
5685
5686 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5687
5688         * UnauthorizedAccessException.cs: Exceptions set the HResult
5689         * UInt64.cs: Implemented two missing methods
5690         * UInt32.cs: Fix wrong parameters for ArgumentNullException, simpler convert
5691         * UInt16.cs: Fix wrong parameters for ArgumentNullException, simpler convert
5692
5693 2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5694
5695         * WeakReference.cs
5696         * Void.cs
5697         * Version.cs
5698         * ValueType.cs
5699         * UnitySerializationHolder.cs
5700         * UnhandledExceptionEventHandler.cs
5701         * UnauthorizedAccessException.cs
5702         * UIntPtr.cs
5703         * UInt64.cs
5704         * UInt32.cs
5705         * UInt16.cs: Mono styled, Locale.GetText fixes, msg fixes
5706
5707 2004-03-04  Lluis Sanchez Gual <lluis@ximian.com>
5708
5709         * Environment.cs: Bump corlib version.
5710
5711 2004-03-04  Jackson Harper  <jackson@ximian.com>
5712
5713         * Char.cs: New managed implementation. Modified patch by Andreas Nahr.
5714         
5715 2004-02-27  Lluis Sanchez Gual <lluis@ximian.com>
5716
5717         * String.cs: Concat() fixed crash when one of the arguments is an object
5718           whose ToString() method returns null.
5719         * TypeLoadException.cs: Added some serialization fiels, needed for
5720           compatibility with MS.NET.
5721
5722 2004-02-23 Ben Maurer  <bmaurer@users.sourceforge.net>
5723
5724         * String.cs (Equals): Speed up this method by avoiding Array
5725          Bounds Checks and by comparing by 32 bit words rather than 16 bit chars.
5726
5727         This gives between 0x (for 1 char) and >2x (for large strings)
5728         factor of improvement.
5729
5730         A big thanks to Miguel, who suggested the integer compares.
5731
5732 2004-02-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5733
5734         * MonoType.cs: use the binder in GetPropertyImpl.
5735
5736 2004-02-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5737
5738         * Math.cs: MonoStyled, replaced space with tabs,
5739           speedup of some methods by avoiding method calls
5740
5741 2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>
5742
5743         * Char.cs : optimized IsSeparator(), IsWhiteSpace() and IsDigit().
5744           (Moved from InternalCall to Managed code).
5745
5746 2004-02-17  Martin Baulig  <martin@ximian.com>
5747
5748         * MonoType.cs (GetConstructors): Renamed the interncall to
5749         GetConstructors_internal(), made it internal and added a `Type
5750         reflected_type' argument to it.
5751         (GetEvents, GetFields): Likewise.
5752         (GetMethodsByName): Added `Type reflected_type' argument.
5753         (GetPropertiesByName): Likewise.
5754
5755 2004-02-16  Jackson Harper  <jackson@ximian.com>
5756
5757         * FloatingPointFormater.cs: Allow precision to be up to the number
5758         of decimals without rounding.
5759         
5760 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
5761
5762         * Delegate.cs (Equals): Do not compare method_ptr, since it might
5763         point to a trampoline.
5764
5765 2004-02-12  Jackson Harper  <jackson@ximian.com>
5766
5767         * AppDomainSetup.cs: If relative paths are used they should be
5768         rooted in the temp directory.
5769         
5770 2004-02-11  Marek Safar  <marek.safar@seznam.cz>
5771
5772         * Type.cs (FilterNameIgnoreCase_impl): Added extra check for speedup.
5773
5774 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
5775
5776         * AppDomain.cs (Load): Check that assemblyRef.Name is not empty, to
5777         avoid an assert in the runtime.
5778
5779 2004-02-08  Duncan Mak  <duncan@ximian.com>
5780
5781         * Convert.cs (ToType): Always let a Convert.ChangeType call
5782         succeed if the source object is already of the destination type.
5783
5784         Patch by Ian MacLean (ianm@activestate.com).
5785
5786 2004-02-05  Sebastien Pouliot  <sebastien@ximian.com>
5787
5788         * AppDomain.cs: Implemented SetPrincipalPolicy and SetThreadPrincipal.
5789
5790 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
5791
5792         * Environment.cs: Bump corlib version.
5793
5794 2004-02-02  Sebastien Pouliot  <sebastien@ximian.ca>
5795
5796         * DateTime.cs: Corrected support for "Z" in the mask (Parse). This
5797         fix bug #53461.
5798
5799 2004-01-27  Sebastien Pouliot  <spouliot@videotron.ca>
5800
5801         * Exception.cs: Changed ToString to remove the \n when no stack trace
5802         is present (which fixed a unit test for SecurityException). Changed
5803         all \n to Environment.NewLine.
5804
5805 2004-01-27  Lluis Sanchez Gual <lluis@ximian.com>
5806
5807         * ContextBoundObject.cs: Removed TODO.
5808
5809 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5810
5811         * TimeSpan.cs: fixed bug #52075. Days (int) don't rely on TotalDays
5812         (double), which might round up.
5813
5814 2004-01-19  Jackson Harper <jackson@ximian.com>
5815
5816         * FloatingPointFormatter.cs: Use the default decimal digits count
5817         if they are not specified. This fixes bug #52927.
5818         
5819 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
5820
5821         * Environment.cs: Bump version number.
5822
5823 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
5824
5825         * Type.cs: Added internal call for IsInstanceOfType. The old implementation
5826         uses IsAssignableFrom(o.GetType()), which is not always valid for 
5827         transparent proxies (because GetType will not return the type of the remote
5828         object if its assembly is not present).
5829
5830 2004-01-18  David Sheldon <dave-mono@earth.li>
5831
5832   * FloatingPointFormatter.cs: Skip the decimal point if we have an 
5833     integer mantassa. So: 1E+15, rather than 1.E+15.
5834
5835 2004-01-18  David Sheldon <dave-mono@earth.li>
5836
5837         * Array.cs (GetValue/SetValue): Throw NullRef exception like .NET 1.1, 
5838         even though docs say it should be an ArgumentNull. Two test cases now
5839   pass. See also nickd's commit of 2003-12-24.
5840
5841 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5842
5843         * Environment.cs: increased corlib version.
5844
5845 2004-01-14  Lluis Sanchez Gual <lluis@ximian.com>
5846
5847         * MonoCustomAttrs.cs: Removed attribute cache. Attribute instances can't
5848         be reused because they could be modified. This fixes bug #52655.
5849
5850 2004-01-12  Patrik Torstensson
5851
5852         * Environment.cs: Bump corlib version number due to new StringBuilder
5853         
5854         * String.cs: New internal method to support the new StringBuilder that
5855         uses the string as a buffer (until ToString is called)
5856
5857 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
5858
5859         * Environment.cs: Bump corlib version number for real this time.
5860         
5861         * AppDomain.cs (LoadAssembly): Pass the assembly name as a string to
5862         the runtime, so it can take into account the Culture etc.
5863
5864         * Environment.cs: Bump corlib version number.
5865         
5866 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5867
5868         * MonoType.cs: GetMethods renamed to GetMethodsByName. It takes a
5869         new parameter with the method name and a boolean for ignoring case.
5870         Removed some string comparisons no longer needed.
5871
5872 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5873
5874         * MonoType.cs: GetProperties renamed to GetPropetiesByName. It takes a
5875         new parameter with the property name and a boolean for ignoring case.
5876         Fixes bug #52753.
5877
5878 2004-01-11  David Sheldon <dave-mono@earth.li>
5879
5880         * DateTime.cs: Correct processing of formats with multiple '-'s, fixing
5881         bug 52274.
5882
5883 2004-01-10  Zoltan Varga  <vargaz@freemail.hu>
5884
5885         * AppDomain.cs: Keep track of type resolve and assembly resolve 
5886         events in progress to prevent infinite recursion.
5887
5888 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
5889
5890         * Console.cs: Test for UTF-8 being present anywhere on the
5891         string, also do ToUpper instead of ToLower, which will work even
5892         around the ICU bug with different locales (#52065), and addresses #52101
5893
5894 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
5895
5896         * Environment.cs: Bump version.
5897
5898 2003-12-24 Ben Maurer  <bmaurer@users.sourceforge.net>
5899
5900         * Type.cs (IsNotPublic): One would normally assume that
5901         IsNotPublic == !IsPublic, but this is not the case (note to MS,
5902         make better names ;-). Fixes #52547, `Type.IsNotPublic not 
5903         correct for Nested types'
5904
5905 2003-12-24  Nick Drochak  <ndrochak@ieee.org>
5906
5907         * Array.cs (CreateInstance): Throw NullRef exception like .NET 1.1, 
5908         even though docs say it should be an ArgumentNull. Sent email to MS
5909         about this "bug".
5910
5911 2003-12-23  Lluis Sanchez Gual  <lluis@ximian.com>
5912
5913         * Exception.cs: Several changes to make it compatible with MS.NET (needed
5914         for remoting interoperability): set a default value for hresult, added 
5915         initialization of class_name, serialization field RemoteStackTrace must
5916         be RemoteStackTraceString, added ser. field ExceptionMethod.
5917
5918         * IndexOutOfRangeException.cs: Added serialization constructor.
5919
5920 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
5921
5922         * Int32 (Parse):
5923           Int64 (Parse): Fix overflow checking for AllowHexSpecifier
5924
5925 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
5926
5927         * MonoType.cs (GetMethodImpl): Only call FindMostDerivedMatch if the
5928         user supplied no parameter info, but not when the user supplied an
5929         empty parameter list. This fixes IKVM.
5930
5931         * Environment.cs: Bump corlib version.
5932
5933 2003-12-19  Dick Porter  <dick@ximian.com>
5934
5935         * String.cs: Added Compare shortcut for length==0.
5936
5937 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
5938
5939         * Environment.cs: Bump corlib version.
5940
5941 2003-12-17  Dick Porter  <dick@ximian.com>
5942
5943         * String.cs: Fix StartsWith and EndsWith when the argument is the
5944         empty string.  Fixes bug 52283.
5945
5946 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
5947
5948         * Environment.cs (HasShutdownStarted): Implement.
5949
5950 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
5951
5952         * Environment.cs (HasShutdownStarted): Make this static under NET 1.1.
5953         
5954         * Environment.cs: Bump version number.
5955
5956 2003-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5957
5958         * DateTime.cs: don't bail out with that year out of range error on
5959         stuff like "MM/dd/yyyy HH:MM:ss".
5960
5961 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
5962
5963         * Environment.cs: Make it a const instead.
5964         
5965         * Environment.cs: Make version field static.
5966
5967 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
5968
5969         * Type.cs: Make DefaultBindingFlags protected.
5970
5971         * Environment.cs: Applied patch from Todd Berman (tbermann@gentoo.org).
5972         Add new GacPath property + its associated icall.
5973
5974 2003-12-09 Anirban Bhattacharjee <banirban@novell.com>
5975
5976         * DateTime.cs : Bugs fixed (41845, 51422)
5977         * MonoType.cs : Exception message changed 
5978
5979 2003-12-08  Martin Baulig  <martin@ximian.com>
5980
5981         * Type.cs (MakeByRefType): New public method.
5982
5983 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
5984
5985         * Environment.cs: Add a version number for the corlib-runtime interface
5986         to make it easier to diagnose problems resulting from a mismatch 
5987         between the two.
5988
5989 2003-12-08  Patrik Torstensson   <p@rxc.se>
5990
5991         * Type.cs (GetMethod): Check type arguments within array
5992         * MonoType.cs (GetMethodImpl): Handle methods with a new slot
5993         (same signature but different classes (derived level)
5994
5995 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
5996
5997         * Type.cs (MakeArrayType): Add argument checking.
5998
5999 2003-12-06  Dick Porter  <dick@ximian.com>
6000
6001         * String.cs: Don't use CompareInfo for non-culture-sensitive
6002         IndexOf and LastIndexOf methods.
6003
6004 2003-12-06  Ravindra  <rkumar@novell.com>
6005
6006         * DateTime.cs: Made Parse(string, IFormatProvider) method to
6007         use second argument. Fixed bug #51464.
6008
6009 2003-12-04  Martin Baulig  <martin@ximian.com>
6010
6011         * Type.cs (Type.MakeArrayType): New public method.
6012
6013 2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6014
6015         * Buffer.cs:
6016         (BlockCopy): make the exception thrown helpful.
6017
6018 2003-12-03  Dick Porter  <dick@ximian.com>
6019
6020         * String.cs: Calling Replace on an empty string returns itself.
6021
6022 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
6023
6024         * MonoType.cs: Get rid of get_type_info, use a separate icall for
6025         each property instead.
6026
6027 2003-12-02  Dick Porter  <dick@ximian.com>
6028
6029         * Decimal.cs: Fix NumberFormatInfo lookup.  Patch by
6030         Mohammad DAMT (mdamt@cdl2000.com), fixes bug 51443.
6031
6032 2003-12-01  Dick Porter  <dick@ximian.com>
6033
6034         * String.cs: Make Compare, IndexOf, LastIndexOf, StartsWith,
6035         Replace, ToLower, ToUpper and Equals use the correct CultureInfo.
6036
6037 2003-11-28  Dick Porter  <dick@ximian.com>
6038
6039         * Type.cs: 
6040         * MonoType.cs: 
6041         * Enum.cs: 
6042         * Boolean.cs: Do string compares with the Invariant culture.
6043
6044 2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>
6045
6046         * Array.cs: make the enumerator ICloneable
6047
6048 2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>
6049
6050         * Decimal.cs (ToXXX): Call Convert.ToXXX.
6051
6052 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
6053
6054         * AppDomain.cs: Applied patch from ztashev@openlinksw.co.uk (Zdravko Tashev). 
6055         Implement Load(byte[]) methods.
6056
6057         * BadImageFormatException.cs: Fix ToString.
6058
6059 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
6060
6061         * MonoType.cs: Make Standard|HasThis match Standard in GetMethod and
6062         GetConstructor, as done by MS.
6063
6064 2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
6065
6066         * FloatingPointFormatter.cs: Removed some unused variables to prevent csc compiler warnings
6067
6068 2003-11-18  Lluis Sanchez Gual  <lluis@ximian.com>
6069
6070         * TypeInitializationException.cs: Added missing serialization constructor.
6071
6072 2003-11-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6073
6074         * AppDomainSetup.cs: Don't add an extra '/' at the end of 
6075         ApplicationBase. The tests pass now with mono.
6076
6077 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
6078
6079         * ValueType.cs: New optimized implementation for Equals and GetHashCode.
6080
6081 2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6082
6083         * Environment.cs: use Directory in CurrentDirectory property.
6084         We were not throwing any exception when setting the directory to an
6085         invalid path.
6086
6087 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6088
6089         * Array.cs:
6090         * Delegate.cs: implemented 1.1 stuff.
6091
6092         * Enum.cs:
6093         * IntPtr.cs: removed extra attribute.
6094         * PlatformID.cs: added WinCE.
6095
6096 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6097
6098         * ValueType.cs:
6099         (Equals): compare the fields of structs too.
6100         (GetHashCode): combine the hash code of all the fields.
6101         Fixes bug #50901 (will remove the icall in a couple of days).
6102
6103 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6104
6105         * Array.cs: fixed Clear for non-zero bounded arrays. Fixes bug #50968.
6106
6107 2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6108
6109         * DateTime.cs: handle century when we try to parse 4-digit years and
6110         only 2 digits are present. Fixes bug #49394.
6111
6112 2003-11-13  Miguel de Icaza  <miguel@ximian.com>
6113
6114         * Console.cs: On utf-8 consoles, use unmarked output.
6115
6116 2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
6117
6118         * IAppDomainSetup.cs:
6119         * _AppDomain.cs: 
6120         * Object.cs:
6121         * Type.cs: Added missing attribute
6122
6123 2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>
6124
6125         * Environment.cs: Added internal method for getting the path to 
6126         machine.config.
6127         
6128 2003-11-12 Jackson Harper <jackson@ximian.com>
6129
6130         * Environment.cs: Add MyMusic and MyPictures to the SpecialFolder
6131         enum. This fixes the SWF build.
6132         
6133 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
6134
6135         * PlatformID.cs: Remove Unix platform, we cant expose constants
6136         that are not in the framework.
6137
6138         * OperatingSystem.cs: Adjust for the breakage.
6139
6140         * RuntimeMethodHandle.cs: Fix signature.
6141
6142         * Double.cs: Fix signature of TryParse.
6143
6144         * String.cs (Concat (object, object, object, object)): Add missing method.
6145
6146         * OperatingSystem.cs: Removed Equals, GetHashCode, they were not
6147         in the .NET Framework.
6148
6149         * Enum.cs: Hide constructor.  
6150
6151         Fix ToUint16 to be explicitly implemented.
6152
6153         * Console.cs: Add couple of extra missing methods (Write and
6154         WriteLine overloaded)
6155
6156 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
6157
6158         * AppDomain.cs, Activator.cs: New unimplmented entry points from
6159         1.1 (Com activation related).
6160         
6161         * Exception.cs: Formatting.
6162         
6163         * IServiceProvider.cs: Add ComVisible (true).
6164
6165         * AppDomainSetup.cs: Add a couple more properties from .NET 1.1 
6166
6167 2003-11-03  Lluis Sanchez Gual <lluis@ximian.com>
6168
6169         * AppDomain.cs: Added some null checks in Load methods. This fixes bug
6170           #50356.
6171
6172 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
6173
6174         * AppDomain.cs: Make the SetDomain icalls private + call InternalInvoke
6175         on MonoMethod instead of Invoke.
6176
6177 2003-11-01  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6178
6179         * DateTime.cs: Fixed Add* methods handling. Now it works properly
6180         with extreme values (there is a bug with Overflow and Underflow in
6181         long type).
6182
6183 2003-10-31  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6184
6185         * DateTime.cs: Fixed a few format bugs.
6186
6187 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
6188
6189         * AppDomain.cs (InternalPushDomainRef): New icalls.
6190
6191         * AppDomain.cs (InvokeInDomain): New method to execute code in a 
6192         different appdomain.
6193
6194 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
6195
6196         * AppDomain.cs: Fix prototype of InternalIsFinalizingForUnload.
6197
6198 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
6199
6200         * AppDomain.cs (IsFinalizingForUnload): Implement.
6201
6202         * AppDomain.cs (Unload): Move the notification of OnUnload listeners
6203         to unmanaged code.
6204
6205 2003-10-25  Martin Baulig  <martin@ximian.com>
6206
6207         * MonoType.cs: Don't make this sealed.
6208
6209 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
6210
6211         * AppDomain.cs: Add InternalInvokeInDomain[ByID] icalls.
6212
6213 2003-10-24  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6214
6215         * DateTime.cs: When handling '-' as a date separator, MS.NET uses
6216         the same symbol in the parse (not DateTimeFormatInfo.DateSeparator).
6217
6218 2003-10-22  Dick Porter  <dick@ximian.com>
6219
6220         * DateTime.cs: Handle '-' as a date separator when parsing formats.
6221
6222 2003-10-20  Duncan Mak  <duncan@ximian.com>
6223
6224         * Delegate.cs (CreateDelegate): Avoid creating an extra Type array
6225         and merge the two iterations into one.
6226
6227 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
6228
6229         * TypedReference.cs: Add new field used by the runtime.
6230
6231 2003-10-15  Martin Baulig  <martin@ximian.com>
6232
6233         * Type.cs (Type.DeclaringMethod): For a generic method's type
6234         parameter, return this method - otherwise, return null.
6235
6236 2003-10-14  Martin Baulig  <martin@ximian.com>
6237
6238         The generics API has changed in the spec since it was added here;
6239         these modifications make it match the spec again.
6240
6241         * Type.cs
6242         (GetGenericParameters): Renamed to `GetGenericArguments'.
6243         (HasGenericParameters): Renamed to `HasGenericArguments'.
6244         (HasUnboundGenericParameters): Renamed to `ContainsGenericParameters'.
6245         (IsGenericTypeDefinition): New property.
6246         (IsUnboundGenericParameter): Renamed to `IsGenericParameter'.
6247
6248         * MonoType.cs (ContainsGenericParameters): Implement this here;
6249         this is no interncall anymore.
6250
6251 2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6252
6253         * Delegate.cs: add the method name to the exception when it cannot be
6254         bound.
6255         * Exception.cs: fix nullref in Source.
6256
6257 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
6258
6259         * Array.cs: Add argument checking to GetValue and SetValue.
6260
6261 2003-10-09  Miguel de Icaza  <miguel@ximian.com>
6262
6263         * DateTime.cs: Patch from Chris Turchin: the DateTime.MaxValue
6264         should not be TimeSpan.MaxValue, because it overflow.  Set this to
6265         be MAX_VALUE_TICKS
6266
6267 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6268
6269         * MonoCustomAttrs.cs: from_cache is now thread-safe. Yeah, I got a
6270         duplicate entry exception.
6271
6272 2003-10-08 Ben Maurer  <bmaurer@users.sourceforge.net>
6273
6274         * DateTime.cs (ToString): Total rewrite, fixes #49358.
6275
6276 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
6277
6278         * AppDomain.cs: Change accessibility of DoTypeResolve to fix build.
6279
6280 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6281
6282         * Enum.cs:
6283         (Equals): check that the object is an Enum before comparing the types.
6284
6285 2003-09-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6286
6287         * Array.cs: reduced xsp allocated memory by 1/2.
6288
6289 2003-09-25  Martin Baulig  <martin@ximian.com>
6290
6291         * Type.cs (Type.IsGenericTypeDefinition): Removed this method
6292         since it was identical to GetGenericTypeDefinition().
6293         (Type.IsGenericInstance): New property.
6294
6295 2003-09-24  Duncan Mak  <duncan@ximian.com>
6296
6297         * Math.cs (Abs): Fix double Locale.GetText bug reported by
6298         davejp@volny.cz. This fixes #48788.
6299
6300 2003-09-14  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6301
6302         * FloatingPointFormatter.cs: Add the necessary castings to char
6303         conversions.
6304
6305 2003-09-13  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6306
6307         * FloatingPointFormatter.cs: Make the method calls more functional
6308         for protecting the values from different threads (make it more
6309         thread safe).
6310
6311 2003-09-13  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6312
6313         * FloatingPointFormatter.cs: Fix a bug with the negative value of
6314         count parameter.
6315
6316 2003-09-12  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6317
6318         * FloatingPointFormatter.cs: Applied a lot of improvements in string
6319         construction, make use of Append/Insert with the "count" parameter.
6320     Thanks to Ben Maurer.
6321
6322 2003-09-10  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6323
6324         * FloatingPointFormatter.cs: Fix a bug with Custm Format.
6325
6326         * FloatingPointFormatter.cs: Fix a little bug I've introduced the
6327         last change.
6328
6329 2003-09-10  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6330
6331         * DoubleFormatter.cs: A few optimizations. Now, only one object
6332         is created to convert all double numbers.
6333
6334         * SingleFormatter.cs: A few optimizations. Now, only one object
6335         is created to convert all float numbers.
6336
6337         * FloatingPointFormatter.cs: Split the "number type parameters" from
6338         the "numver value and format parameters". The first ones are in the
6339         constructor and the others are in a method.
6340
6341 2003-09-09  Zoltan Varga  <vargaz@freemail.hu>
6342
6343         * Array.cs: Added argument checking to some NET_1_1 methods.
6344
6345 2003-09-04  Martin Baulig  <martin@ximian.com>
6346
6347         * Type.cs (GetGenericTypeDefinition): Make this method virtual.
6348
6349 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6350
6351         * Array.cs: added the new overloaded CreateInstance, GetValue, SetValue
6352         taking 'longs'. All tests pass.
6353
6354 2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
6355
6356         * Exception.cs: Add ClassInterface attr. Implement TargetSite and
6357         Source. Remove MonoTODO attributes (class is 100% done). Also
6358         passes all Rotor tests for Exception!
6359
6360 2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>
6361
6362         * Enum.cs: Remove [MonoTODO]'s that had been completed.
6363
6364 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6365
6366         * String.cs: fixed bug #47802.
6367
6368 2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>
6369
6370         * String.cs: Created method FormatHelper that does formatting,
6371         using a StringBuilder.
6372
6373 2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6374
6375         * Array.cs: patch by lb@lb.ods.org that fixes bug #47707.
6376
6377 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6378
6379         * Delegate.cs: CreteDelegate (Type, MethodInfo) only supports static
6380         methods under MS.
6381
6382 2003-08-11  Duncan Mak  <duncan@ximian.com>
6383
6384         * Environment.cs (Version): Return the same numbers as the MS
6385         implementation.
6386
6387 2003-08-10  Miguel de Icaza  <miguel@ximian.com>
6388
6389         * Array.cs: Applied patch from Thong (Tum) Nguyen;  Removed
6390         replicated tests, and have a routine that does the heavy lifting.
6391
6392 2003-08-08  Lluis Sanchez Gual <lluis@ximian.com>
6393
6394         * DateTime.cs: Fixed DoParse. It was calling the wrong constructor
6395           of DateTime.
6396         * Environment.cs: return $HOME for ApplicationData folder.
6397
6398 2003-08-04  Duncan Mak  <duncan@ximian.com>
6399
6400         * FloatingPointFormatter.cs (Normalize): Apply a patch from Aleksey
6401         Demakov <avd@openlinksw.com> to fix formatting for Big power of 10
6402         floating point values. This fixes bug #46175.
6403
6404         * Convert.cs (ToUInt16): Throw an OverflowException correctly, as
6405         noted by c5n4kh6u02@sneakemail.com in
6406         http://bugzilla.ximian.com/show_bug.cgi?id=43098.
6407
6408 Sat Aug  2 13:01:46 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
6409
6410         * Double.cs: added icall Double.AssertEndianity.
6411
6412 Fri Aug 1 16:47:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
6413
6414         * Type.cs, MonoType.cs: implemented generic-specific methods.
6415
6416 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
6417
6418         * Buffer.cs: Add new internal MemCopy call.
6419
6420         Removed the above.
6421
6422 Tue Jul 29 12:13:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6423
6424         * Type.cs, MonoType.cs, ArgIterator.cs: pass the handles values
6425         to icalls, to avoid special cases in some call conventions.
6426
6427 2003-07-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6428
6429         * Enum.cs: added Serializable attribute.
6430
6431 2003-07-25  Duncan Mak  <duncan@ximian.com>
6432
6433         * AppDomain.cs (Equals):
6434         (GetHashCode): Removed because they do not need to be defined
6435         here.
6436
6437 2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6438
6439         * TypeLoadException.cs: removed unused fields. TypeName returns "" if
6440         cannot even get the type.
6441
6442 2003-07-24  Miguel de Icaza  <miguel@ximian.com>
6443
6444         * Type.cs: Added generics stubs.
6445
6446 2003-07-23  Duncan Mak  <duncan@ximian.com>
6447
6448         * Environment.cs (SpecialFolder): Added 'Desktop' and 'MyComputer'
6449         as values for NET_1_1.
6450         (GetFolderPath): Return the empty string ("") for values of
6451         SpecialFolder that have no corresponding equivalents in
6452         Linux. Return "$HOME/Desktop" for SpecialFolder.DesktopDirectory
6453         and "$HOME" for SpecialFolder.Personal.
6454
6455         * IntPtr.cs (GetObjectData): Mark it as an interface
6456         implementation, instead of a public method.
6457
6458         * Guid.cs (NewGuid): Remove MonoTODOAttribute.
6459
6460         * TypeLoadException.cs (GetObjectData):
6461         Create stubs for the fields that are being serialized.
6462
6463         * UIntPtr.cs: Removed erroneous CLSCompliantAttributes.
6464
6465 2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
6466         
6467         * Enum.cs: Fixed enum formatting. For flag enums, if one of
6468           the flags is unnamed, ToString() returns the integer value.
6469
6470 2003-07-22  Jerome Laban <jlaban@wanadoo.fr>
6471
6472         * Guid.cs: Fixed ToString (), was producing incorrect string.
6473
6474 2003-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6475
6476         * AppDomainSetup.cs: fixed bug #46609.
6477
6478 Thu Jul 17 17:28:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
6479
6480         * MonoType.cs: use an icall for IsPrimitiveImpl ().
6481
6482 Thu Jul 17 15:23:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
6483
6484         * Guid.cs: faster ToString ().
6485
6486 2003-07-15  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6487
6488         * FloatingPointFormatter.cs: Few changes for get working Rotor
6489         tests.
6490
6491 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
6492
6493         * Type.cs (IsAssignableFrom): Implement this as an icall since the
6494         runtime already includes the neccessary logic.
6495
6496 2003-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6497
6498         * AppDomainSetup.cs: remove the "file://" prefix from ApplicationBase
6499         if it's present and get the full path for non-Uri paths.
6500
6501 2003-07-2  Lluis Sanchez Gual <lluis@ximian.com>
6502
6503         * DateTime.cs: Fixed formatting of fractions of second.
6504
6505 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
6506
6507         * Console.cs: Turn off buffering for the streams returned by
6508         OpenStandardOutput () and OpenStandardError () if the buffer size is 0.
6509
6510 2003-06-28  Lluis Sanchez Gual <lluis@ximian.com>
6511
6512         * Random.cs: Changed behavior of Random to match MS.NET. When Next is
6513           called with maxvalue==0 or minvalue==maxvalue, MS.NET internally generates
6514           a new random number (although it is not needed), while mono did not. 
6515           As a result, the sequence of random numbers could be different for the
6516           same seed.
6517
6518 Thu Jun 26 16:06:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6519
6520         * FloatingPointFormatter.cs: use dec_len2 as default precision.
6521
6522 2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>
6523
6524         * DateTime.cs: Modified constructor. Check for valid value of TimeSpan must
6525           be done after the correspondig UTC offset has been applied.
6526
6527 2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>
6528
6529         * Object.cs: Object must have the Serializable attribute.
6530         * DateTime.cs: Fixed _DoParse() so it correctly applies the utc offset
6531           to the resulting date. Also fixed _ToString so now correctly formates the
6532           UTC offset.
6533
6534 Wed Jun 18 19:22:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
6535
6536         * Enum.cs: fix race in cache (bug#41841).
6537
6538 Wed Jun 18 18:52:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
6539
6540         * FloatingPointFormatter.cs: if the precision is not specified, use
6541         the default precision for the data type.
6542
6543 Wed Jun 18 18:11:30 CEST 2003 Paolo Molaro <lupus@ximian.com>
6544
6545         * Array.cs: throw ArgumentOutOfRangeException in Copy if needed
6546         (patch by tum@veridicus.com (Thong (Tum) Nguyen)).
6547
6548 2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6549
6550         * MonoType.cs: don't throw nullref when the return type for a property
6551         is specified and the property doesn't have a get accessor.
6552
6553 2003-06-10  Duncan Mak  <duncan@ximian.com>
6554
6555         * Array.cs (CreateInstance): Fixed a typo. It should throw
6556         ArgumentNullException instead of ArgumentException.
6557
6558 2003-06-09  Duncan Mak  <duncan@ximian.com>
6559
6560         * Array.cs: Revert the last revert. I fixed it.
6561         (Sort): Put a try-catch block around qsort, and wrap whatever
6562         Exception we get into a InvalidOperationException.
6563
6564 2003-06-08 Jackson Harper <jackson@latitudegeo.com>
6565
6566         * Array.cs: Revert last patch, it broke some other functionality.
6567                 
6568 2003-06-08  Duncan Mak  <duncan@ximian.com>
6569
6570         * Array.cs: Throw more exceptions. This fixes the errors we see
6571         from the Rotor testsuite.
6572
6573         (CreateInstance): Throw ArgumentNullException when the input are
6574         null. Throw ArgumentOutOfRangeException when bounds + length is
6575         greater than Int32.MaxValue.
6576         (LastIndexOf): Throw ArgumentOutOfRangeException if index is outside
6577         the valid range of indices of array.
6578         (Sort): Throw InvalidOperationException when comparer is null and
6579         none of the elements in keys implements IComparable.
6580
6581 2003-06-08  Duncan Mak  <duncan@ximian.com>
6582
6583         * Array.cs (CreateInstance): Throw a TypeLoadException if the
6584         Length of the input array 'lengths' is greater than 255 so that we
6585         won't see the g_assert that is in mono_array_class_get in class.c.
6586
6587         This fixes bug #44304.
6588
6589 2003-06-05  Nick Drochak  <ndrochak@gol.com>
6590
6591         * UnitySerializataionHolder.cs: Cleanups according to class status page
6592
6593 Wed Jun 4 16:59:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6594
6595         * ArgIterator.cs, TypedReference.cs, RuntimeArgumentHandle.cs,
6596         RuntimeTypeHandle.cs: implemented the needed stuff to handle
6597         vararg calls.
6598
6599 2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>
6600
6601         * Random.cs: New implementation based on Knuth ran3 to fix #43597.
6602         See http://www.library.cornell.edu/nr/bookcpdf/c7-1.pdf. Commited
6603         for Ben Maurer after review and testing.
6604
6605 2003-05-28  Ben Maurer <bmaurer@users.sourceforge.net>
6606         
6607         * Array.cs: Added better argument checking to Array.Sort ()
6608         * DBNull.cs: Made the conversions throw like they do in MS.
6609
6610 2003-05-24  Philip Van Hoof  <me@freax.org>
6611
6612         * Math.cs: Add the MS.NET 1.1 methods (BigMul, DivRem, DivRem).
6613
6614 2003-05-21  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6615
6616         * FloatingPointFormatter.cs: Take care with the explicit precision
6617         and round the number to that precision.
6618
6619         * DoubleFormatter.cs: Adapt to the two level precision (15 - 17).
6620
6621         * SingleFormatter.cs: Adapt to the two level precision (7 - 8).
6622
6623 2003-05-20  Philip Van Hoof <me@freax.org>
6624
6625         * DateTime.cs (FromOADate, GetDateTimeFormats, ToOADate):
6626         Implemented.
6627
6628 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
6629
6630         * AppDomainSetup.cs: Added new field which is used to notify the
6631         runtime that the search path has changed.
6632
6633 2003-05-18  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6634
6635         * FloatingPointFormatter.cs: Fixed NullReferenceException bug I've
6636         introduced the last change I've done.
6637
6638 2003-05-17  Ben Maurer  <bmaurer@users.sourceforge.net>
6639
6640         * Array.cs: Fixed SyncRoot to behave like MS (return this). Removed 
6641         MonoTODO from SyncRoot (because fixed) and IsSynchronized (it was
6642         behaving correctly).
6643         
6644 2003-05-17  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6645
6646         * FloatingPointFormatter.cs: Fixed little format mismatches.
6647
6648 2003-05-16  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6649
6650         * FloatingPointFormatter.cs: Fixed "-0" result emited.
6651
6652 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6653
6654         * AppDomain.cs: Added null argument check in Load().
6655         * Activator.cs: fixed bug #39926.
6656
6657 2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6658
6659         * Enum.cs: fixed bugs #41522 and #42879.
6660
6661 2003-05-12  Zoltan Varga  <vargaz@freemail.hu>
6662
6663         * String.cs: Tweak IndexOf and LastIndexOf to match specification and
6664         undocumented MS behaviour.
6665
6666 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6667
6668         * Activator.cs: applied patch for bug #39926. Thanks to Jean Marc and
6669         Jaime.
6670
6671 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6672
6673         * String.cs: fixed bug #41411 and another similar problem in
6674         LastIndexOf (string).
6675
6676 2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6677
6678         * String.cs: patch by Jean Marc <jean-marc.andre@polymtl.ca> that fixes
6679         bug #42695.
6680
6681 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6682
6683         * MulticastDelegate.cs (GetInvocationList): Avoid ArrayList 
6684         construction if the delegate list only has one element.
6685
6686 2003-05-01  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6687
6688         * Environment.cs: Changed the method GetFolderPath because it must
6689         return at least a directory name (not null).
6690
6691         * Convert.cs: In ToType, if the destination type is unknown, try to
6692         cast the value to object (then, the calling method will downcast it
6693         to the type it wants).
6694
6695 2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6696
6697         * Enum.cs: fixed bug #41522.
6698
6699 Tue Apr 29 13:58:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6700
6701         * Enum.cs: protect with the lock also the lookup (bug #41841).
6702
6703 Tue Apr 29 13:24:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6704
6705         * MonoType.cs: allow a null name if InvokeMember is called with
6706         BindingFlags.CreateInstance set.
6707
6708 2003-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6709
6710         * Enum.cs: reverted my previous patch.
6711
6712 2003-04-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6713
6714         * Enum.cs: fixed bug #41841.
6715
6716 2003-04-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6717
6718         * MonoType.cs:
6719         (GetPropertyImpl): handle BindingFlags.IgnoreCase.
6720
6721 2003-04-22  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6722
6723         * FloatingPointFormatter.cs: Little fixes for get the same results
6724         as MS.NET and show a message when something goes wrong with the
6725         parser of Custom Formats.
6726
6727 2003-04-22  Nick Drochak  <ndrochak@gol.com>
6728
6729         * Double.cs (ToString):
6730         * Single.cs (ToString): Handle case where param is a CultureInfo.
6731
6732 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
6733
6734         * Object.cs ValueType.cs: Make the Object::GetHashCode() and 
6735         ValueType::Equals() icalls static non-virtual, so they can be called
6736         by the code in RuntimeHelpers.
6737
6738 2003-04-18  Miguel de Icaza  <miguel@ximian.com>
6739
6740         * Delegate.cs (operator ==): Do not crash if the second argument
6741         is null.  Bug fix submitted by Juan Cri.
6742
6743 2003-04-18  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
6744
6745         * Array.cs: Deleted the exception in Array.Initialize(), it looks
6746         like the method do nothing for C#, is still a MonoTODO until
6747         we find a compiler that uses that.
6748
6749 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
6750
6751         * Delegate.cs (Delegate): Seems like a typo, we were checking the
6752         a field rather than the argument 
6753
6754         * MonoType.cs: Make GetNestedType an external method implementation.
6755
6756 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6757
6758         * Enum.cs: fixed bug #41294.
6759
6760 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6761
6762         * DateTime.cs: fixes bug #40910, part 2.
6763
6764 2003-04-11  Dietmar Maurer  <dietmar@ximian.com>
6765
6766         * String.cs (Equals): avoid the internal call, code cleanups
6767
6768 2003-04-11  Alan Tam <Tam@SiuLung.com>
6769
6770         * Convert.cs: fixed bug #41085.
6771
6772 2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>
6773
6774         * AppDomain.cs: Added internal method for getting process guid.
6775
6776 2003-04-09  Ville Palo <vi64pa@kolumbus.fi>
6777
6778         * Array.cs: Little fix to compare () method.
6779         
6780 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
6781
6782         * String.cs (Equals): Add trivial optimization.
6783
6784 2003-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6785
6786         * DateTime.cs: fixed bug #40910.
6787
6788 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
6789
6790         * Console.cs: Make stderr, stdout and stdin use synchronized
6791         versions of the their readers/writers.
6792
6793 2003-04-04  Dick Porter  <dick@ximian.com>
6794
6795         * Version.cs: Make operator== and operator!= cope with null
6796         objects.  Didn't change operator<, operator<=, operator> or
6797         operator>= because its not meaningful to use those to compare
6798         against null, and throwing a NullReferenceException is probably
6799         the best thing to do there anyway.
6800
6801         Fixes bug 40720.
6802
6803 2003-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6804
6805         * AppDomain.cs: fixed InvalidCastException.
6806
6807 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
6808
6809         * Array.cs (Copy): Call FastCopy() earlier to avoid the expensive
6810         type checks and let it decide whenever a fast copy is possible.
6811
6812 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6813
6814         * MonoType.cs:
6815         (GetMethodImpl): support BindingFlags.IgnoreCase flag. Fixes bug #40322.
6816
6817 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
6818
6819         * Activator.cs (CreateInstance): Call GetConstructor with the right
6820         arguments so the nonPublic argument is handled correctly.
6821
6822 2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6823
6824         * Type.cs: fixed bug #40123.
6825
6826 2003-03-22  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6827
6828         * FloatingPointFormatter.cs: Fixed some bugs for get the same
6829         results than MS.NET. Added simple error recovering, now ToString
6830         will return a general format if there is any exception in the
6831         process of formatting. This make the library more robust while the
6832         formatters are refined.
6833
6834 2003-03-16  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6835
6836         * FloatingPointFormatter.cs: Added support for group separators.
6837
6838 2003-03-16  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6839
6840         * Single.cs:
6841         * Double.cs: Apply changes of .ToString methods.
6842         * SingleFormatter.cs:
6843         * DoubleFormatter.cs: Simple wrappers to FloatingPointFormatter.
6844         * FloatingPointFormatter.cs: New class. Implementation of double and
6845         single formatters. It is unified now and parametrized with precission
6846         values.
6847
6848 2003-03-15  Lluis Sanchez Gual <lluis@ideary.com>
6849
6850         * AppDomain.cs: fixes bugs #39380 and #39331.
6851
6852 2003-03-06  Nick Drochak  <ndrochak@gol.com>
6853
6854         * TimeSpan.cs (Negate): Throw exception when value is MinValue.
6855
6856 2003-03-04  Dick Porter  <dick@ximian.com>
6857
6858         * Single.cs:
6859         * Double.cs: Temporarily reverted the Double and Single ToString()
6860         change, because it broke nunit.
6861
6862
6863 2003-03-04  Pedro MartĂ­nez JuliĂ¡  <yoros@wanadoo.es>
6864
6865         * Double.cs: Changed ToString method. Added NumberFormatInfo support
6866         with DoubleFormatter class.
6867         * Single.cs: Changed ToString method. Added NumberFormatInfo support
6868         with SingleFormatter class.
6869         * DoubleFormatter.cs: New class with Double formatting functions.
6870         * SingleFormatter.cs: New class with Single formatting functions.
6871
6872 2003-03-03  Lluis Sanchez Gual <lluis@ideary.com>
6873
6874         * Activator.cs: Added support for activation using activation attributes.
6875         * AppDomain.cs: Added internal method to get the default context from the runtime.
6876
6877 2003-02-28  Elan Feingold  <efeingold@mn.rr.com>
6878
6879         * DateTime.cs: FileTime is expressed in Universal time, and as such must
6880         be converted before subtracting the magic offset.
6881         * DateTime.cs: Strings in the format "2003-02-27T10:05:03-11:00" (note
6882         the timezone at the end) *must* be parsed by DateTime.Parse() for
6883         compatibility with Microsoft.
6884
6885 2003-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6886
6887         * Attribute.cs:
6888         * MonoCustomAttrs.cs: fix for the regression test failure (see bug
6889         #38238).
6890
6891         * IntPtr.cs: added serialization .ctor
6892
6893 2003-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6894
6895         * AppDomain.cs: check for null in Unload and changed method name.
6896
6897 2003-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6898
6899         * MonoCustomAttrs.cs: fixed bug #38238.
6900
6901 2003-02-17  Martin Baulig  <martin@ximian.com>
6902
6903         * Exception.cs (Exception.ToString): Print a newline between the
6904         exception message and the stack trace.
6905
6906 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6907
6908         * AppDomain.cs: implemented GetCurrentThreadId ().
6909
6910 2003-02-14  Patrik Torstensson
6911
6912         * Exception.cs: Fixed message output formating
6913
6914 2003-02-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6915
6916         * Int32.cs:
6917         (Parse): ignore everything after a \0 (MS parses: "512\0hola" as 512).
6918
6919 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
6920
6921         * Type.cs: IsClass should return false for Enumerations
6922
6923 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6924
6925         * MonoCustomAttrs.cs: return the correct array type in the short case.
6926         Fixes bug #37818.
6927
6928 2003-02-08  Pedro MartĂ­enz JuliĂ¡  <yoros@wanadoo.es>
6929
6930         * Math.cs: Fix a few methods (like Round) and add with comments the
6931         new methods: BigMul and DivRem that were in ECMA specs.
6932
6933 2003-02-07  Patrik Torstensson
6934
6935         * Exception.cs: Fixed formating
6936
6937 2003-02-05  Patrik Torstensson
6938
6939         * AppDomain.cs: Partly fixed the unload method 
6940         
6941 2003-02-04  Patrik Torstensson
6942
6943         * AppDomain.cs: Fixed lease issue with appdomain
6944
6945 2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>
6946
6947         * MarshalByRefObject.cs: Implemented GetLifetimeService() and 
6948           InitializeLifetimeService().
6949
6950 2003-02-03  Patrik Torstensson
6951
6952         * AppDomain.cs: New internalcalls for handling domain/context switches
6953         * AppDomain.cs (CreateDomain): Return transparant proxy for appdomain object
6954
6955 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6956
6957         * AppDomain.cs: implemented AppendPrivatePath, ClearPrivatePath
6958         and ClearShadowCopyPath and fixed GetType ().
6959
6960         * Attribute.cs: clean up.
6961
6962         * Console.cs: removed UnixConsoleEncoding. Use Default.
6963
6964 2003-02-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6965
6966         * Attribute.cs: fixed all IsDefined overloads. Gotta fix
6967         GetCustomAttributes later.
6968
6969 2003-01-31  Patrik Torstensson
6970
6971         * Buffer.cs: Changed access level of BlockCopyInternal
6972
6973 Thu Jan 30 19:54:30 CET 2003 Paolo Molaro <lupus@ximian.com>
6974
6975         * String.cs, IntegerFormatter.cs: use const where appropriate.
6976
6977 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6978
6979         * MonoCustomAttrs.cs: fixed GetBase () for Type. Thanks to Zoltan for
6980         reporting.
6981
6982 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6983
6984         * MonoCustomAttrs.cs: fixed shortcut in GetCustomAttributes.
6985         The argument ICustomAttributeProvider can be of other types different
6986         from Type. Handle it.
6987
6988 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
6989
6990         * DateTime.cs: fix FromFileTime so the time returned by 
6991         File::GetLastModificationTime etc. is in the correct timezone.
6992
6993 2003-01-28  Patrik Torstensson
6994         * Exception.cs: reverted formating/endline changes (sorry guys)
6995
6996 2003-01-28  Patrik Torstensson
6997
6998         * MarshalByRefObject.cs: implemented GetObjectIdentity
6999         * Exception.cs: added support for remote exceptions
7000
7001 2003-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7002
7003         * DateTime.cs: fixed bug #37225.
7004
7005 2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7006
7007         * Enum.cs: Clone the arrays in GetNames and GetValues. Thanks lupus!
7008
7009 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7010
7011         * AppDomain.cs: Added DoTypeResolve method which will be called by
7012         the runtime to raise TypeResolve events.
7013
7014 2003-01-27  Duncan Mak  <duncan@ximian.com>
7015
7016         * Enum.cs (ToType): Implement this using Convert.ToType.
7017
7018 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7019
7020         * Math.cs: Remove Pow's implementation body as it was wrong.  The
7021         C code does the right thing.  The code was trying to handle a
7022         number of cases, and that was incorrect.
7023
7024 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7025
7026         * CharEnumerator.cs: fix to Current by crainaj@hotmail.com. Closes
7027         bug #37113.
7028
7029 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7030
7031         * Enum.cs: added caching to GetInfo.
7032
7033 2003-01-23  Dick Porter  <dick@ximian.com>
7034
7035         * Environment.cs (System): Implemented ExitCode
7036
7037 2003-01-23  Zoltan Varga  <vargaz@freemail.hu>
7038
7039         * Type.cs (IsInstanceOfType): fixed regression caused by the change
7040         to IsSubclassOf().
7041
7042 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7043
7044         * MonoType.cs: re-added lines that were removed in the previous commit.
7045
7046 2003-01-16  Lluis Sanchez Gual <lsg@ctv.es>
7047
7048         * Type.cs: corrected property IsSerializable. It should always return
7049         true for enums and delegates
7050         * MonoType.cs: added serialization support.
7051         * Delegate.cs: added serialization support.
7052         * DBNull.cs: added serialization support.
7053         * UnitySerializationHolder.cs: supports serialization of Assembly,
7054         MonoType and DBNull.
7055         * DelegateSerializationHolder.cs: added.
7056
7057 2003-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7058
7059         * Exception.cs: changed default message to match MS one.
7060
7061 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
7062
7063         * String.cs: Fixed bug with CompareOrdinal
7064
7065 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7066
7067         * Enum.cs: implements IFormattable.
7068
7069 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7070
7071         * AppDomain.cs: implemented DoCallBack method.
7072         * MonoType.cs:
7073         (GetConstructorImpl): when the flag is BindingFlags.Default, set it to
7074         Public, Instance.
7075
7076         NUnit2 tests start moving.
7077
7078 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7079
7080         * Activator.cs: fixed bug #36052. Also added checks to avoid trying to
7081         instantiate an abstract class.
7082
7083 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7084
7085         * Type.cs:
7086         (IsSubclassOf): return false when null. Use != instead of Equals.
7087
7088 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7089
7090         * Type.cs: fixed IsSubclassOf. Patch from Zoltan Varga.
7091
7092 Fri Jan 3 20:18:51 CET 2003 Paolo Molaro <lupus@ximian.com>
7093
7094         * MonoType.cs: fixed Namespace property for nested types.
7095
7096 Fri Jan 3 16:18:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7097
7098         * MonoCustomAttrs.cs: create properly typed arrays when returning
7099         arrays of attributes of a given type.
7100
7101 Fri Jan 3 11:10:14 CET 2003 Paolo Molaro <lupus@ximian.com>
7102
7103         * MonoType.cs: fixed MemberType property for nested types.
7104
7105 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7106
7107         * String.cs: fixed bug #36209.
7108
7109 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>
7110
7111         * Activator.cs: implemented method GetObject.
7112
7113 2002-12-28  Marcus Urban <mathpup@mylinuxisp.com>
7114
7115         * Activator.cs: Since the documentation indicates the method
7116         either succeeds or throws one of the listed exceptions, we weren't
7117         expecting that CreateInstance might be returning null.
7118
7119         For more information on the bug, see http://bugs.ximian.com/show_bug.cgi?id=36109
7120
7121 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>
7122
7123         * MarshalByRefObject.cs: implemented CreateObjRef.
7124
7125 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7126
7127         * DateTime.cs: fixed bug #30076.
7128         * TimeZone.cs: provide the parameter name in a exception.
7129
7130 2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7131
7132         * DecimalFormatter.cs: fixed bug #35560.
7133
7134 Wed Dec 4 16:04:28 CET 2002 Paolo Molaro <lupus@ximian.com>
7135
7136         * Type.cs: implemented GetInterfaceMap (needs an updated runtime).
7137
7138 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7139
7140         * Array.cs: use Object.Equals (obj, obj) to compare objects to avoid
7141         nulls. Fixes #34909.
7142
7143 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7144
7145         * AppDomain.cs: DoAssemblyResolve now returns when one of the handlers
7146         returns a non-null assembly.
7147
7148 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7149
7150         * MulticastDelegate.cs: make GetInvocationList work for more than 1
7151         delegate.
7152
7153 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7154
7155         * MulticastDelegate.cs: implemented GetInvocationList. I'll check later
7156         if this is the correct order of invocation.
7157
7158 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7159
7160         * Type.cs: changed the signature of internal_from_name. Modified
7161         the overloads of GetType to use it and check the typeName argument.
7162         Implemented FindInterfaces.
7163
7164 2002-11-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7165
7166         * MarshalByRefObject.cs: undo latest changes. It breaks the build by
7167         some obscure reasons (try make -f makefile.gnu using a corlib which has
7168         the modified version).
7169
7170 2002-11-26  Miguel de Icaza  <miguel@ximian.com>
7171
7172         * String.cs (Concat): Reduce the number of compares required. 
7173
7174 Mon Nov 18 17:54:22 CET 2002 Paolo Molaro <lupus@ximian.com>
7175
7176         * Activator.cs: throw a MissingMethodException if the default
7177         constructor is not found in CreateInstance.
7178
7179 2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7180
7181         * String.cs:
7182         (Equals (str, str)): use 'as' instead of casting to object.
7183         (Equals (obj)): check the length of the strings (until now,
7184         "Hello".Equals ((object) "Hellow World!) was true!).
7185
7186 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7187
7188         * MonoType.cs: implemented GetEvent (name, flags).
7189
7190 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7191
7192         * AppDomain.cs: implemented a couple of methods called from the runtime
7193         to fire AssemblyLoad and AssemblyResolve events.
7194
7195 2002-10-31  Dick Porter  <dick@ximian.com>
7196
7197         * Environment.cs: MonoIO methods now have an error parameter
7198
7199 2002-10-29  Zoltan Varga  <vargaz@freemail.hu>
7200
7201         * Enum.cs: Added support for whitespaces in Enum:Parse().
7202
7203 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7204
7205         * Type.cs: fixed GetProperty (string, Type []) and removed get_property
7206         internal call. Closes bug #32992.
7207
7208 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7209
7210         * Exception.cs: display the inner exception, if any, in ToString ().
7211
7212 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7213
7214         * Environment.cs: fixed StackTrace property.
7215
7216 2002-10-16  Nick Drochak  <ndrochak@gol.com>
7217
7218         * Enum.cs (Parse): Then fix the code so that it works too.
7219
7220 2002-10-15  Nick Drochak  <ndrochak@gol.com>
7221
7222         * Enum.cs (Parse): Use unsigned casts to avoid compiler warnings.
7223
7224 2002-10-12  Nick Drochak  <ndrochak@gol.com>
7225
7226         * IntegerFormatter.cs: Fix compiler warnings.
7227
7228 2002-10-11  Tim Haynes <thaynes@openlinksw.com>
7229
7230         * Type.cs (GetConstructors): Use the correct flags.
7231
7232 2002-10-09  Nick Drochak  <ndrochak@gol.com>
7233
7234         * IntegerFormatter.cs: Suppress insignificant leading zeros
7235
7236 Fri Sep 27 15:06:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7237
7238         * MonoCustomAttrs.cs: applied patch by "Si Jingnan"
7239         <stonewell@21cn.com> to return also derived types.
7240
7241 2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7242
7243         * Activator.cs: little fix in CreateInstance (Type, bool).
7244
7245 2002-09-19  Duncan Mak  <duncan@ximian.com>
7246
7247         * Array.cs (CopyTo): Revert back to 1.40, this is stopping
7248         I18N/Common from building right now.
7249
7250 2002-09-19  Nick Drochak  <ndrochak@gol.com>
7251
7252         * Array.cs (CopyTo): Account for Object type and base (primitive) types
7253         * Type.cs (IsAssignableFrom): return false for a null parameter
7254
7255 2002-09-19  Nick Drochak <ndrochak@gol.com>
7256
7257         * Array.cs (CopyTo): Check that source type can be cast automatically
7258         to the destination type.
7259
7260 2002-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7261
7262         * Type.cs: implemented IsAssignableFrom, DefaultBinder and
7263         GetDefaultMembers.
7264
7265 2002-09-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7266
7267         * Char.cs: implemented ToString (char)
7268         * IntegerFormatter.cs: made it internal.
7269
7270 2002-09-13  Nick Drochak  <ndrochak@gol.com>
7271
7272         * Enum.cs (Format): handle the "d" format for both signed and unsigned
7273         underlying types.
7274
7275 2002-09-12  Dick Porter  <dick@ximian.com>
7276
7277         * UIntPtr.cs: Remove the [StructLayout(LayoutKind.Auto)]
7278         attribute, as there doesn't appear to be any struct
7279         layout-depending code here (and corcompare says it should be
7280         LayoutKind.Sequential)
7281
7282         * Decimal.cs: Stub out missing methods, add
7283         [DecimalConstantAttribute] to the constant fields (as shown by
7284         corcompare).
7285
7286         * LocalDataStoreSlot.cs: 
7287         * Environment.cs: 
7288         * Char.cs: 
7289         * Array.cs: Stub out missing methods.
7290
7291         * TypedReference.cs: 
7292         * ArgIterator.cs: Stub out
7293
7294         * AppDomainSetup.cs: 
7295         * AppDomain.cs: Stub out missing methods, add missing
7296         ClassInterface(ClassInterfaceType.None) attribute.
7297
7298 2002-09-12  Nick Drochak  <ndrochak@gol.com>
7299
7300         * Double.cs (ToString): Throw exception when "X" format is passed in.
7301
7302 Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
7303
7304         * MonoType.cs: implemented Module property.
7305
7306 Wed Sep 11 12:49:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
7307
7308         * MonoType.cs, Type.cs: implemented InvokeMember.
7309
7310 Wed Sep 11 11:06:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
7311
7312         * Delegate.cs: check the type passed to CreateDelegate is a Delegate
7313         type. Check the method signature matches.
7314
7315 Sat Sep 7 10:16:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
7316
7317         * RuntimeMethodHandle.cs: implemented GetFunctionPointer().
7318
7319 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
7320
7321         * Console.cs: Specify an encoder, otherwise we will get the UTF8
7322         encoder that by default emits the byte markers.
7323
7324 Fri Sep 6 20:14:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
7325
7326         * Delegate.cs: look also for non-public methods until we have the
7327         security checks in place.
7328
7329 Fri Sep 6 12:20:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
7330
7331         * MonoType.cs: consider also the full name in GetInterface.
7332
7333 Fri Sep 6 12:11:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
7334
7335         * MonoType.cs: implemented GetMembers, GetConstructorImpl and
7336         GetMethodImpl using the binder.
7337         * Type.cs: GetConstructorImpl/GetConstructor fixes.
7338
7339 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
7340         * Enum.cs: Get rid of warning CS0162.
7341
7342 2002-09-04  Miguel de Icaza  <miguel@ximian.com>
7343
7344         * Double.cs, Single.cs, Char.cs, Boolean.cs: Use internal for the
7345         actual value instead of public.
7346
7347         * LocalDataStoreSlot.cs: Make constructor internal.
7348
7349         * Int16.cs, UInt16.cs, Int32.cs, UInt32.cs, Int64.cs, UInt64.cs,
7350         SByte.cs, Byte.cs, Char.cs: Use internal for the actual value
7351         instead of public.
7352
7353 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
7354         * Enum.cs: Fixed Enum.Format so that the "x" format specifier would work
7355                    properly.
7356
7357 2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7358
7359         * DateTime.cs: fixed buglet.
7360
7361 Tue Aug 27 16:39:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
7362
7363         * MonoType.cs: speedup access to common data.
7364
7365 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7366
7367         * Double.cs: implemented TryParse.
7368
7369         * Math.cs: PowImpl is now private.
7370
7371         * MissingFieldException.cs: implemented Message.
7372
7373         * RuntimeMethodHandle.cs: stubbed GetFunctionPointer.
7374
7375         * _AppDomain.cs: Uncommented ToString.
7376
7377 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7378
7379         * Type.cs:
7380         (IsValueTypeImpl): it's virtual, not abstract. Implemented.
7381
7382 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7383
7384         * ArgumentException.cs: use the field instead of the property for
7385         param_name.
7386
7387         * ArgumentOutOfRangeException.cs: modified Message.
7388
7389         * DateTime.cs: 
7390         (_DoParse): throw out of range exception for year. Removed check
7391         for month (it's done in the constructor).
7392
7393 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
7394
7395         * Environment.cs: Implemented OSVersion property.
7396
7397 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
7398
7399         * Exception.cs: set stack_trace to null
7400
7401 Wed Aug 21 13:02:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
7402
7403         * AppDomain.cs: implemented ToString().
7404
7405 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7406
7407         * AppDomain.cs: securityInfo can be null in CreateDomain.
7408
7409 2002-08-19  Dick Porter  <dick@ximian.com>
7410
7411         * MonoType.cs: Add a space before the Assembly name in
7412         AssemblyQualifiedName (needed for resource files so the MS runtime
7413         can load types)
7414
7415 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7416
7417         * AppDomain.cs: parameter name when throwing ArgumentNullException.
7418
7419         * ArgumentException.cs: modified Message to do what MS does.
7420
7421         * ArgumentNullException.cs: don't use {0} in message.
7422
7423         * Exception.cs: use Message property in ToString ().
7424
7425 2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>
7426
7427         * WeakReference.cs: Changed the constructor and GetObjectData
7428         method needed for ISerializable implementation in order to be
7429         compatible with SOAP generated by MS.
7430
7431 Wed Aug 14 17:34:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
7432
7433         * MonoType.cs, Type.cs: DeclaringType/ReflectedType fixes.
7434
7435 2002-08-12  Dietmar Maurer  <dietmar@ximian.com>
7436
7437         * Exception.cs (ToString): changed the ouput format.
7438
7439 2002-08-07  Dietmar Maurer  <dietmar@ximian.com>
7440
7441         * MonoType.cs: moved get_method icall to this class, we can
7442         remove it as soon someone provides a full featured GetMethodImpl.
7443
7444         * Type.cs: use GetMethodImpl everywhere.
7445
7446         * Delegate.cs: new CreateDelegate implementations.
7447
7448 2002-08-06  Tim Coleman <tim@timcoleman.com>
7449         * MonoType.cs: 
7450                 Fix bug #28582.  Now checks parameters for properties
7451                 in GetPropertyImpl.
7452
7453 2002-08-04  Nick Drochak  <ndrochak@gol.com>
7454
7455         * Buffer.cs: Throw correct exception in GetByte() and SetByte().
7456
7457 2002-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7458
7459         * String.cs:
7460         (FormatSpecifier): allow white space between the comman and the width
7461         specifier.
7462
7463 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7464
7465         * Int32.cs:
7466         * Int64.cs:
7467         * UInt32.cs:
7468         * UInt64.cs: fixed bug #28050. May be a MS bug?
7469
7470 Thu Jul 18 14:47:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
7471
7472         * MonoType.cs: fix IsArrayImpl.
7473
7474 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7475
7476         * String.cs: make ToLower (culture) and ToUpper (culture) use the
7477         default ToLower and ToUpper and don't throw NotImplemented.
7478
7479 Sat Jul 13 15:09:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
7480
7481         * Type.cs: make GettTypeCode an icall. Test implementation of
7482         GetMember().
7483
7484 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7485
7486         * AppDomainSetup.cs: implemented LoaderOptimization.
7487
7488 2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7489
7490         * Activator.cs: some more intermediate results checking in
7491         in CreateInstance and CreateInstanceFrom and use GetConstructor and
7492         Invoke only with Type [] until the other overloaded versions work.
7493
7494 2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7495
7496         * Activator.cs: reformatted. Implemented CreateInstance* methods
7497         that return ObjectHandle.
7498
7499         * AppDomain.cs: implemented CreateInstance*AndUnwrap methods.
7500
7501 2002-07-03  Nick Drochak  <ndrochak@gol.com>
7502
7503         * Decimal.cs (Divide): Short cut the case where the dividend is 0 (and
7504         the divisor is not) and avoid the icall, which seems to have a bug.
7505
7506 2002-07-03  Nick Drochak  <ndrochak@gol.com>
7507
7508         * Double.cs (CompareTo): Correctly handle the case where the instance
7509         is NaN. Also return 0 if the values are equal.
7510
7511 2002/07/03  Nick Drochak <ndrochak@gol.com>
7512
7513         * MissingMethodException: Add missing Message property
7514         * MissingMemberException: Add missing Message property
7515
7516 2002-06-30  Nick Drochak  <ndrochak@gol.com>
7517
7518         * Double.cs (CompareTo): Just see which is bigger.  Don't use the
7519         subtraction trick, it doesn't work when the values have a diference of
7520         less than one.
7521
7522         * Single.cs (CompareTo): same
7523
7524 2002-06-27  Martin Baulig  <martin@gnome.org>
7525
7526         * UIntPtr.cs (UIntPtr.Zero): Use an explicit `u' suffix in the
7527         constructor argument.  [FIXME: The implicit conversion to an
7528         unsigned integer doesn't work with mcs.]
7529
7530 2002-06-26  Martin Baulig  <martin@gnome.org>
7531
7532         * DecimalFormatter.cs: Removed MSTEST stuff, use `System',
7533         not `S = System'.  This file now compiles with mcs.
7534
7535         * String.cs: Removed the already ifdef-outed __arglist Concat function
7536         to make it compile with mcs.
7537
7538 2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7539
7540         * IntegerFormatter.cs:
7541         (FormatParse.FormatNumber): fixed custom format for negative numbers.
7542
7543 2002-06-21  Martin Baulig  <martin@gnome.org>
7544
7545         * Double.cs: Replace the private `enum State' with constants since this
7546         will avoid some bigger headaches in mcs.
7547
7548 Thu Jun 20 17:51:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
7549
7550         * TimeSpan.cs: do not pollute the namespace with the
7551         System.Parser name.
7552
7553 2002-06-18  Nick Drochak  <ndrochak@gol.com>
7554
7555         * ArgumentException.cs: Use the message given in the constructor when
7556         accessing the Message property.  Thanks to Dietmar for the help with 
7557         "base".
7558
7559 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
7560
7561         * MonoType.cs: GetField is now a InternalCall
7562
7563 2002-06-13  Nick Drochak  <ndrochak@gol.com>
7564
7565         * DateTime.cs: (Parse): Accept dates that have no hour,min,sec. in the
7566         sortable format(s), e.g. "2002-02-25"
7567
7568 2002/06/12  Nick Drochak <ndrochak@gol.com>
7569
7570         * Random.cs (Next): Fix math error.  Return a number within the range.
7571
7572 2002-06-12  Nick Drochak  <ndrochak@gol.com>
7573
7574         * String.cs (IndexOf): Return -1 if start index is equal to string
7575         length.
7576
7577 2002-06-10  Duncan Mak  <duncan@ximian.com>
7578
7579         * Convert.cs (ToDouble): Remove rounding in ToDouble (float).
7580         (ToType): Added null field in conversionTable to avoid
7581         IndexOutOfRangeException. Changed what exceptions we throw to match
7582         the spec.
7583         
7584 2002-06-11  Nick Drochak  <ndrochak@gol.com>
7585
7586         * Int64.cs (Parse): Added unique strings to the messages where we throw
7587         a FormatException. Needed these to debug, so just left them in since
7588         they might be useful later. Fixed Currency parsing where we weren't
7589         looking at CurrencyDecimalSeparator, etc.
7590
7591 2002-06-09  Lawrence Pit  <loz@cable.a2000.nl>
7592
7593         * DateTime.cs: fixes to pass tests M0 to M6:
7594                 if yy pattern then year values >= 30 are in 20th century
7595                 rfc1123 pattern is always in GMT, therefor useutc must be false
7596         made GetNow() internal static so it can be called from TimeZone.
7597         * TimeZone.cs: removed dependency on year 2002 from initialization of 
7598         current timezone.
7599
7600 2002-06-09  Duncan Mak  <duncan@ximian.com>
7601
7602         * Convert.cs (ToType): Rearranged what Exceptions we throw to
7603         match MS behavior.
7604
7605 2002-06-08  Duncan Mak  <duncan@ximian.com>
7606
7607         * Decimal.cs: Added support for the IConvertible interface.
7608
7609 2002-06-08  Martin Baulig  <martin@gnome.org>
7610
7611         * Enum.cs (IsDefined): `value' may be of the enum's type itself, it
7612         doesn't necessarily need to be of the enum's underlying type.
7613
7614 2002/06/07  Nick Drochak <ndrochak@gol.com>
7615
7616         * String.cs: Add [Serializable] to class
7617         * SByte.cs (Parse): Add [CLSCompliant(false)] to all the overloads
7618
7619 2002-06-04  Nick Drochak  <ndrochak@gol.com>
7620
7621         * Double.cs (Parse): Recognize the group separator string, but still we
7622         don't check the format for the proper number of digits between
7623         separators. Also throw OverflowException when we get Pos or Neg
7624         Infinity from runtime.
7625
7626 2002-06-03  Duncan Mak  <duncan@ximian.com>
7627
7628         * Convert.cs (ToDouble): Fixed ToDouble (byte value).
7629
7630 Mon Jun 3 12:18:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
7631
7632         * Type.cs: fixed GetTypeCode.
7633
7634 2002-06-02  Duncan Mak  <duncan@ximian.com>
7635
7636         * Convert.cs (ToInt16): use Convert.ToInt16 (int) instead of a direct
7637         cast from an int so that we throw OverFlowException correctly.
7638         
7639         (ToInt64): Use a new 64bit version of ConvertToBase.
7640         
7641         (ConvertToBase): Add checks for overflow (checks Int32.MinValue
7642         and Int32.MaxValue).
7643
7644         (ConvertFromBase64): New 64-bit version of ConvertFromBase.
7645
7646 2002-06-02  Nick Drochak  <ndrochak@gol.com>
7647
7648         * Convert.cs (ToSByte): Check for special value.
7649         * Single.cs (Parse): 
7650         * UInt16.cs (Parse):
7651         * UInt32.cs (Parse): Throw OverflowException if negative
7652
7653 2002-06-02  Duncan Mak  <duncan@ximian.com>
7654
7655         * Convert.cs (DBNull): Point it to DBNull.Value.
7656         (IsDBNull): Instead of checking typecodes, just check to see if
7657         it's the same as the DBNull field.
7658
7659 2002-06-02  Nick Drochak  <ndrochak@gol.com>
7660
7661         * Convert.cs (ConvertFromBase): Detect bad digits correctly.
7662
7663 2002-06-02  Duncan Mak  <duncan@ximian.com>
7664
7665         * Char.cs (Parse): Simplify the Exception handling.
7666
7667         * Convert.cs (ToDecimal): Remove call to Math.Round () when
7668         converting from a float.
7669
7670 2002-05-30  Martin Baulig  <martin@gnome.org>
7671
7672         * MonoType.cs (GetInterface): Implemented.
7673
7674 Thu May 23 17:17:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
7675
7676         * Activator.cs: implemented CreateInstance ().
7677
7678 2002-05-22  Duncan Mak  <duncan@ximian.com>
7679
7680         * Convert.cs (ConvertToBase): Added new 64bit version.
7681         (BuildConvertedString64): New 64bit version of
7682         BuildConvertedString.
7683
7684         This fixes bug 25068.
7685
7686         (ConvertFromBase): Added additional test for checking if the
7687         digits are valid. Thanks to Miguel for coming up with this test.
7688
7689         This fixes bug 25071.
7690         
7691 2002-05-21  Duncan Mak  <duncan@ximian.com>
7692
7693         * Convert.cs (ToType): Rearranged to fit the new layout of
7694         conversionTable.
7695
7696         (conversionTable): Rearranged to fit the layout of the
7697         System.TypeCode enum.
7698
7699         This should fix bug 25075.
7700         
7701 2002-05-21  Duncan Mak  <duncan@ximian.com>
7702
7703         * Convert.cs (ToString): Fixed the ToString methods. Previously I had
7704         mixed up the two code paths, one for converting to a specific base
7705         (this case), another from converting from a foreign base to base10
7706         (used by ToInt16|32|64 (string, int)). This fixes bug 25068.
7707
7708         * Convert.cs (ToByte)
7709         (ToSByte): Fixed bug 25074. Added more bits to ConvertFromBase so
7710         that we won't confuse FormatException with OverflowException.
7711
7712 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
7713
7714         * Environment.cs: CommandLine missed spaces between arguments.
7715         Implemented StackTrace. Returning MachineName in UserDomainName
7716         instead of null.
7717         
7718 Tue May 21 17:25:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
7719
7720         * MonoCustomAttrs.cs: handle inherit argument.
7721
7722 2002-05-21  Nick Drochak  <ndrochak@gol.com>
7723
7724         * Math.cs (Pow): Change icall method name and insert parameter
7725         checks in for infinities and NaN.
7726
7727 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
7728
7729         * Double.cs (Parse): Reimplement by cleaning up the string first,
7730         and then passing to strtof in the mono runtime.
7731
7732         * Single.cs (Parse): Use the Double implementation and cast to
7733         float. 
7734
7735 2002-05-21  Nick Drochak  <ndrochak@gol.com>
7736
7737         * Math.cs 
7738                 (Ceiling): Check for "special" values
7739                 (Floor): Check for "special" values
7740                 (Round): Fix off-by-one error on decimal shifting
7741
7742 2002-05-20  Lawrence Pit  <loz@cable.a2000.nl>
7743
7744         * DateTime.cs: ToString () using "G" format specifier 
7745
7746 2002-05-19  Martin Baulig  <martin@gnome.org>
7747
7748         * Convert.cs (FromBase64CharArray): Do correct exception handling.
7749
7750 2002-05-19  Martin Baulig  <martin@gnome.org>
7751
7752         * Convert.cs (FromBase64CharArray): Convert the char array using
7753         System.Text.UTF8Encoding, not UnicodeEncoding (which is UTF-16) to
7754         a byte array.
7755
7756 2002-05-17  Miguel de Icaza  <miguel@ximian.com>
7757
7758         * MonoType.cs: Style changes.
7759
7760         * Type.cs: Style changes.
7761
7762 2002-05-16  Piers Haken <piersh@friksit.com
7763
7764         * UInt64.cs: fix declaration of IConvertible.To* overrides.
7765
7766 2002-05-16  Nick Drochak  <ndrochak@gol.com>
7767
7768         * BitConverter.cs (ToString): Add parameter check for invalid start 
7769         index.
7770
7771         * Console.cs: Use AutoFlush on the StreamWriter for stdin and stdout
7772         now that StreamWriter uses buffering
7773
7774 2002-05-14  Miguel de Icaza  <miguel@ximian.com>
7775
7776         * Double.cs: Oops.  Also handle exponents without finding a dot.
7777
7778 2002-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7779
7780         * ChangeLog: removed empty entry at the top of the file.
7781
7782         * Int32.cs: made static functions used by Parse internal.
7783
7784         * Int64.cs:
7785         * UInt32.cs:
7786         * UInt64.cs: removed static fucntions used by Parse and use the ones
7787         in Int32.cs
7788
7789 2002-05-12  Daniel Morgan <danmorg@sc.rr.com>
7790
7791         * IServiceProvider.cs: added using System
7792
7793 2002-05-09  Daniel Morgan <danmorg@sc.rr.com>
7794
7795         * Single.cs: copied ToString() and Parse() methods from 
7796         Double to Single and modified a tiny bit for Single.  
7797         There is still a FIXME for Double and Single about
7798         passing the format and provider info to the icall too.
7799
7800 2002-05-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7801
7802         * Int32.cs:
7803         * Int64.cs:
7804         * UInt32.cs:
7805         * UInt64.cs (Parse): don't use Char.IsNumber to test for hex digits.
7806         Don't use a delegate to test for valid digits.
7807
7808 2002-05-01  Duncan Mak  <duncan@ximian.com>
7809
7810         * Convert.cs: 
7811         * Math.cs: Added missing CLSCompliant attributes where necessary.
7812         
7813 2002-04-30  Duncan Mak  <duncan@ximian.com>
7814
7815         * ArgumentException.cs (Message): 
7816         * ArgumentOutOfRangeException.cs (Message): Added.
7817
7818 2002-04-30  Nick Drochak  <ndrochak@gol.com>
7819
7820         * MonoType.cs: Remove unused variable and eliminate a compiler warning.
7821
7822 Mon Apr 29 15:32:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
7823
7824         * Environment.cs: support for Exit(), CommandLine, CommandLineArgs ().
7825
7826 2002-04-28  Duncan Mak  <duncan@ximian.com>
7827
7828         * DivideByZeroException.cs: Added missing serialization constructor.
7829
7830         * UnauthorizedAccessException.cs: Added the missing Serializable attribute.
7831
7832 2002-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7833
7834         * Math.cs: fix Floor () and Round (). Closes #23960.
7835
7836 2002-04-27  Nick Drochak  <ndrochak@gol.com>
7837
7838         * Array.cs (IList.Contains): Should throw a RankException if this is 
7839         called on a Rank > 1 array. Not in the docs, but this is what the 
7840         MS.NET does.
7841
7842 2002-04-26  Duncan Mak  <duncan@ximian.com>
7843
7844         * MissingMemberException.cs: Made the message variable 'protected'
7845         instead of 'private', so that we can see it in
7846         MissingMethodException and MissingFieldException.
7847
7848         * MissingFieldException.cs:
7849         * MissingMethodException.cs: Added missing (string, string)
7850         constructor, and also the Message property.
7851
7852 2002-04-26  Martin Baulig  <martin@gnome.org>
7853
7854         * Enum.cs: Implemented the IConvertible methods.
7855
7856 2002-04-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7857
7858         * SByte.cs: little change in Parse (string) to avoid incorrect
7859         OverflowException thrown (reported by nickd).
7860
7861 2002-04-22  Miguel de Icaza  <miguel@ximian.com>
7862
7863         * ValueType.cs: Add Serializable attribute.
7864
7865         * String.cs: ifdef-out out the __arglist Concat function until I
7866         add support for that to mcs.
7867
7868 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
7869
7870         * AppDomain.cs (GetValue): usage of the correct icall (bug)
7871
7872 Wed Apr 24 21:15:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
7873
7874         * GC.cs: implement most of the methods as icalls.
7875
7876 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7877
7878         * DecimalFormatter.cs (ToString): return correct value when the
7879         decimal number is 0.
7880
7881 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
7882         
7883         * Type.cs (GetProperty): fixed call syntax (needs an empty array not null)
7884         * MonoType.cs (GetPropertyImpl) : basic implementation (ignores types, bindingAttr, modifiers)
7885
7886 2002-04-24  Nick Drochak  <ndrochak@gol.com>
7887
7888         * Double.cs (Parse): Handle case where there are no digits before the 
7889         decimal point, such as ".1".
7890
7891 2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7892
7893         * Int32.cs:
7894         * UInt32.cs:
7895         * Int64.cs:
7896         * UInt64.cs: fixed bug #23738 (hex numbers parsed wrong).
7897
7898 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
7899
7900         * String.cs (Split): fixed invalid split of count 0 and 1.
7901         
7902 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
7903         
7904         * String.cs (LastIndexOf): fixed argument checking.
7905         * String.cs (Equals): made internal for performace.
7906
7907 2002-04-23  Nick Drochak  <ndrochak@gol.com>
7908
7909         * String.cs (Join): check argument and throw exception if needed
7910
7911 2002-04-23  Nick Drochak  <ndrochak@gol.com>
7912
7913         * String.cs (StartsWith): check argument and throw exception if needed
7914
7915 2002-04-22  Nick Drochak  <ndrochak@gol.com>
7916
7917         * String.cs (IndexOfAny): check arguments and throw exceptions as
7918         neccessary.  ALso remove some debug WriteLines.
7919
7920 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
7921
7922         * String.cs: use internal constructors
7923         buf fix in Concat.
7924
7925 Thu Apr 18 17:16:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
7926
7927         * MonoType.cs: make GetElementType its own icall.
7928
7929 2002-04-18  Nick Drochak <ndrochak@gol.com>
7930
7931         * String.cs: Modified file. Re-add methods needed by the unit tests.
7932
7933 Thu Apr 18 12:38:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
7934
7935         * String.cs: some code speedups and restored GetTypeCode().
7936
7937 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
7938
7939         * String.cs: New implementation using internal calls.
7940         
7941 2002-04-16  Nick Drochak  <ndrochak@gol.com>
7942
7943         * DecimalFormatter.cs: Trim off excess null characters from the string
7944         that decimal2string gives back.
7945
7946 2002-04-16  Nick Drochak  <ndrochak@gol.com>
7947
7948         * String.cs (SubString): revert my change.  I can't reproduce the
7949         problem anymore.
7950
7951 2002-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7952
7953         * Attribute.cs: added GetHashCode and Equals.
7954
7955 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7956
7957         * Enum.cs: little improvements to Format ().
7958
7959 Thu Apr 11 12:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
7960
7961         * String.cs: internalcall GetHashCode().
7962         * Array.cS: optimize access to elements.
7963
7964 Wed Apr 10 21:20:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
7965
7966         * String.cs: make IndexOfAny() use an internalcall.
7967
7968 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7969
7970         * Int32.cs:
7971         * UInt32.cs:
7972         * Int64.cs: 
7973         * UInt64.cs: fixed error when testing for validity of flags.
7974
7975 2002-04-11  Nick Drochak  <ndrochak@gol.com>
7976
7977         * Double.cs: Use an internal call for ToString(). This is just a simple
7978         implementation to get away from throwing a NotImplementedException.
7979
7980 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7981
7982         * Int32.cs:
7983         * UInt32.cs:
7984         * Int64.cs: 
7985         * UInt64.cs: changed Type.GetType () by typeof (), as suggested by
7986         lupus.
7987
7988         * Int32.cs:
7989         * Int64.cs: throw an OverFlowException when parsing a string 
7990         containing a dot followed by any non '0' number.
7991
7992 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7993
7994         * Byte.cs:
7995         * UInt16.cs:
7996         * UInt32.cs:
7997         * UInt64.cs: added complex Parse ().
7998
7999 2002-04-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8000
8001         * SByte.cs:
8002         * Int16.cs:
8003         * Int32.cs:
8004         * Int64.cs: added complex Parse ().
8005
8006 2002-04-09  Nick Drochak  <ndrochak@gol.com>
8007
8008         * Array.cs (BinarySearch): Add checks on paramters before using them
8009         and throw exceptions as needed.
8010
8011         * Enum.cs (Format): Check if [Flags] is applied to enum and convert
8012         "G" format to "F" if so.
8013
8014 Tue Apr 9 13:12:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8015
8016         * MonoCustomAttrs.cs: return arrays of type Attribute[]
8017         instead of object[].
8018
8019 2002/04/09  Nick Drochak <ndrochak@gol.com>
8020
8021         * String.cs (Substring): Copy only non-null characters to the new
8022         string.
8023
8024 2002-04-09  Nick Drochak  <ndrochak@gol.com>
8025
8026         * IntegerFormatter.cs: Don't use a format character to indicate a
8027         custom format was passed in. It was using 'z' to indicate a custom
8028         format, but really it should throw a format exception if the user
8029         tries to use "z" as the format string. Now it does.
8030
8031         * Activator.cs: New File.
8032
8033 2002-04-08  Nick Drochak  <ndrochak@gol.com>
8034
8035         * Enum.cs (ToString): Big ugly fix for the case where [Flags] is
8036         applied to an enum. Need to handle the different possible integer
8037         types of an enum somehow.  Can anyone say generics?
8038
8039 Mon Apr  8 06:22:42  2002 Piers Haken <piersh@friskit.com>
8040
8041         * Convert.cs: switched the To*(object) methods to use
8042         IConvertible directly instead of calling ChangeType
8043
8044 Sat Apr 6 20:08:41 CEST 2002 Paolo Molaro <lupus@ximian.com>
8045
8046         * ValueType.cs: make Equals() an internalcall.
8047
8048 Fri Apr 5 15:38:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8049
8050         * Type.cs: also look for nested types in FindMembers.
8051         * MonoType.cs: make GetNestedTypes() an internalcall.
8052
8053 2002-04-05  Nick Drochak  <ndrochak@gol.com>
8054
8055         * Enum.cs (Parse): Handle different underlying types.
8056
8057 2002/04/04 Nick Drochak <ndrochak@gol.com>
8058
8059         * Enum.cs (IsDefined): Throw exception when type of value to look for
8060         is not the correct one.  Attempt to have it work with string values
8061         too, but not sure if the unit tests are getting that far yet.
8062
8063 2002-04-04  Nick Drochak  <ndrochak@gol.com>
8064
8065         * Decimal.cs: Fix a couple of typos.
8066
8067 Wed Apr 3 19:46:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8068
8069         * Enum.cs: the values array is of the enum and not of the underlying
8070         type. Updates and some bug fixes.
8071         * MonoType.cs: make the internalcall return FullName instead of the
8072         assembly qualified name.
8073         * Type.cs: make ToString () simply return FullName.
8074
8075 2002-04-03  Nick Drochak  <ndrochak@gol.com>
8076
8077         * Type.cs (GetTypeCode): provide some of the implementation for this
8078         method.  It's still too simplistic to be considered complete.
8079
8080 2002-04-02  Dietmar Maurer  <dietmar@ximian.com>
8081
8082         * Object.cs: fixed FieldGetter/FieldSetter signature
8083
8084 2002-04-02  Nick Drochak  <ndrochak@gol.com>
8085
8086         * Environment.cs: add MonoTODO's on parts that should have it.
8087
8088 2002-04-01  Nick Drochak  <ndrochak@gol.com>
8089
8090         * Enum.cs: added reality checks (check parameters to most methods that
8091         need them).
8092
8093 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
8094
8095         * Object.cs: added FieldGetter/FieldSetter
8096
8097 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8098
8099         * IntegerFormatter.cs: fixed initialization error in static
8100         constructor.
8101
8102 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
8103
8104         * Delegate.cs: added new field to store a trampoline function
8105
8106 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8107
8108         * IntegerFormatter.cs: added workaround for bug #22668. First patch to
8109         make custom format strings work (not fully functional yet).
8110
8111 2002/03/28  Nick Drochak <ndrochak@gol.com>
8112
8113         * IntegerFormatter.cs: Change class from internal to public.  Add
8114         necessary [CLSCompliant(false)] attributes.
8115
8116 2002-03-27  Duco Fijma  <duco@lorentz.xs4all.nl>
8117         * _AppDomain.cs, AppDomain.cs: renamed method GetDate to GetData
8118         (was a typo)
8119
8120 2002-03-28  Nick Drochak  <ndrochak@gol.com>
8121
8122         * Type.cs: Added MonoTODO tags on members that have FIXME, etc.
8123
8124 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
8125
8126         * Console.cs: Modified to get std handles from MonoIO.
8127         * Environment.cs: removed PAL dependencies.
8128
8129 2002-03-25  Miguel de Icaza  <miguel@ximian.com>
8130
8131         * String.cs (System): Removed internal enumeration, because
8132         bootstrapping the corlib at this point does not support
8133         enumerations. 
8134
8135         * IntPtr.cs: Temporary work-around until I fix the assembly
8136         attributes bug.
8137
8138 2002-03-24  Martin Baulig  <martin@gnome.org>
8139
8140         * Enum.cs (GetValues): According to the docu this is sorted after
8141         values, not names.
8142
8143         * String.cs (System): Removed enumeration, because it is pretty
8144         hard to support enumerations in /nostdlib mode for the core types.
8145
8146 Tue Mar 19 18:18:49 CET 2002 Paolo Molaro <lupus@ximian.com>
8147
8148         * Array.cs: move error handling in the catch block.
8149         * MulticastDelegate.cs: remove == and != operators that were
8150         removed with the delegate changes (when you add stuff, please do not
8151         remove existing functionality!).
8152         * Type.cs: if a property is not found in a type, search for it
8153         in the parent types, too.
8154
8155 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
8156         
8157         * Math.cs: changed to use icall instead of PAL.
8158
8159 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
8160
8161         * Double.cs: added check for NaN (Bug [22082])
8162
8163 2002-03-19  Nick Drochak  <ndrochak@gol.com>
8164
8165         * Enum.cs (Equals): check for null and throw if it is.
8166         * Enum.cs (Format): check for null parameters and throw if necessary.
8167         This method still needs more argument checking.
8168
8169 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>
8170
8171         * Enum.cs (Equals): check if Enums are of the same type
8172
8173 2002-03-18  Nick Drochak  <ndrochak@gol.com>
8174
8175         * Double.cs: Explicitly handle comparisons in CompareTo() for
8176         Positive/Negative Infinity and NaN. Unit Test now passes on Linux.
8177
8178         * Enum.cs(CompareTo): Check types of values before trying to compare.
8179         Throw exceptions if types are invalid or don't match.
8180
8181 2002-03-14  Miguel de Icaza  <miguel@ximian.com>
8182
8183         * Array.cs: Add some extra debugging information.
8184
8185 2002-03-15  Nick Drochak  <ndrochak@gol.com>
8186
8187         * Array.cs: Added IList and IEnumerable. 
8188
8189 2002-03-14  Miguel de Icaza  <miguel@ximian.com>
8190
8191         * UInt64.cs, UInt32.cs, UInt16.cs: Mark public parse methods as
8192         NonCLSCompliant. 
8193
8194 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
8195
8196         * Delegate.cs (Equals): also compare method_ptr 
8197         (GetHashCode): returm method_ptr as hash
8198
8199 2002-03-13  Duco Fijma  <duco@lorentz.xs4all.n>
8200         * TimeSpan.cs: removed the use of Custom Numeric Format Strings,
8201         such as 42.ToString("0000000"), as these are (currently) not implemented
8202         in System.IntegerFormatter. TimeSpan luckely can do with Standard
8203         Numeric Format Strings, such as 42.ToString("D7").
8204
8205 2002-03-12  Duncan Mak  <duncan@ximian.com>
8206
8207         * FieldAccessException.cs: 
8208         * MethodAccessException.cs: 
8209         * PlatformNotSupportedException.cs: Inherit from
8210         MemberAccessException, not SystemException.
8211
8212         * ObsoleteAttribute.cs: Made Message and IsError properties
8213         instead of fields.
8214
8215 Tue Mar 12 19:21:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8216
8217         * GC.cs: make SuppressFinalize() a nop.
8218         * Delegate.cs: fix == operator.
8219
8220 2002-03-13  Nick Drochak  <ndrochak@gol.com>
8221
8222         * Enum.cs: Add IConvertible methods. Cyclic dependancy fixed in the
8223         runtime that goes with this patch.
8224
8225 2002-03-10  Martin Baulig  <martin@gnome.org>
8226
8227         * Int32.cs (Parse): Correctly parse negative numbers.
8228
8229 2002-03-08  Martin Baulig  <martin@gnome.org>
8230
8231         * String.cs (Split): Really fix it this time. Also adding several new
8232         testcase to the testsuite.       
8233
8234 2002-03-08  Martin Baulig  <martin@gnome.org>
8235
8236         * Array.cs (Copy): Optimized: removed duplicate null check, removed
8237         two duplicate GetLowerBound() calls and one duplicate IsValueType.
8238
8239 Fri Mar 8 18:49:19 CET 2002 Paolo Molaro <lupus@ximian.com>
8240
8241         * Object.cs: commit my hacked GetHashCode(): it's good enough for now.
8242         * String.cs: use the dumb code for IndexOf(string): this is worth
8243         15-20 % speedup in mcs compile with mint.
8244
8245 Fri Mar 8 12:45:44 CET 2002 Paolo Molaro <lupus@ximian.com>
8246
8247         * String.cs: revert change to Split() that broke the compiler (hi martin!:-).
8248
8249 2002-03-07  Martin Baulig  <martin@gnome.org>
8250
8251         * String.cs (Join): Throw an ArgumentNullException.
8252         (LastIndexOf (string,int,int)): This method does a backwards search,
8253         so startIndex points to the end of value, not to its beginning. Don't
8254         throw an exception if startIndex equals this.Length. Always return -1
8255         if startIndex is smaller than the length of value.
8256         (Replace (string,string)): Replace all occurences of oldValue.
8257         If newValue is null, all occurences of oldValue are to be removed.
8258         (Split (char[],int)): Return an empty array if maxCount is zero, throw
8259         an ArgumentOutOfRangeException if it's less than zero. Return maxValue
8260         elements, not maxValue+1.
8261
8262 Thu Mar 7 17:16:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8263
8264         * MonoType.cs: make GetEvents() an internal call.
8265         * MulticastDelegate.cs: copy the passed in array.
8266
8267 2002-03-06  Martin Baulig  <martin@gnome.org>
8268
8269         * Array.cs (Copy): Use FastCopy when appropriate and do correct
8270         exception handling.
8271
8272 2002-03-06  Duco Fijma  <duco@lorentz.xs4all.nl>
8273         * CharEnumerator.cs: fixes to CharEnumertor.MoveNext, fixing 
8274         some of the failures found be new tests (see ChangeLog in 
8275         Test/System). Comments added to this method, based on
8276         the representation invariant of this class, that (try to) explain
8277         why it now should be correct.
8278
8279 2002-03-06  Dietmar Maurer  <dietmar@ximian.com>
8280
8281         * Int64.cs (Parse): bug fix for max. negative value. 
8282
8283 2002-03-07  Nick Drochak  <ndrochak@gol.com>
8284
8285         * RuntimeTypeHandle.cs: Add Serializable attribute as the docs say.
8286         I need to understand what the difference between the attribute and
8287         the interface is.
8288
8289 2002-03-06  Martin Baulig  <martin@gnome.org>
8290
8291         * Array.cs (Copy): Always throw an ArrayTypeMismatchException, not
8292         an InvalidCastException if the widening conversion failed. See
8293         testcases #M94-#M96.
8294
8295         * Array.cs (CopyTo): Bug fix from Ajay Dwivedi, correctly handle
8296         arrays with non-zero lower bounds. Also adding testcases #F10-#F13
8297         for this.
8298
8299         * Array.cs (CopyTo): Reverted my last change, it was incorrect.
8300         (Copy): Actually allow copying multi-dimensional arrays.
8301
8302 2002-03-05  Duncan Mak  <duncan@ximian.com>
8303
8304         * Convert.cs:
8305         (DBNull) Added the missing field.
8306         (IsDBNull) Fixed typo.
8307         (ToByte (string, int)) Implemented.
8308         (ToString (byte, int)) Implemented.
8309         (ConvertToBase)
8310         (BuildConvertedString) internal functions used for converting values to
8311         a specific base.
8312
8313         * Int16.cs: 
8314         * Int32.cs:
8315         * Int64.cs:
8316         * Single.cs:
8317         * UInt16.cs: 
8318         * UInt32.cs: Implemented the IConvertible interface.    
8319
8320         * CharEnumerator.cs: Renamed to variables to be clearer and
8321         changed some of the tests to conform to the 1.0 spec.
8322
8323 2002-03-06  Martin Baulig  <martin@gnome.org>
8324
8325         * Array.cs (Copy): Calculate absolute array position here and use
8326         GetValueImpl() and SetValueImpl() with that position. We can now
8327         copy multi-dimensional arrays.
8328         (CopyTo): Small bug fix.
8329
8330 2002-03-05  Duco Fijma  <duco@lorentz.xs4all.nl>
8331
8332         * Version.cs: CompareTo changed according the LAMESPEC discovered by 
8333         Nick (See VersionTest.cs).
8334         * CharEnumerator.cs: fixed two bugs in MoveNext. It had an off-by-one
8335         error comparing the current position (idx) against the length of the
8336         string iterated and it set idx to an unrecognized special value (-2)
8337
8338 Tue Mar 5 17:34:14 CET 2002 Paolo Molaro <lupus@ximian.com>
8339
8340         * SByte.cs, UInt64.cs: implement IConvertible interface. Nobody wants
8341         to do this dirty work, but someone has to do it (and I need it to pass
8342         the "200 sample tests compiled on linux" mark).
8343
8344 2002-03-06  Nick Drochak  <ndrochak@gol.com>
8345
8346         * Attribute.cs
8347         * DecimalFormatter.cs
8348         * Delegate.cs
8349         * Double.cs
8350         * GC.cs
8351         * Int16.cs
8352         * Int32.cs
8353         * MonoType.cs
8354         * RuntimeMethodHandle.cs
8355         * RuntimeTypeHandle.cs
8356         * String.cs
8357         * Type.cs:
8358                 Add [MonoTODO]'s to places where we currently throw a
8359                 NotImplementedException.
8360
8361 2002-03-05  Dietmar Maurer  <dietmar@ximian.com>
8362
8363         * Int16.cs (Parse): do not overflow on max negative value
8364
8365         * Int32.cs (Parse): do not overflow on max negative value
8366
8367 Mon Mar 4 20:36:05 CET 2002 Paolo Molaro <lupus@ximian.com>
8368
8369         * Type.cs: fixed IsClass.
8370         * MonoType.cs: fixed MemberType, IsPrimitiveImpl, IsPointerImpl,
8371         IsByRefImpl. Added GetInterfaces().
8372         * IServiceProvider.cs: compilation fix.
8373
8374 Mon Mar 4 18:37:03 CET 2002 Paolo Molaro <lupus@ximian.com>
8375
8376         * Array.cs: allow copying an empty array to an empty array.
8377
8378 Mon Mar 4 17:59:16 CET 2002 Paolo Molaro <lupus@ximian.com>
8379
8380         * String.cs: fixed LastIndexOf (string) to do a bit of argument
8381         checking.
8382
8383 2002-03-04  Duco Fijma  <duco@lorentz.xs4all.nl>
8384         * Version.cs: many fixes to failures found by the newly created
8385         test cases for this class. Specifically, the CompareTo member
8386         returned wrong values due to the use of Int32.MaxValue as a special
8387         value indicating an "undefined" version component. Also implemented the
8388         missing operators (==, <, >, etc.), one missing constructor and
8389         and some exception throwing.
8390
8391 2002-03-04  Nick Drochak  <ndrochak@gol.com>
8392
8393         * IServiceProvider.cs: Add missing attribute: ComVisible(false)
8394         * Attribute.cs: Add missing attributes: Serializable and
8395         AttributeUsage(AttributeTargets.All)
8396
8397 Mon Mar 4 11:26:49 CET 2002 Paolo Molaro <lupus@ximian.com>
8398
8399         * MonoType.cs: implemented GetConstructors(), GetFields(),
8400         GetMethods(), GetProperties().
8401         * Object.cs: added debugging icall obj_address().
8402         * Type.cs: fixed the binding flags for some Get* methods.
8403         Implemented FindMembers() as calls to the specific GetMember
8404         methods.
8405
8406 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
8407         * BitConverter.cs: fixed one little bug: ToString(s, n, 0) 
8408         should give an exception for n>=s.Length.
8409
8410 2002-03-01  Martin Baulig  <martin@gnome.org>
8411
8412         * Array.cs: More argument checking and bug fixing.
8413
8414 2002-03-01  Miguel de Icaza  <miguel@ximian.com>
8415
8416         * BitConverter.cs: Indentation match
8417
8418         * AppDomain.cs: Added MonoTODOs to this too.
8419
8420         * Buffer.cs: Added MonoTODOs to this.
8421
8422 2002-03-01  Martin Baulig  <martin@gnome.org>
8423
8424         * Array.cs: Added argument checking to all methods where it was missing.
8425
8426 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
8427
8428         * BitConverter.cs: Fixed bugs in ToString methods
8429
8430 Fri Mar 1 15:20:00 CET 2002 Paolo Molaro <lupus@ximian.com>
8431
8432         * MulticastDelegate.cs: implement operators so mcs3 can be used on linux.
8433
8434 2002-03-01  Nick Drochak  <ndrochak@gol.com>
8435
8436         * BitConverter.cs: Throw ArgumentException like mscorlib, instead of
8437         ArgumentOutOfRangeException like the docs say.
8438
8439 2002-03-01  Martin Baulig  <martin@gnome.org>
8440
8441         * Enum.cs (CompareTo): Correctly override this method from IComparable.
8442
8443         * Console.cs (setIn, setOut, setError): It's called SetIn, SetOut, SetError.
8444
8445 2002-02-28  Martin Baulig  <martin@gnome.org>
8446
8447         * String.cs: This file now passes the testsuite on Linux :-)
8448         
8449         * String.cs (Intern, IsInterned): The interncalls are now called _Intern and _IsInterned;
8450         make them private and provide C# wrappers which do proper argument checking.
8451
8452         * String.cs (Format): Correctly handle escaped brackets.
8453
8454         * String.cs (_CompareChar): New internal function which compares two chars.
8455         (_Compare): Provide an internal compare method which can do all sorts of
8456         comparision and call it from all the Compare() methods. Also fixed a lot of
8457         bugs here, this code now actually passes the testsuite.
8458
8459 2002-02-28  Duncan Mak  <duncan@ximian.com>
8460
8461         * Convert.cs: Added the missing methods. The new class status page
8462         kicks ass, it even found my typos! Woohoo!
8463         (ConvertFromBase): Moved the Exception throwing in here and
8464         removed the other occurances so it's all centralized now.
8465         (ISDBNull): Implemented.
8466         (GetTypeCode): Implemented.
8467
8468 2002-02-27  Duco Fijma  <duco@lorentz.xs4all.nl>
8469         * Guid.cs: Guid.ToString("") and Guid.ToString(null) is now understood as Guid.ToString("D") 
8470         just as in mscorlib. There is (probably) a documentation bug in the MS FrameWork SDK, which
8471         states that a lacking format should be interpreted as "N".  
8472         Also added [Serializable] attribute
8473         * TimeSpan.cs: some formatting and added the [Serializable] attribute
8474
8475 2002-02-26  Duncan Mak  <duncan@ximian.com>
8476
8477         * WeakReference.cs: Committed for Ajay Kumar Dwivedi.   
8478
8479 2002-02-26  Martin Baulig  <martin@gnome.org>
8480
8481         * TimeZone.cs: Use an internal enum rather than magic numbers to access the
8482         fields of the interncall GetTimeZoneData.
8483
8484         * DateTime.cs: Implemented Parse and fixed a few bugs.
8485
8486         * String.cs (TrimStart): Small fix.
8487
8488 2002-02-26  Martin Baulig  <martin@gnome.org>
8489
8490         * DateTime.cs: ParseExact is now fully functional.
8491
8492         * String.cs (TrimEnd): Small fix.
8493
8494 2002-02-26  Duco Fijma <duco@lorentz.xs4all.nl>
8495         * TimeSpan.cs: Added method TimeSpan.FromMilliseconds, mysteriously 
8496         missing for about six months.
8497
8498 Tue Feb 26 14:21:19 CET 2002 Paolo Molaro <lupus@ximian.com>
8499
8500         * UInt64.cs: fixed Parse method () to handle some of the NumberStyle flags.
8501
8502 2002-02-26  Martin Baulig  <martin@gnome.org>
8503
8504         * DateTime.cs: Miguel already committed this, but there was still a
8505         ChangeLog entry for this missing ....
8506         We're now reusing functionality from TimeSpan, printing dates is
8507         fully implemented, currently working on parsing.
8508
8509         * TimeZone.cs: Fully implemented this. There's a new InternCall in the
8510         runtime for this.
8511
8512 Fri Feb 22 18:47:08 CET 2002 Paolo Molaro <lupus@ximian.com>
8513
8514         * MonoType.cs: disable constructor.
8515         * Object.cs: make GetType() an internalcall.
8516         * Type.cs: added correct bindingflags to GetMethods ().
8517         All such calls should be reviewed to use the correct flags.
8518
8519 Thu Feb 21 19:23:46 CET 2002 Paolo Molaro <lupus@ximian.com>
8520
8521         * Type.cs, MonoType.cs: type_is_subtype_of () changed to include extra
8522         argument.
8523
8524 Thu Feb 21 16:56:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8525
8526         * Type.cs: implemented IsAssignableFrom.
8527
8528 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
8529         * Guid.cs: fixed Guid.Guid(string) ctor. Changed format:
8530         "{0xdddddddd,0xdddd,0xdddd,{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},{0xdd}}" 
8531         to "{0xdddddddd,0xdddd,0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}}" 
8532         The former is documented by Microsoft. The latter is how they
8533         actually implemented it in mscorlib:-)
8534
8535 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>
8536
8537         * MonoCustomAttrs.cs: hooks to get the custom attributes from the
8538         runtime.
8539         * MonoType.cs: Implemented custom attributes methods.
8540
8541
8542 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
8543         * Guid.cs: 
8544
8545 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>
8546
8547         * MonoCustomAttrs.cs: hooks to get the custom attributes from the
8548         runtime.
8549         * MonoType.cs: Implemented custom attributes methods.
8550
8551 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
8552
8553         * Array.cs (CopyTo): use GetLength() instead of GetUpperBound() 
8554
8555 2002-02-19  Duncan Mak  <duncan@ximian.com>
8556
8557         * Convert.cs: Finished up the missing methods in Convert. Added a
8558         new private method ConvertFromBase.
8559
8560 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
8561
8562         * String.cs: impl. IConvertible interface
8563
8564 2002-02-18  Duco Fijma <duco@lorentz.xs4all.nl>
8565         * Guid.cs: actual implementation for Guid.Guid(string) Ctor
8566
8567 2002-02-18  Duncan Mak  <duncan@ximian.com>
8568
8569         * Convert.cs: Changed from using Type.GetType (string) to just
8570         typeof (). Probably will speed things up a bit?         
8571
8572 2002-02-18  Ajay Kumar Dwivedi <AjayKumar.Dwivedi@dresdner-bank.com>
8573
8574         * Array.cs:         
8575         1. Fix for GetUpperBound to return correct values
8576         2. made some Properties virtual
8577         3. Adds IsFixedSize and IsReadOnly properties.
8578         4. changes CreateInstance(Type,int[],int[]) to throw Exception
8579         when third arg is null. InternalCall CreateInstance changed to  
8580         CreateInstanceImpl
8581         5. Fixed array.GetUpperBound at a couple of places
8582         6. IndexOf and LastIndexOf now use Object.Equals instead of "=="
8583         7. Added two FIXME's in BinarySearch functions.
8584
8585 2002-02-17  Duncan Mak  <duncan@ximian.com>
8586
8587         * TimeZone.cs:  Applied the rest of Ajay's patch for    
8588         IsDaylightSavingTime. Thanks a lot for the nice explanation of how
8589         it works!
8590
8591 2002-02-17  Duco Fijma  <duco@lorentz.xs4all.nl>
8592         * Guid.cs: added stub for Guid(string) ctor
8593
8594 2002-02-17  Duncan Mak  <duncan@ximian.com>
8595
8596         * Convert.cs: Near-complete implementation of Convert.cs
8597
8598         Added all the To* methods taking (object) and
8599         (object, IFormatProvider) as parameters.
8600
8601         Added [CLSCompliant (false)] attributes to methods dealing with
8602         unsigned types.
8603
8604         Added the missing section on converting to and from DateTime. Only
8605         6 missing methods, all marked with MonoTODOs. Will tackle them later.           
8606
8607 2002-02-16  Duncan Mak  <duncan@ximian.com>
8608
8609         * TimeZone.cs: patch from Ajay Kumar Dwivedi (adwiv@yahoo.com) to
8610         make IsDaylightSavingTime (DateTime) call 
8611         IsDaylightSavingTime (DateTime, DaylightTime).  
8612         
8613         Added internal class CurrentTimeZone from Ajay. It needs more work
8614         to fill in the appropriate internal calls.
8615         
8616 Sat Feb 16 12:41:41 CET 2002 Paolo Molaro <lupus@ximian.com>
8617
8618         * Type.cs: fix IsClass.
8619
8620 Sat Feb 16 12:02:02 CET 2002 Paolo Molaro <lupus@ximian.com>
8621
8622         * String.cs: fix Trim().
8623
8624 Fri Feb 15 21:02:46 CET 2002 Paolo Molaro <lupus@ximian.com>
8625
8626         * String.cs: fix more off by one errors.
8627
8628 Thu Feb 14 18:54:09 CET 2002 Paolo Molaro <lupus@ximian.com>
8629
8630         * MonoType.cs: fix IsValueTypeImpl.
8631         * Type.cs: fix IsEnum. Implement Equals methods.
8632
8633 Wed Feb 13 21:50:13 CET 2002 Paolo Molaro <lupus@ximian.com>
8634
8635         * Int32.cs: implement IConvertible interface.
8636         
8637 2002-02-12  Duncan Mak  <duncan@ximian.com>
8638
8639         * TimeZone.cs: Implemented and added to CVS.
8640
8641 2002-02-11  Duncan Mak  <duncan@ximian.com>
8642
8643         * Convert.cs: Implemented the ChangeType () methods.
8644
8645 Mon Feb 11 19:48:58 CET 2002 Paolo Molaro <lupus@ximian.com>
8646
8647         * Array.cs: make Clone() an internal call.
8648
8649 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
8650         * Changed Guid.NewGuid so that it can use both System.Random and 
8651           System.Security.Cryptography.RandomNumberGenerator
8652
8653 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
8654         * First version of Guid.NewGuid
8655
8656 2002-02-08  Duncan Mak  <duncan@ximian.com>
8657
8658         * RuntimeArgumentHandle.cs: Added to CVS.
8659
8660 Fri Feb 8 19:14:54 CET 2002 Paolo Molaro <lupus@ximian.com>
8661
8662         * CrossAppDomainDelegate.cs, AssemblyLoadEventHandler.cs,
8663         UnhandledExceptionEventHandler.cs: added delegates.
8664
8665 Fri Feb 8 18:06:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8666
8667         * MarshalByRefObject.cs: add ToString () method
8668         (apparently needed by nunit).
8669         * _AppDomain.cs: uncomment ToString(): dietmar fixed the bug triggered
8670         by it in the runtime.
8671
8672 2002-02-08  Dan Lewis <dihlewis@yahoo.co.uk>
8673         
8674         * String.cs (Format): implemented
8675
8676 2002-02-07  Duncan Mak  <duncan@ximian.com>
8677         
8678         * DuplicateWaitObjectException:
8679         * InvalidCastException:
8680         * NotImplementedException:
8681         * NotSupportedException:
8682         * NullReferenceException:
8683         * OutOfMemoryException:
8684         * OverflowException:
8685         * RankException:
8686         * StackOverflowException.cs:
8687         * UnauthorizedAccessException: Added missing constructor used for serialization.
8688
8689 2002-02-07  Dietmar Maurer  <dietmar@ximian.com>
8690
8691         * String.cs (System.Compare): bug fix 
8692
8693 2002-02-06  Dietmar Maurer  <dietmar@ximian.com>
8694
8695         * Enum.cs (Parse,  GetHashCode): impl. 
8696
8697 2002-02-05  Duncan Mak  <duncan@ximian.com>
8698
8699         * DBNull.cs: This is my first crack at the DBNull class. I think I
8700         actually got most of the IConvertible methods right, but I haven't
8701         done the research to test whether or not this is the correct
8702         behavior. IConvertible.ToType () is the most iffy of all, IMHO.
8703
8704         * DllNotFoundException.cs: Inherits from TypeLoadException, not SystemException.
8705
8706 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
8707
8708         * Enum.cs: added more functionality (GetName, ToObject, Equals)
8709
8710 2002-01-31  Duncan Mak  <duncan@ximian.com>
8711
8712         * InvalidOperationException.cs:
8713         * NotFiniteNumberException.cs:
8714         * ObjectDisposedException.cs:
8715         * TypeInitializationException.cs: Added missing bits for serialization/
8716         
8717         * AppDomainUnloadedException.cs:
8718         * ApplicationException.cs:
8719         * ArgumentOutOfRangeException.cs:
8720         * ArithmeticException.cs:
8721         * ArrayTypeMismatchException:
8722         * BadImageFormatException.cs:
8723         * Exception.cs:
8724         * MissingMemberException.cs:
8725         * TypeLoadException.cs: Added missing bits for serialization.
8726
8727 2002-01-30  Duco Fijma <duco@lorentz.xs4all.nl>
8728         * Guid.cs: implemented everything but Guid.NewGuid
8729
8730 Tue Jan 29 22:32:36 CET 2002 Paolo Molaro <lupus@ximian.com>
8731
8732         * _AppDomain.cs: remove ToString() method: it doesn't seem right 
8733         to have it in this interface and it screws up the method vtable setup.
8734
8735 2002-01-28  Andrei Zmievski <andrei@php.net>
8736
8737         * Double.cs: implemented IConvertible interface.
8738
8739 2002-01-28  Miguel de Icaza  <miguel@ximian.com>
8740
8741         * ArgumentException.cs: Implement serialization constructor.
8742         (GetObjectData): Implement serializer.
8743         
8744         * ArgumentNullException.cs: Implement serialization constructor.
8745
8746         * Exception.cs: Implement serialization constructor.
8747         (GetObjectData): Implement serializer.
8748
8749 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
8750
8751         * DateTime.cs (UnixEpoch): The Begining of the Unix epoch.
8752
8753 2002-01-23  Duncan Mak  <duncan@ximian.com>
8754
8755         * EntryPointNotFoundException.cs:
8756         * FormatException: Added missing constructor and related bits.
8757
8758         * TypeLoadException: Added missing constructor, methods and properties.
8759
8760 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
8761
8762         * AppDomain.cs (GetAssemblies): Use foreach construct instead of
8763         manually getting the enumerator.
8764
8765         (AppDomain.AppDomain): Prime the loaded assemblies with the
8766         assemblies loaded by the runtime in our behalf.
8767
8768         * AppDomainSetup.cs: Remove private keyword, that is the default.
8769         Add a new property DisallowPublisherPolicy.
8770
8771         * AppDomain.cs (AppDomain.GetAssemblies): Implement.
8772
8773 Tue Jan 22 22:51:48 CET 2002 Paolo Molaro <lupus@ximian.com>
8774
8775         * MonoType.cs, Type.cs: many updates, corrected implementation,
8776         completed stubs.
8777
8778 2002-01-20  Andrei Zmievski <andrei@php.net>
8779
8780         * Byte.cs:
8781         * Char.cs: implemented IConvertible interface.
8782
8783         * Boolean.cs: use our own ToString() method directly.
8784
8785 2002-01-20  Duncan Mak  <duncan@ximian.com>
8786
8787         * Files I commited recently: Fixed indentation style.
8788
8789 2002-01-20 Nick Drochak  <ndrochak@gol.com>
8790
8791         * SerializableAttribute.cs: this attrib can be used on enums, structs, 
8792         and delegates too. Added the appropriate usage flags.
8793
8794 2002-01-18  Duncan Mak  <duncan@ximian.com>
8795
8796         * CharEnumerator.cs: Implemented.
8797         * String.cs (System): Fixed the GetEnumerator () method(s).
8798
8799         * ObsoleteAttribute.cs:
8800         * STAThreadAttribute.cs:
8801         * MTAThreadAttribute.cs:
8802         * ThreadStaticAttribute.cs:
8803         * LoaderOptimizationAttribute.cs:
8804         * PlatformNotSupportedException.cs:
8805         * LoaderOptimization.cs: Added to CVS.
8806
8807 2002-01-18  Duncan Mak  <duncan@ximian.com>
8808
8809         * AppDomainUnloadedException.cs:
8810         * MethodAccessException.cs:
8811         * ContextMarshalException.cs:
8812         * CannotUnloadAppDomainException.cs:
8813         * DllNotFoundException.cs:
8814         * EntryPointNotFoundException.cs:
8815         * FieldAccessException.cs:
8816         * TypeUnloadedException.cs:
8817         * MissingFieldException.cs: Added to CVS.
8818
8819         * ApplicationException.cs: 
8820         * MemberAccessException.cs:
8821         * MissingMemberException.cs
8822         * MissingMethodException.cs:
8823         * SystemException.cs: Added [Serializable] attribute.
8824
8825         * Exception.cs: Added [Serializable] attribute, made properties
8826         'Message', 'Source' and 'StackTrace' virtual methods, per 1.0
8827         spec.
8828
8829         * ContextStaticAttribute.cs: Added [Serializable] attribute and
8830         put in the missing constructor.
8831
8832         * Environment.cs: Commented out references to
8833         EnvironmentPermissionAttribute, because they're just stubbed out
8834         right now and has no implementation.
8835
8836 2002-01-16  Andrei Zmievski <andrei@php.net>
8837
8838         * Boolean.cs: implemented IConvertible interface
8839
8840 2002-01-15  Nick Drochak  <ndrochak@gol.com>
8841
8842         * ResolveEventArgs.cs: class should derive from EventArgs.
8843
8844 2002-01-14  Miguel de Icaza  <miguel@ximian.com>
8845
8846         * String.cs (System): Use DefaultMemberName for the String class.
8847
8848 Mon Jan 14 17:06:40 CET 2002 Paolo Molaro <lupus@ximian.com>
8849
8850         * String.cs: use IndexerName in index char accessor.
8851
8852 Thu Jan 10 21:05:23 CET 2002 Paolo Molaro <lupus@ximian.com>
8853
8854         * MonoType.cs: add rank to MonoTypeInfo and implement GetArrayRank.
8855         * String.c: eliminate 64k+ method calls in search.
8856         * Type.cs: handle byref and array types in ToString ().
8857
8858 2002-01-09  Duco Fijma <duco@lorentz.xs4all.nl>
8859
8860         * Guid.cs: created first version
8861
8862 2002-01-10  Dietmar Maurer  <dietmar@ximian.com>
8863
8864         * MonoType.cs: added missing TypeAttributes to MonoTypeInfo 
8865
8866 Wed Jan 9 19:35:07 CET 2002 Paolo Molaro <lupus@ximian.com>
8867
8868         * MulticastDelegate.cs: add == and != operator stubs.
8869         * String.cs: check for null in == operator.
8870         * Type.cs: use a virtual method to get TypeAttributes.
8871
8872 Tue Jan  8 23:30:19 EST 2002 Matt Kimball <matt@kimball.net>
8873         * String.cs: Fixed several off-by-one errors in LastIndexOf* methods
8874
8875 2002-01-09  Nick Drochak  <ndrochak@gol.com>
8876         
8877         * Environment.cs: Comment out Security attribute and put a MonoTODO
8878         there as a reminder.  We need mcs magic to handle security attributes in
8879         corlib.
8880
8881 2002-01-07  Duco Fijma <duco@lorentz.xs4all.nl>
8882         * Created IAppDomainSetup.cs
8883
8884 2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>
8885         * Created System._AppDomain interface in _AppDomain.cs
8886
8887 2002-01-06  Nick Drochak  <ndrochak@gol.com>
8888
8889         * ResolveEventArgs.cs: New File, completely implemented! ;)
8890
8891 Sat Jan 5 15:53:50 CET 2002 Paolo Molaro <lupus@ximian.com>
8892
8893         * Enum.cs: dummy ToString impl.
8894         * String.cs: dummy format implementations to get compiler errors
8895         somewhat working.
8896         * Type.cs: implemented filter delegates. FindMembers runs the filter, now.
8897
8898 2002-01-05  Ravi Pratap  <ravi@ximian.com>
8899
8900         * TODOAttribute.cs : Augment some more; provide two constructors
8901         with support for a comment too.
8902
8903 2002-01-05  Nick Drochak  <ndrochak@gol.com>
8904
8905         * Uncommented those MonoTODO's now that Ravi's got
8906         the class in there
8907
8908 2001-01-04  Ravi Pratap  <ravi@ximian.com>
8909
8910         * TODOAttribute.cs : Actually add this time ;-)
8911
8912         Change name to MonoTODO.
8913
8914 2002-01-04  Jeffrey Stedfast  <fejj@ximian.com>
8915
8916         * String.cs (Trim): Fixed a few logic bugs in the code that
8917         calculated how much to trim off the end of the string.
8918
8919 2001-01-04  Nick Drochak  <ndrochak@gol.com>
8920         
8921         * Commented out the [TODO] attributes for now.  We don't have the
8922         class written.  Also changed it to [MonoTODO]
8923
8924 2002-01-04  Ravi Pratap  <ravi@ximian.com>
8925
8926         * TODOAttribute.cs : Add. We use this attribute to tag all bits in
8927         our class libraries that are incomplete.
8928
8929         * Array.cs : Apply attribute wherever we find a FIXME which says
8930         we need something to be implemented there.
8931
8932         * Int32.cs : Ditto.
8933
8934         * MulticastDelegate.cs : Ditto.
8935
8936         * RuntimeFieldHandler.cs, RuntimeMethodHandle.cs,
8937         RuntimeTypeHandle.cs : Ditto.
8938
8939         * String.cs : Ditto.
8940
8941         * Type.cs : Ditto.
8942
8943         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs, Delegate.cs : Ditto.
8944
8945         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs, Single.cs, 
8946         UInt16.cs, UInt32.cs, ValueType.cs: Ditto.
8947
8948         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs,
8949         Delegate.cs : Ditto.
8950
8951         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs,
8952         Single.cs, UInt16.cs, UInt32.cs, ValueType.cs: Ditto.
8953         
8954 Thu Jan 3 23:24:04 CET 2002 Paolo Molaro <lupus@ximian.com>
8955
8956         * Delegate.cs: add Remove() stub.
8957         * Enum.cs: add ToObject().
8958         * Type.cs: add IsEnum property.
8959
8960 2002-01-03  Kristian Rietveld  <kris@gtk.org>
8961
8962         * Convert.cs: add non-CLS-compliant ToBoolean methods for char,
8963         DateTime and object.
8964
8965 2001-12-30  Nick Drochak  <ndrochak@gol.com>
8966
8967         * Byte.cs (Parse): Add comments to aid in testing.
8968
8969 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
8970
8971         * Char.cs (Parse): Implement.
8972
8973         * Byte.cs (Parse): Implement a fast parser.
8974         
8975         * SByte.cs (Parse): Implement a fast parser.
8976
8977         * UInt16.cs (Parse): Implement a fast parser.
8978         
8979         * Int16.cs (Parse): Implement a fast parser.
8980
8981         * UInt32.cs (Parse): Implement a fast parser.
8982
8983         * Int32.cs (Parse): Implement a fast parser.
8984
8985 Fri Dec 21 15:14:52 CET 2001 Paolo Molaro <lupus@ximian.com>
8986
8987         * Array.cs: fix null ref in sort code.
8988         * UInt64.cs: add bare-bones parse.
8989
8990 Thu Dec 20 15:29:52 CET 2001 Paolo Molaro <lupus@ximian.com>
8991         
8992         * Byte.cs: removed use of Regexes.
8993
8994 Tue Dec 18 18:39:54 CET 2001 Paolo Molaro <lupus@ximian.com>
8995
8996         * Enum.cs: implemented GetValues(), GetNames(), GetName(),
8997         IsDefined(), GetUnderlyingType().
8998         * String.cs: fix one instance of Compare().
8999         * Type.cs: implemented GetProperties(), GetProperty().
9000
9001 Thu Dec 13 20:10:57 CET 2001 Paolo Molaro <lupus@ximian.com>
9002
9003         * Array.cs: implement CopyTo ().
9004         * Char.cs: implement ToString ().
9005         * Exception.cs: bugfix.
9006         * Int32.cs: bare-bones Parse ().
9007         * MonoType.cs: query the needed info with an internalcall.
9008         * String.cs: speedups, bugfixes, reduced copies.
9009         * Type.cs: added missing fields. Implemented many of the Is*
9010         properties. Implemented GetMethod(), GetConstructor(), GetMethods(),
9011         GetFields(), FindMembers(), ToString().
9012         
9013 2001-12-11  Dick Porter  <dick@ximian.com>
9014
9015         * DateTime.cs: Implemented FromFileTime() and ToFileTime()
9016
9017         * Console.cs: Use handles rather than casting file descriptors
9018
9019 2001-12-08  Nick Drochak  <ndrochak@gol.com>
9020
9021         * Byte.cs (Parse): Start implementation. Parse(string) works, but
9022         now we need to handle other formats
9023
9024 2001-12-06  Dietmar Maurer  <dietmar@ximian.com>
9025
9026         * DateTime.cs: added an icall to GetNow()
9027
9028 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
9029
9030         * Double.cs: added the parse method from Bob Smith
9031
9032 2001-11-28  Miguel de Icaza  <miguel@ximian.com>
9033
9034         * UInt64.cs: ditto.
9035
9036         * UInt32.cs: ditto.
9037
9038         * Int32.cs (Int32.CompareTo): Fix because we can not just
9039         substract the values.
9040
9041         Return possitive value if the object is null.
9042
9043         * Boolean.cs: (Boolean.CompareTo): ditto.
9044
9045         * Int16.cs (Int16.CompareTo): ditto.
9046
9047         * Byte.cs (Byte.CompareTo): ditto.
9048
9049         * SByte.cs (SByte.CompareTo): ditto.
9050
9051         * Char.cs (Char.CompareTo): ditto.
9052         
9053         * Decimal.cs (Decimal.CompareTo): ditto.
9054
9055         * Int64.cs (Int64.CompareTo): ditto.
9056
9057         * Single.cs: Ditto.
9058
9059         * UInt16.cs: Ditto.
9060
9061 2001-11-28  Nick Drochak <ndrochak@gol.com>
9062
9063         * Byte.cs: Throw NotImplementedException for Parse.
9064
9065 2001-11-27  Derek Holden  <dholden@draper.com>
9066
9067         * IntegerFormatter.cs: Formatting of type "Number" was not
9068         using NumberFormatInfo.NumberNegativePattern.
9069
9070 2001-11-26  Dick Porter  <dick@ximian.com>
9071
9072         * LocalDataStoreSlot.cs: No need to delete a system TLS slot in
9073         the finalise routine any more
9074
9075 2001-11-21  Miguel de Icaza  <miguel@ximian.com>
9076
9077         * ApplicationException.cs: internationalize by adding calls to
9078         Locale.GetText ().  And throw NotImplementedExceptions on calls
9079         that we have to implement.
9080
9081         * Version.cs: Ditto.
9082
9083         * ValueType.cs: ditto.
9084
9085         * UnauthorizedAccessException.cs: ditto.
9086
9087         * UInt32.cs: ditto.
9088
9089         * UInt64.cs: ditto.
9090
9091         * UInt16.cs: ditto.
9092
9093         * TypeLoadException.cs: ditto
9094
9095         * TypeInitializationException.cs: ditto.
9096
9097         * Type.cs: ditto.
9098
9099         * TimeSpan.cs: ditto.
9100
9101         * SystemException.cs: ditto.
9102
9103         * String.cs: ditto.
9104
9105         * StackOverflowException.cs: ditto.x
9106
9107         * Single.cs: ditto.
9108
9109         * SByte.cs: ditto.
9110
9111         * RuntimeTypeHandle.cs: ditto.
9112
9113         * RuntimeMethodHandle.cs: ditto.
9114
9115         * RuntimeFieldHandle.cs: ditto.
9116
9117         * Random.cs: ditto.
9118
9119         * OutOfMemoryException.cs: ditto.
9120
9121         * OperatingSystem.cs: ditto.
9122
9123         * ObjectDisposedException.cs: ditto.
9124
9125         * NullReferenceException.cs: ditto.
9126
9127         * NotImplementedException.cs: ditto.
9128
9129         * NotFiniteNumberException.cs: ditto.o
9130
9131         * MulticastNotSupportedException.cs: ditto.
9132
9133         * MissingMethodException.cs: ditto.
9134
9135         * MemberAccessException.cs: ditto.
9136
9137         * Math.cs: ditto.
9138
9139         * InvalidCastException.cs: ditto.
9140
9141         * IntegerFormatter.cs: ditto.
9142
9143         * Int32.cs: ditto.
9144
9145         * Int16.cs: ditto.
9146
9147         * IndexOutOfRangeException.cs: ditto.
9148
9149         * Environment.cs: ditto
9150
9151         * Enum.cs: ditto.
9152
9153         * DuplicateWaitObjectException.cs: ditto.
9154
9155         * DivideByZeroException.cs: ditto.
9156
9157         * Delegate.cs: ditto
9158
9159         * DecimalFormatter.cs: ditto.
9160
9161         * Decimal.cs: ditto.
9162
9163         * DateTime.cs: ditto.
9164
9165         * Convert.cs: ditto.
9166
9167         * Char.cs: ditto.
9168
9169         * Byte.cs: ditto.
9170
9171         * Boolean.cs: ditto.
9172
9173         * ArrayTypeMismatchException.cs: ditto.
9174
9175         * ArithmeticException.cs: ditto.
9176
9177         * ArgumentOutOfRangeException.cs: ditto.
9178
9179         * ArgumentNullException.cs: ditto.
9180
9181         * Enum.cs: Make it derive from ValueType, add CompareTo method.
9182
9183         * Attribute.cs: Reformat.
9184
9185 2001-11-14  Miguel de Icaza  <miguel@ximian.com>
9186
9187         * Decimal.cs, Double.cs, Byte.cs, Char.cs, Int16, UInt16, Int32,
9188         UInt32, Int64, UInt64, SByte, Single (CompareTo): Throw the
9189         exception if the value is null too.
9190
9191         * Char.cs (CompareTo): ditto.
9192
9193         * ApplicationException.cs: Added constructor that does serialization.
9194
9195         * ParamArrayAttribute.cs: Define attribute correctly.
9196
9197 Wed Nov 14 16:31:19 CET 2001 Paolo Molaro <lupus@ximian.com>
9198
9199         * AppDomain.cs: rename dummy interface _AppDomain to AppDomain_Intf.
9200         * Array.cs: fix Array.Copy.
9201         * AssemblyLoadEventArgs.cs: rename field.
9202         * CLSCompliantAttribute.cs: use correct name for the class.
9203         * Char.cs: fix IsLetter.
9204         * Console.cs, DateTime.cs, Decimal.cs, IConvertible.cs, Math.cs,
9205         SByte.cs, UInt16.cs, UInt32.cs, UInt64.cs, UIntPtr.cs: CLSCompliant updates.
9206         * Convert.cs: CLSCompliant updates, add ChangeType() methods.
9207         * Delegate.cs: renamed target field to m_target.
9208         * Enum.cs: added missing methods.
9209         * MonoType.cs: add a constructor and some needed properties.
9210         * Object.cs: implement GetType().
9211         * String.cs: CLSCompliant updates. Fixes everywhere to remove the
9212         ending 0 char.
9213         * Type.cs: add missing methods/properties.
9214
9215 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
9216
9217         * AttributeUseage.cs: Should define AttributeUsageAttribute.
9218
9219         * CLSCompliant.cs: Marked with AttributeUsage attribute.
9220
9221         * Decimal.cs: Fixed CLSCompliant attributes.
9222
9223         * Type.cs: changed _impl to internal (needs to be accessable by
9224         subclasses).
9225
9226         (TypeHandle): Marked as abstract, implementation removed.
9227
9228         (IsNotPublic, IsPublic, GetMethods, GetPropery, GetConstructor,
9229         GetMethod): Added stub implementations so NUnit would link against
9230         corlib
9231
9232 Tue Nov 6 09:11:43 CET 2001 Paolo Molaro <lupus@ximian.com>
9233
9234         * AppDomain.cs: use an internal constructor for AssemblyBuilder.
9235
9236 2001-11-05  Miguel de Icaza  <miguel@ximian.com>
9237
9238         * NonSerializedAttribute.cs: Add AttributeUsage rules for this
9239         attribute. 
9240
9241 Fri Nov 2 18:23:15 CET 2001 Paolo Molaro <lupus@ximian.com>
9242
9243         * String.cs: fix a couple of bugs.
9244         * AppDomain.cs: use new AppBuilder constructor.
9245         * Buffer.cs, GC.cs, NonSerializedAttribute.cs,
9246         NotImplementedException.cs, ObjectDisposedException.cs,
9247         UnauthorizedAccessException.cs: add implementation.
9248         * OverflowException.cs: fix class name.
9249
9250 2001-10-28  Jeffrey Stedfast  <fejj@ximian.com>
9251
9252         * String.cs: Don't use a terminating nil char for our internal
9253         array.
9254
9255 2001-10-27  Miguel de Icaza  <miguel@ximian.com>
9256
9257         * Delegate.cs (Delegate.CombineImpl): Implement.
9258         (Delegate.Combine): Implement.
9259
9260         * MulticastDelegate.cs (MulticastDelegate.Equals): Implement.
9261
9262         (MulticastDelegate.CombineImpl): This was not as trivial as I
9263         thought. 
9264
9265         * ContextStaticAttribute.cs: Added AttributeUsage to
9266         ContextStaticAttribute. 
9267
9268         * FlagsAttribute.cs: Add AttributeUsage to FlagsAttribute
9269
9270 2001-10-15  Martin Weindel <martin.weindel@t-online.de>
9271
9272         * added Decimal.cs * added DecimalFormatter.cs (internal class
9273         used from System.Decimal)
9274
9275 2001-10-11  Thomas Neidhart <tome@sbox.tugraz.at>
9276
9277         * Convert.cs: Added methods for Base64 transforming just used the
9278           existing System.Security.Cryptography.ToBase64Transform, should
9279           be changed to use a stand-alone class, e.g. Base64Encoder
9280           
9281 2001-10-10  Derek Holden  <dholden@draper.com>
9282
9283         * IntegerFormatter.cs: Added. Implements ToString for all the
9284         integer data types for all the format types.
9285
9286         * Byte.cs: Using IntegerFormatter for ToString's.
9287
9288         * SByte.cs: Using IntegerFormatter for ToString's.
9289
9290         * Int16.cs: Using IntegerFormatter for ToString's.
9291
9292         * Int32.cs: Using IntegerFormatter for ToString's.
9293
9294         * Int64.cs: Using IntegerFormatter for ToString's.
9295
9296         * UInt16.cs: Using IntegerFormatter for ToString's.
9297
9298         * UInt32.cs: Using IntegerFormatter for ToString's.
9299
9300         * UInt64.cs: Using IntegerFormatter for ToString's.
9301
9302 2001-10-07  Miguel de Icaza  <miguel@ximian.com>
9303
9304         * Exception.cs: Implement bits of serialization.
9305
9306         * RuntimeFieldHandle.cs: Implement Serialization features.
9307
9308         * Type.cs: Implement TypeHandle property.
9309
9310 2001-09-28  Dick Porter  <dick@ximian.com>
9311
9312         * LocalDataStoreSlot.cs: Implemented
9313
9314 Tue Sep 25 19:58:14 CEST 2001 Paolo Molaro <lupus@ximian.com>
9315
9316         * String.cs: fix off-by-one error in Trim().
9317
9318 Tue Sep 25 18:52:14 CEST 2001 Paolo Molaro <lupus@ximian.com>
9319
9320         * Type.cs: added GetType () method.
9321
9322 Tue Sep 25 17:29:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
9323
9324         * MissingMethodException.cs, MissingMemberException.cs,
9325         MemberAccessException.cs: added.
9326
9327 Tue Sep 25 16:46:43 CEST 2001 Paolo Molaro <lupus@ximian.com>
9328
9329         * String.cs: don't access the string array out of bounds in
9330         LastIndexOf.  * Type.cs: fix return type of the Assembly property.
9331
9332 Mon Sep 24 20:35:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
9333
9334         * String.cs: make Intern and IsIntern internalcalls.
9335
9336 2001-09-13  Dick Porter  <dick@ximian.com>
9337
9338         * Type.cs: Added a stub for the IsValueType property.
9339
9340         * SystemException.cs (System): Added the other constructor, so
9341         that System.Threading exceptions can inherit it.
9342
9343 2001-09-08  Jeffrey Stedfast  <fejj@ximian.com>
9344
9345         * String.cs (TrimStart): Don't keep looping through the trimchars
9346         once we've found a match.
9347         (TrimEnd): Same here.
9348         (Trim): And finally here.
9349
9350 2001-09-07  Ravi Pratap  <ravi@ximian.com>
9351
9352         * Char.cs (IsLetterOrDigit): Implement.
9353         (IsLower): Implement, but we need to be Unicode aware.
9354         (IsNumber): Implement.
9355         (IsPunctuation): Implement.
9356         (IsWhiteSpace): Implement.
9357         (ToUpper): Fix to subtract 32 from the ASCII value, not 33 :)
9358         (ToLower): Same here.
9359
9360 2001-09-04  Miguel de Icaza  <miguel@ximian.com>
9361
9362         * Object.cs: Shortcut, if (a == b) then return true.
9363
9364 Fri Sep 7 18:34:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
9365
9366         * Delegate.cs: we need a pointer to the method thunk in
9367         the delegate object.
9368
9369 Fri Sep 7 12:28:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
9370
9371         * AsyncCallback.cs, common.src: add AsyncCallback delegate.
9372
9373 2001-09-06  Jeffrey Stedfast  <fejj@ximian.com>
9374
9375         * String.cs (System): Don't mix uint and int.
9376
9377 2001-09-04  Jeffrey Stedfast  <fejj@ximian.com>
9378
9379         * String.cs (BoyerMoore): Modified to not use pointers and to instead
9380         use indexes.
9381         (IndexOf): Use BoyerMoore.
9382
9383 2001-09-02  Miguel de Icaza  <miguel@ximian.com>
9384
9385         * All over: Use the autogenerated enumerations from the ECMA
9386         documentation that Sergey wrote.
9387         
9388         * PlatformID.cs: Add Unix definition.
9389
9390         * OperatingSystem.cs: Use Unix instead of Linux here.
9391
9392         * MarshalByRefObject.cs: Mark class as [Serializable].
9393
9394 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
9395
9396         * Console.cs: impl. (write only)
9397         implemented the stdin stuff
9398
9399         * Int32.cs: impl. real op_Equal
9400
9401 2001-08-24  Miguel de Icaza  <miguel@ximian.com>
9402
9403         * (common.src): Removed IAsyncResult as it is not on CVS yet.
9404
9405         * UIntPtr.cs: Removed CLSCompliant attribute before the namespace,
9406         as it breaks the build.
9407
9408 2001-08-23  Michael Lambert <michaellambert@email.com>
9409
9410         * IntPtr.cs: Optimized unsafe declaration, implemented GetObjectData, 
9411         added CLSCompliant attribute
9412
9413         * IAsyncResult.cs: Added
9414
9415         * common.src: Added IAsyncResult.cs
9416
9417 2001-08-23  Michael Lambert <michaellambert@email.com>
9418
9419         * UIntPtr.cs: Added
9420
9421         * common.src: Added UIntPtr.cs
9422
9423 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
9424
9425         * Attribute.cs: uncomment some code to make it compile again
9426
9427         * mono.src: removed duplicated Attribute.cs
9428
9429 2001-08-16  Nick Drochak <ndrochak@gol.com>
9430
9431         * Attribute.cs: implemented all methods except GetHashCode()
9432
9433         * common.src: added Attribute.cs so it would compile in
9434
9435 2001-08-10  Dietmar Maurer  <dietmar@ximian.com>
9436
9437         * Object.cs: changed MemberWiseClone to MemberwiseClone, and
9438         marked it as InternalCall
9439         
9440         * common.src: removed UriFormatException.cs because the file is
9441         not there.
9442
9443         * RuntimeTypeHandle.cs: replaced IntrPtr with IntPtr
9444         * Char.cs: replaced byte with char
9445
9446         * Array.cs: make it work with the mono interpreter
9447
9448 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
9449
9450         * Version.cs: Make the class sealed
9451
9452 2001-08-08  Bob Smith  <bob@thestuff.net>
9453
9454         * Random.cs: Many compile fixes.
9455         * Random.cs: I read a bad spec. Class updated to match real spec.
9456
9457 2001-08-06  Miguel de Icaza  <miguel@ximian.com>
9458
9459         * IntPtr.cs: Added and Completed implementation.
9460
9461         * Uri.cs: Add a note.
9462
9463 2001-08-06  Bob Smith  <bob@thestuff.net>
9464
9465         * Random.cs: Compile fix. Needs more testing.
9466
9467 2001-08-06 Garrett Rooney <rooneg@electricjellyfish.net>
9468
9469         * Uri.cs: Initial Implementation.  Parsing needs to be fixed to take 
9470         into account IPv6 addresses, url encoding needs to be implemented, and 
9471         various minor methods need to be written, but this is a decent start.
9472
9473 2001-08-06  Dietmar Maurer  <dietmar@ximian.com>
9474
9475         * common.src: added Object.cs
9476
9477         * mono.src: added ValueType.cs
9478
9479 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
9480
9481         * Math.cs: replaced libc with libm
9482
9483 2001-08-02  Bob Smith  <bob@thestuff.net>
9484
9485         * Random.cs: Implemented. Needs testing.
9486
9487 2001-08-02  Miguel de Icaza  <miguel@ximian.com>
9488
9489         * IServiceProvider.cs, EventHandler.cs: New files.
9490
9491 2001-08-02  Marcel Narings  <marcel@narings.nl>
9492         
9493         * DateTime.cs: Cleaned up a bit. Added the Add* family members.
9494         Added exceptions. Added IConvertible. Still needs some platform 
9495         dependend stuff, the Parse and ToString members
9496
9497 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
9498
9499         * Type.cs (GetTypeFromHandle): added placeholder 
9500
9501 2001-07-24  Derek Holden  <dholden@draper.com>
9502
9503         * Boolean.cs: Formatted to code style standard. Added GetTypeCode
9504         which is really an IConvertible defined method.
9505
9506         * Byte.cs: Added a missing Parse method. Put in Parse and ToString
9507         behavior, still need to do the main Parse and ToString.
9508
9509         * Char.cs: Added a bunch of missing ECMA methods. Commented a
9510         specification discrepency. Still didn't any unicode stuff, though
9511         every IsFoo(char c) method has an IsFoo(string, index)
9512         counterpart, added wrappers for those.
9513         
9514         * Convert.cs: Fixed NaN/Inf checking and double/float
9515         rounding. Added ToType for IConvertible classes
9516
9517         * Double.cs: Fixed ECMA min and max values. Added IsInfinity /
9518         IsNaN methods. Changed Inf/NaN internals.
9519
9520         * IConvertible.cs: Added comments for using
9521         Convert.ToType. Changed return values to draft base values.
9522
9523         * Int16.cs: Added a missing Parse statement. Put in behavior for
9524         overloaded ToString and Parse methods.
9525
9526         * Int32.cs: Added a missing Parse statement. Put in behavior for
9527         overloaded ToString and Parse methods.
9528
9529         * Int64.cs: Added a missing Parse statement. Put in behavior for
9530         overloaded ToString and Parse methods.
9531         
9532         * Single.cs: Put in ECMA epsilon value. Added IsInfinity / IsNaN
9533         methods. Changed Inf/NaN internals.
9534
9535         * SByte.cs: Added a missing Parse method. Put in Parse and
9536         ToString behavior, still need to do the main Parse and ToString.
9537
9538         * UInt16.cs: Added a missing Parse statement. Put in behavior for
9539         overloaded ToString and Parse methods.
9540
9541         * UInt32.cs: Added a missing Parse statement. Put in behavior for
9542         overloaded ToString and Parse methods.
9543
9544         * UInt64.cs: Added a missing Parse statement. Put in behavior for
9545         overloaded ToString and Parse methods.
9546         
9547 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
9548
9549         * MulticastDelegate.cs: New File.
9550
9551         * Delegate.cs: New file.
9552
9553         * Enum.cs: New file.
9554
9555         * Attribute.cs: New file.
9556
9557         * Type.cs: New file.
9558
9559         * ParamArrayAttribute.cs: New file.
9560
9561         * RuntimeTypeHandle.cs: New file.
9562
9563         * MulticastDelegate.cs: Added.
9564
9565         * DateTime.cs: Added
9566
9567         * Delegate.cs: Added
9568
9569 2001-07-18  Michael Lambert <michaellambert@email.com>
9570
9571         * AttributeTargets.cs: Add.
9572
9573 2001-07-19  Jeffrey Stedfast  <fejj@ximian.com>
9574
9575         * Char.cs: Made ToUpper and ToLower public methods.
9576
9577         * String.cs: Lots and lots of compile fixes - just need to write
9578         DateTime.cs and this should build completely now.
9579
9580 2001-07-19  Bob Smith (bob@thestuff.net)
9581
9582         * Math.cs: Implemented. 
9583
9584 2001-07-19  Miguel de Icaza  <miguel@ximian.com>
9585
9586         * String.cs: Removed tolower and toupper.
9587
9588         * Char.cs: Moved ToLower and ToUpper from string to here. 
9589
9590         * Convert.cs ToByte (float value), ToByte (double value) Use IsNan
9591         instead of comparing the value to Nan.
9592
9593 2001-07-19  Duco Fijma (duco@lorentz.xs4all.nl)
9594
9595         * TimeSpan.cs: New implementation.
9596
9597 2001-07-18  Scott Sanders <scott@stonecobra.com>
9598
9599          * UriFormatExcpetion.cs: Add - 85% complete
9600
9601 2001-07-17  Jeffrey Stedfast  <fejj@ximian.com>
9602
9603         * String.cs (IndexOf): Slight optimization that allows skipping
9604         over a few chars here and there. This isn't as good as using my
9605         Boyer-Moore implementation, however, Boyer-Moore is only really
9606         good for long strings (I plan on making the code decide which
9607         string search algorithm it should use on-the-fly at some point).
9608         (LastIndexOf): Fix to work correctly.
9609         (BoyerMoore): Took out some unneeded code and fixed an edge-case.
9610
9611 2001-07-16  Michael Lambert <michaellambert@email.com>
9612
9613         * EventArgs.cs: Add.
9614         
9615 2001-07-16  Miguel de Icaza  <miguel@ximian.com>
9616
9617         * Version.cs: Remove my buggy comment.
9618
9619 2001-07-15  Sean MacIsaac  <macisaac@ximian.com>
9620
9621         * String.cs: Spelling error of IComparable, object's
9622         MemberwiseClone cannot be overridden.  Made indexer valid for now,
9623         but not sure what to do about this in the long run.  Seems to be a
9624         couple bugs in csc.exe having to do with multiple pointer defs in
9625         the same statement, and returning subclasses of a class in the
9626         return type of an interface function implementation.  Also moved
9627         operators inside of class definition.
9628
9629 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
9630
9631         * String.cs: A tom of compile fixes, although we still don't compile.
9632
9633         * IConvertible.cs: The To*Int64() methods return *Int64's, not
9634         *Int32's. Also, it's ToDateTime() not ToDateType().
9635
9636 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
9637
9638         * String.cs: Apparently I needed to at least write stubs for the
9639         IConvertible interfaces. *sigh*
9640
9641 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>
9642
9643         * String.cs: Many logic/other fixes and better usage of the
9644         features of c#
9645         (tolower): New convenience method to help condense code.
9646         (toupper): Another new helper method.
9647         (Compare): Use the new helper methods.
9648         (ToLower): use tolower().
9649         (ToUpper): use toupper().
9650         (LastIndexOfAny): Implemented.
9651         (BoyerMoore): New private helper method that implements a modified
9652         version of the Boyer-Moore search algorithm. Noothing uses it yet
9653         as I'm not 100% sure it even works properly with unicode strings
9654         not to mention it uses a huge lookup-table :-)
9655         (Split): Implemented.
9656
9657 2001-07-13  Jeffrey Stedfast  <fejj@ximian.com>
9658
9659         * TODO: Added things that need to be finished in System.String
9660
9661         * String.cs: New source file implementing the System.String class
9662
9663 2001-07-12  Sean MacIsaac  <macisaac@ximian.com>
9664
9665         * TypeCode.cs: UInt64 was UInt63.
9666
9667         * Object.cs: Fixed a numer of compiler errors.
9668
9669         * Array.cs: Fixed some compiler errors.
9670
9671         * IComparable.cs: Fixed some compiler errors.
9672
9673         * ICloneable.cs: Fixed some compiler errors.
9674
9675         * IConvertible.cs: Fixed some compiler errors.
9676
9677         * IFormattable.cs: Fixed a compiler error.
9678
9679         * IFormatProvider.cs: Fixed a compiler error.
9680
9681         * IDisposable.cs: Fixed a compiler error.
9682
9683         * IFormatProvider.cs: Added public accesability type to
9684         IFormatProvider.
9685
9686         * Exception.cs: Added a using statement to remove compile time
9687         error.
9688
9689         * ApplicationException.cs: Removed a ; that was causing a compiler
9690         error.
9691
9692         * Int16.cs: Fixed some compiler errors.
9693
9694         * Int32.cs: Fixed some compiler errors.
9695
9696         * Int64.cs: Fixed some compiler errors.
9697
9698         * SystemException.cs: Fixed a compiler error.
9699
9700         * UInt16.cs: Fixed some compiler errors.
9701
9702         * UInt32.cs: Fixed some compiler errors.
9703
9704         * UInt64.cs: Fixed some compiler errors.
9705
9706         * Void.cs: Fixed a compiler error.      
9707
9708 2001-07-12  Joe Shaw  <joe@ximian.com>
9709
9710         * Array.cs: Fix backwards parameters to Array.SetValue()
9711         throughout.
9712         (BinarySearch): Fix backward logic surrounding whether to call
9713         value.CompareTo or comparer.Compare.
9714         (LastIndexOf): Stop being stupid. I am so not used to strongly
9715         bounded arrays...
9716         (Sort): Implement a quicksort.
9717
9718 2001-07-11  Joe Shaw  <joe@ximian.com>
9719
9720         * Array.cs: Change all instances of trying to access an array with
9721         the index operator to calls to GetValue and SetValue, and add
9722         InternalGetValue and InternalSetValue which are internal calls
9723         into the runtime. Ew.
9724
9725 2001-07-10  Joe Shaw  <joe@ximian.com>
9726
9727         * Array.cs: Implemented everything but Sort().
9728
9729 2001-07-09  Jeffrey Stedfast  <fejj@ximian.com>
9730
9731         * Object.cs (Object::Equals): Object variable name is `o'.
9732
9733 2001-07-06  Joe Shaw  <joe@ximian.com>
9734
9735         * Int16.cs, Int32.cs, Int64.cs, UInt16.cs, UInt32.cs, UInt64.cs:
9736         Implement the IComparable and IFormattable interfaces. Fix a typo
9737         (publig -> public)
9738
9739         * ApplicationException.cs, ArgumentException.cs,
9740         ArgumentNullException.cs, ArgumentOutOfRangeException.cs,
9741         ArtithmeticException.cs, ArrayTypeMismatchException.cs,
9742         DivideByZeroException.cs, DuplicateWaitObjectException.cs,
9743         ExecutionEngineException.cs, FormatException.cs,
9744         IndexOutOfRangeException.cs, InvalidCastException.cs,
9745         InvalidOperationException.cs, InvalidProgramException.cs,
9746         MulticateNotSupportedException.cs, NotFiniteNumberException.cs,
9747         NotSupportedException.cs, NullReferenceException.cs,
9748         OutOfMemoryException.cs, OverflowException.cs, RankException.cs,
9749         StackOverflowException.cs, SystemException.cs,
9750         TypeInitializationException.cs: Added all of the exceptions
9751         specified by the language spec. Mmmm... bloat.
9752
9753 2001-07-06  Miguel de Icaza  <miguel@ximian.com>
9754
9755         * Int64.cs, Int32.cs: Put.  Parsing and ToString missing.  Should
9756         do a generic routine all of these guys use.
9757
9758         * Int16.cs: identified missing methods.
9759
9760         * UInt16.cs, UInt32.cs, UInt64.cs: Add.
9761
9762 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
9763
9764         * TypeCode.cs: Implement
9765
9766         * Void.cs: Implement.
9767
9768         * TODO: Add file to keep track of pending tasks.
9769
9770         * Object.cs, ValueType.cs: Implement.