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