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