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