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