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