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