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