(ToType): Implement this using Convert.ToType.
[mono.git] / mcs / class / corlib / System / ChangeLog
1 2003-01-27  Duncan Mak  <duncan@ximian.com>
2
3         * Enum.cs (ToType): Implement this using Convert.ToType.
4
5 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
6
7         * Math.cs: Remove Pow's implementation body as it was wrong.  The
8         C code does the right thing.  The code was trying to handle a
9         number of cases, and that was incorrect.
10
11 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12
13         * CharEnumerator.cs: fix to Current by crainaj@hotmail.com. Closes
14         bug #37113.
15
16 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17
18         * Enum.cs: added caching to GetInfo.
19
20 2003-01-23  Dick Porter  <dick@ximian.com>
21
22         * Environment.cs (System): Implemented ExitCode
23
24 2003-01-23  Zoltan Varga  <vargaz@freemail.hu>\r
25 \r
26         * Type.cs (IsInstanceOfType): fixed regression caused by the change\r
27         to IsSubclassOf().\r
28 \r
29 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
30 \r
31         * MonoType.cs: re-added lines that were removed in the previous commit.\r
32 \r
33 2003-01-16  Lluis Sanchez Gual <lsg@ctv.es>\r
34 \r
35         * Type.cs: corrected property IsSerializable. It should always return\r
36         true for enums and delegates\r
37         * MonoType.cs: added serialization support.\r
38         * Delegate.cs: added serialization support.\r
39         * DBNull.cs: added serialization support.\r
40         * UnitySerializationHolder.cs: supports serialization of Assembly,\r
41         MonoType and DBNull.\r
42         * DelegateSerializationHolder.cs: added.\r
43 \r
44 2003-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
45 \r
46         * Exception.cs: changed default message to match MS one.\r
47 \r
48 2003-01-12  Patrik Torstensson <totte@race-x-change.com>\r
49 \r
50         * String.cs: Fixed bug with CompareOrdinal\r
51 \r
52 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
53 \r
54         * Enum.cs: implements IFormattable.\r
55 \r
56 2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
57 \r
58         * AppDomain.cs: implemented DoCallBack method.\r
59         * MonoType.cs:\r
60         (GetConstructorImpl): when the flag is BindingFlags.Default, set it to\r
61         Public, Instance.\r
62 \r
63         NUnit2 tests start moving.\r
64 \r
65 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
66 \r
67         * Activator.cs: fixed bug #36052. Also added checks to avoid trying to\r
68         instantiate an abstract class.\r
69 \r
70 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
71 \r
72         * Type.cs:\r
73         (IsSubclassOf): return false when null. Use != instead of Equals.\r
74 \r
75 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
76 \r
77         * Type.cs: fixed IsSubclassOf. Patch from Zoltan Varga.\r
78 \r
79 Fri Jan 3 20:18:51 CET 2003 Paolo Molaro <lupus@ximian.com>\r
80 \r
81         * MonoType.cs: fixed Namespace property for nested types.\r
82 \r
83 Fri Jan 3 16:18:27 CET 2003 Paolo Molaro <lupus@ximian.com>\r
84 \r
85         * MonoCustomAttrs.cs: create properly typed arrays when returning\r
86         arrays of attributes of a given type.\r
87 \r
88 Fri Jan 3 11:10:14 CET 2003 Paolo Molaro <lupus@ximian.com>\r
89 \r
90         * MonoType.cs: fixed MemberType property for nested types.\r
91 \r
92 2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
93 \r
94         * String.cs: fixed bug #36209.\r
95 \r
96 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>\r
97 \r
98         * Activator.cs: implemented method GetObject.\r
99 \r
100 2002-12-28  Marcus Urban <mathpup@mylinuxisp.com>\r
101 \r
102         * Activator.cs: Since the documentation indicates the method\r
103         either succeeds or throws one of the listed exceptions, we weren't\r
104         expecting that CreateInstance might be returning null.\r
105 \r
106         For more information on the bug, see http://bugs.ximian.com/show_bug.cgi?id=36109\r
107 \r
108 2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>\r
109 \r
110         * MarshalByRefObject.cs: implemented CreateObjRef.\r
111 \r
112 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
113 \r
114         * DateTime.cs: fixed bug #30076.\r
115         * TimeZone.cs: provide the parameter name in a exception.\r
116 \r
117 2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
118 \r
119         * DecimalFormatter.cs: fixed bug #35560.\r
120 \r
121 Wed Dec 4 16:04:28 CET 2002 Paolo Molaro <lupus@ximian.com>\r
122 \r
123         * Type.cs: implemented GetInterfaceMap (needs an updated runtime).\r
124 \r
125 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
126 \r
127         * Array.cs: use Object.Equals (obj, obj) to compare objects to avoid\r
128         nulls. Fixes #34909.\r
129 \r
130 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
131 \r
132         * AppDomain.cs: DoAssemblyResolve now returns when one of the handlers\r
133         returns a non-null assembly.\r
134 \r
135 2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
136 \r
137         * MulticastDelegate.cs: make GetInvocationList work for more than 1\r
138         delegate.\r
139 \r
140 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
141 \r
142         * MulticastDelegate.cs: implemented GetInvocationList. I'll check later\r
143         if this is the correct order of invocation.\r
144 \r
145 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
146 \r
147         * Type.cs: changed the signature of internal_from_name. Modified\r
148         the overloads of GetType to use it and check the typeName argument.\r
149         Implemented FindInterfaces.\r
150 \r
151 2002-11-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
152 \r
153         * MarshalByRefObject.cs: undo latest changes. It breaks the build by\r
154         some obscure reasons (try make -f makefile.gnu using a corlib which has\r
155         the modified version).\r
156 \r
157 2002-11-26  Miguel de Icaza  <miguel@ximian.com>\r
158 \r
159         * String.cs (Concat): Reduce the number of compares required. \r
160 \r
161 Mon Nov 18 17:54:22 CET 2002 Paolo Molaro <lupus@ximian.com>\r
162 \r
163         * Activator.cs: throw a MissingMethodException if the default\r
164         constructor is not found in CreateInstance.\r
165 \r
166 2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
167 \r
168         * String.cs:\r
169         (Equals (str, str)): use 'as' instead of casting to object.\r
170         (Equals (obj)): check the length of the strings (until now,\r
171         "Hello".Equals ((object) "Hellow World!) was true!).\r
172 \r
173 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
174 \r
175         * MonoType.cs: implemented GetEvent (name, flags).\r
176 \r
177 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
178 \r
179         * AppDomain.cs: implemented a couple of methods called from the runtime\r
180         to fire AssemblyLoad and AssemblyResolve events.\r
181 \r
182 2002-10-31  Dick Porter  <dick@ximian.com>\r
183 \r
184         * Environment.cs: MonoIO methods now have an error parameter\r
185 \r
186 2002-10-29  Zoltan Varga  <vargaz@freemail.hu>\r
187 \r
188         * Enum.cs: Added support for whitespaces in Enum:Parse().\r
189 \r
190 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
191 \r
192         * Type.cs: fixed GetProperty (string, Type []) and removed get_property\r
193         internal call. Closes bug #32992.\r
194 \r
195 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
196 \r
197         * Exception.cs: display the inner exception, if any, in ToString ().\r
198 \r
199 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
200 \r
201         * Environment.cs: fixed StackTrace property.\r
202 \r
203 2002-10-16  Nick Drochak  <ndrochak@gol.com>\r
204 \r
205         * Enum.cs (Parse): Then fix the code so that it works too.\r
206 \r
207 2002-10-15  Nick Drochak  <ndrochak@gol.com>\r
208 \r
209         * Enum.cs (Parse): Use unsigned casts to avoid compiler warnings.\r
210 \r
211 2002-10-12  Nick Drochak  <ndrochak@gol.com>\r
212 \r
213         * IntegerFormatter.cs: Fix compiler warnings.\r
214 \r
215 2002-10-11  Tim Haynes <thaynes@openlinksw.com>\r
216 \r
217         * Type.cs (GetConstructors): Use the correct flags.\r
218 \r
219 2002-10-09  Nick Drochak  <ndrochak@gol.com>\r
220 \r
221         * IntegerFormatter.cs: Suppress insignificant leading zeros\r
222 \r
223 Fri Sep 27 15:06:29 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
224 \r
225         * MonoCustomAttrs.cs: applied patch by "Si Jingnan"\r
226         <stonewell@21cn.com> to return also derived types.\r
227 \r
228 2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
229 \r
230         * Activator.cs: little fix in CreateInstance (Type, bool).\r
231 \r
232 2002-09-19  Duncan Mak  <duncan@ximian.com>\r
233 \r
234         * Array.cs (CopyTo): Revert back to 1.40, this is stopping\r
235         I18N/Common from building right now.\r
236 \r
237 2002-09-19  Nick Drochak  <ndrochak@gol.com>\r
238 \r
239         * Array.cs (CopyTo): Account for Object type and base (primitive) types\r
240         * Type.cs (IsAssignableFrom): return false for a null parameter\r
241 \r
242 2002-09-19  Nick Drochak <ndrochak@gol.com>\r
243 \r
244         * Array.cs (CopyTo): Check that source type can be cast automatically\r
245         to the destination type.\r
246 \r
247 2002-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
248 \r
249         * Type.cs: implemented IsAssignableFrom, DefaultBinder and\r
250         GetDefaultMembers.\r
251 \r
252 2002-09-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
253 \r
254         * Char.cs: implemented ToString (char)\r
255         * IntegerFormatter.cs: made it internal.\r
256 \r
257 2002-09-13  Nick Drochak  <ndrochak@gol.com>\r
258 \r
259         * Enum.cs (Format): handle the "d" format for both signed and unsigned\r
260         underlying types.\r
261 \r
262 2002-09-12  Dick Porter  <dick@ximian.com>\r
263 \r
264         * UIntPtr.cs: Remove the [StructLayout(LayoutKind.Auto)]\r
265         attribute, as there doesn't appear to be any struct\r
266         layout-depending code here (and corcompare says it should be\r
267         LayoutKind.Sequential)\r
268 \r
269         * Decimal.cs: Stub out missing methods, add\r
270         [DecimalConstantAttribute] to the constant fields (as shown by\r
271         corcompare).\r
272 \r
273         * LocalDataStoreSlot.cs: \r
274         * Environment.cs: \r
275         * Char.cs: \r
276         * Array.cs: Stub out missing methods.\r
277 \r
278         * TypedReference.cs: \r
279         * ArgIterator.cs: Stub out\r
280 \r
281         * AppDomainSetup.cs: \r
282         * AppDomain.cs: Stub out missing methods, add missing\r
283         ClassInterface(ClassInterfaceType.None) attribute.\r
284 \r
285 2002-09-12  Nick Drochak  <ndrochak@gol.com>\r
286 \r
287         * Double.cs (ToString): Throw exception when "X" format is passed in.\r
288 \r
289 Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
290 \r
291         * MonoType.cs: implemented Module property.\r
292 \r
293 Wed Sep 11 12:49:51 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
294 \r
295         * MonoType.cs, Type.cs: implemented InvokeMember.\r
296 \r
297 Wed Sep 11 11:06:43 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
298 \r
299         * Delegate.cs: check the type passed to CreateDelegate is a Delegate\r
300         type. Check the method signature matches.\r
301 \r
302 Sat Sep 7 10:16:52 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
303 \r
304         * RuntimeMethodHandle.cs: implemented GetFunctionPointer().\r
305 \r
306 2002-09-06  Miguel de Icaza  <miguel@ximian.com>\r
307 \r
308         * Console.cs: Specify an encoder, otherwise we will get the UTF8\r
309         encoder that by default emits the byte markers.\r
310 \r
311 Fri Sep 6 20:14:04 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
312 \r
313         * Delegate.cs: look also for non-public methods until we have the\r
314         security checks in place.\r
315 \r
316 Fri Sep 6 12:20:06 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
317 \r
318         * MonoType.cs: consider also the full name in GetInterface.\r
319 \r
320 Fri Sep 6 12:11:28 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
321 \r
322         * MonoType.cs: implemented GetMembers, GetConstructorImpl and\r
323         GetMethodImpl using the binder.\r
324         * Type.cs: GetConstructorImpl/GetConstructor fixes.\r
325 \r
326 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>\r
327         * Enum.cs: Get rid of warning CS0162.\r
328 \r
329 2002-09-04  Miguel de Icaza  <miguel@ximian.com>\r
330 \r
331         * Double.cs, Single.cs, Char.cs, Boolean.cs: Use internal for the\r
332         actual value instead of public.\r
333 \r
334         * LocalDataStoreSlot.cs: Make constructor internal.\r
335 \r
336         * Int16.cs, UInt16.cs, Int32.cs, UInt32.cs, Int64.cs, UInt64.cs,\r
337         SByte.cs, Byte.cs, Char.cs: Use internal for the actual value\r
338         instead of public.\r
339 \r
340 2002-09-03  Jonathan Pryor <jonpryor@vt.edu>\r
341         * Enum.cs: Fixed Enum.Format so that the "x" format specifier would work\r
342                    properly.\r
343 \r
344 2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
345 \r
346         * DateTime.cs: fixed buglet.\r
347 \r
348 Tue Aug 27 16:39:47 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
349 \r
350         * MonoType.cs: speedup access to common data.\r
351 \r
352 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
353 \r
354         * Double.cs: implemented TryParse.\r
355 \r
356         * Math.cs: PowImpl is now private.\r
357 \r
358         * MissingFieldException.cs: implemented Message.\r
359 \r
360         * RuntimeMethodHandle.cs: stubbed GetFunctionPointer.\r
361 \r
362         * _AppDomain.cs: Uncommented ToString.\r
363 \r
364 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
365 \r
366         * Type.cs:\r
367         (IsValueTypeImpl): it's virtual, not abstract. Implemented.\r
368 \r
369 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
370 \r
371         * ArgumentException.cs: use the field instead of the property for\r
372         param_name.\r
373 \r
374         * ArgumentOutOfRangeException.cs: modified Message.\r
375 \r
376         * DateTime.cs: \r
377         (_DoParse): throw out of range exception for year. Removed check\r
378         for month (it's done in the constructor).\r
379 \r
380 2002-08-21  Miguel de Icaza  <miguel@ximian.com>\r
381 \r
382         * Environment.cs: Implemented OSVersion property.\r
383 \r
384 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>\r
385 \r
386         * Exception.cs: set stack_trace to null\r
387 \r
388 Wed Aug 21 13:02:20 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
389 \r
390         * AppDomain.cs: implemented ToString().\r
391 \r
392 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
393 \r
394         * AppDomain.cs: securityInfo can be null in CreateDomain.\r
395 \r
396 2002-08-19  Dick Porter  <dick@ximian.com>\r
397 \r
398         * MonoType.cs: Add a space before the Assembly name in\r
399         AssemblyQualifiedName (needed for resource files so the MS runtime\r
400         can load types)\r
401 \r
402 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
403 \r
404         * AppDomain.cs: parameter name when throwing ArgumentNullException.\r
405 \r
406         * ArgumentException.cs: modified Message to do what MS does.\r
407 \r
408         * ArgumentNullException.cs: don't use {0} in message.\r
409 \r
410         * Exception.cs: use Message property in ToString ().\r
411 \r
412 2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>\r
413 \r
414         * WeakReference.cs: Changed the constructor and GetObjectData\r
415         method needed for ISerializable implementation in order to be\r
416         compatible with SOAP generated by MS.\r
417 \r
418 Wed Aug 14 17:34:07 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
419 \r
420         * MonoType.cs, Type.cs: DeclaringType/ReflectedType fixes.\r
421 \r
422 2002-08-12  Dietmar Maurer  <dietmar@ximian.com>\r
423 \r
424         * Exception.cs (ToString): changed the ouput format.\r
425 \r
426 2002-08-07  Dietmar Maurer  <dietmar@ximian.com>\r
427 \r
428         * MonoType.cs: moved get_method icall to this class, we can\r
429         remove it as soon someone provides a full featured GetMethodImpl.\r
430 \r
431         * Type.cs: use GetMethodImpl everywhere.\r
432 \r
433         * Delegate.cs: new CreateDelegate implementations.\r
434 \r
435 2002-08-06  Tim Coleman <tim@timcoleman.com>\r
436         * MonoType.cs: \r
437                 Fix bug #28582.  Now checks parameters for properties\r
438                 in GetPropertyImpl.\r
439 \r
440 2002-08-04  Nick Drochak  <ndrochak@gol.com>\r
441 \r
442         * Buffer.cs: Throw correct exception in GetByte() and SetByte().\r
443 \r
444 2002-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
445 \r
446         * String.cs:\r
447         (FormatSpecifier): allow white space between the comman and the width\r
448         specifier.\r
449 \r
450 2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
451 \r
452         * Int32.cs:\r
453         * Int64.cs:\r
454         * UInt32.cs:\r
455         * UInt64.cs: fixed bug #28050. May be a MS bug?\r
456 \r
457 Thu Jul 18 14:47:03 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
458 \r
459         * MonoType.cs: fix IsArrayImpl.\r
460 \r
461 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
462 \r
463         * String.cs: make ToLower (culture) and ToUpper (culture) use the\r
464         default ToLower and ToUpper and don't throw NotImplemented.\r
465 \r
466 Sat Jul 13 15:09:01 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
467 \r
468         * Type.cs: make GettTypeCode an icall. Test implementation of\r
469         GetMember().\r
470 \r
471 2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
472 \r
473         * AppDomainSetup.cs: implemented LoaderOptimization.\r
474 \r
475 2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
476 \r
477         * Activator.cs: some more intermediate results checking in\r
478         in CreateInstance and CreateInstanceFrom and use GetConstructor and\r
479         Invoke only with Type [] until the other overloaded versions work.\r
480 \r
481 2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
482 \r
483         * Activator.cs: reformatted. Implemented CreateInstance* methods\r
484         that return ObjectHandle.\r
485 \r
486         * AppDomain.cs: implemented CreateInstance*AndUnwrap methods.\r
487 \r
488 2002-07-03  Nick Drochak  <ndrochak@gol.com>\r
489 \r
490         * Decimal.cs (Divide): Short cut the case where the dividend is 0 (and\r
491         the divisor is not) and avoid the icall, which seems to have a bug.\r
492 \r
493 2002-07-03  Nick Drochak  <ndrochak@gol.com>\r
494 \r
495         * Double.cs (CompareTo): Correctly handle the case where the instance\r
496         is NaN. Also return 0 if the values are equal.\r
497 \r
498 2002/07/03  Nick Drochak <ndrochak@gol.com>\r
499 \r
500         * MissingMethodException: Add missing Message property\r
501         * MissingMemberException: Add missing Message property\r
502 \r
503 2002-06-30  Nick Drochak  <ndrochak@gol.com>\r
504 \r
505         * Double.cs (CompareTo): Just see which is bigger.  Don't use the\r
506         subtraction trick, it doesn't work when the values have a diference of\r
507         less than one.\r
508 \r
509         * Single.cs (CompareTo): same\r
510 \r
511 2002-06-27  Martin Baulig  <martin@gnome.org>\r
512 \r
513         * UIntPtr.cs (UIntPtr.Zero): Use an explicit `u' suffix in the\r
514         constructor argument.  [FIXME: The implicit conversion to an\r
515         unsigned integer doesn't work with mcs.]\r
516 \r
517 2002-06-26  Martin Baulig  <martin@gnome.org>\r
518 \r
519         * DecimalFormatter.cs: Removed MSTEST stuff, use `System',\r
520         not `S = System'.  This file now compiles with mcs.\r
521 \r
522         * String.cs: Removed the already ifdef-outed __arglist Concat function\r
523         to make it compile with mcs.\r
524 \r
525 2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
526 \r
527         * IntegerFormatter.cs:\r
528         (FormatParse.FormatNumber): fixed custom format for negative numbers.\r
529 \r
530 2002-06-21  Martin Baulig  <martin@gnome.org>\r
531 \r
532         * Double.cs: Replace the private `enum State' with constants since this\r
533         will avoid some bigger headaches in mcs.\r
534 \r
535 Thu Jun 20 17:51:44 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
536 \r
537         * TimeSpan.cs: do not pollute the namespace with the\r
538         System.Parser name.\r
539 \r
540 2002-06-18  Nick Drochak  <ndrochak@gol.com>\r
541 \r
542         * ArgumentException.cs: Use the message given in the constructor when\r
543         accessing the Message property.  Thanks to Dietmar for the help with \r
544         "base".\r
545 \r
546 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>\r
547 \r
548         * MonoType.cs: GetField is now a InternalCall\r
549 \r
550 2002-06-13  Nick Drochak  <ndrochak@gol.com>\r
551 \r
552         * DateTime.cs: (Parse): Accept dates that have no hour,min,sec. in the\r
553         sortable format(s), e.g. "2002-02-25"\r
554 \r
555 2002/06/12  Nick Drochak <ndrochak@gol.com>\r
556 \r
557         * Random.cs (Next): Fix math error.  Return a number within the range.\r
558 \r
559 2002-06-12  Nick Drochak  <ndrochak@gol.com>\r
560 \r
561         * String.cs (IndexOf): Return -1 if start index is equal to string\r
562         length.\r
563 \r
564 2002-06-10  Duncan Mak  <duncan@ximian.com>\r
565 \r
566         * Convert.cs (ToDouble): Remove rounding in ToDouble (float).\r
567         (ToType): Added null field in conversionTable to avoid\r
568         IndexOutOfRangeException. Changed what exceptions we throw to match\r
569         the spec.\r
570         \r
571 2002-06-11  Nick Drochak  <ndrochak@gol.com>\r
572 \r
573         * Int64.cs (Parse): Added unique strings to the messages where we throw\r
574         a FormatException. Needed these to debug, so just left them in since\r
575         they might be useful later. Fixed Currency parsing where we weren't\r
576         looking at CurrencyDecimalSeparator, etc.\r
577 \r
578 2002-06-09  Lawrence Pit  <loz@cable.a2000.nl>\r
579 \r
580         * DateTime.cs: fixes to pass tests M0 to M6:\r
581                 if yy pattern then year values >= 30 are in 20th century\r
582                 rfc1123 pattern is always in GMT, therefor useutc must be false\r
583         made GetNow() internal static so it can be called from TimeZone.\r
584         * TimeZone.cs: removed dependency on year 2002 from initialization of \r
585         current timezone.\r
586 \r
587 2002-06-09  Duncan Mak  <duncan@ximian.com>\r
588 \r
589         * Convert.cs (ToType): Rearranged what Exceptions we throw to\r
590         match MS behavior.\r
591 \r
592 2002-06-08  Duncan Mak  <duncan@ximian.com>\r
593 \r
594         * Decimal.cs: Added support for the IConvertible interface.\r
595 \r
596 2002-06-08  Martin Baulig  <martin@gnome.org>\r
597 \r
598         * Enum.cs (IsDefined): `value' may be of the enum's type itself, it\r
599         doesn't necessarily need to be of the enum's underlying type.\r
600 \r
601 2002/06/07  Nick Drochak <ndrochak@gol.com>\r
602 \r
603         * String.cs: Add [Serializable] to class\r
604         * SByte.cs (Parse): Add [CLSCompliant(false)] to all the overloads\r
605 \r
606 2002-06-04  Nick Drochak  <ndrochak@gol.com>\r
607 \r
608         * Double.cs (Parse): Recognize the group separator string, but still we\r
609         don't check the format for the proper number of digits between\r
610         separators. Also throw OverflowException when we get Pos or Neg\r
611         Infinity from runtime.\r
612 \r
613 2002-06-03  Duncan Mak  <duncan@ximian.com>\r
614 \r
615         * Convert.cs (ToDouble): Fixed ToDouble (byte value).\r
616 \r
617 Mon Jun 3 12:18:18 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
618 \r
619         * Type.cs: fixed GetTypeCode.\r
620 \r
621 2002-06-02  Duncan Mak  <duncan@ximian.com>\r
622 \r
623         * Convert.cs (ToInt16): use Convert.ToInt16 (int) instead of a direct\r
624         cast from an int so that we throw OverFlowException correctly.\r
625         \r
626         (ToInt64): Use a new 64bit version of ConvertToBase.\r
627         \r
628         (ConvertToBase): Add checks for overflow (checks Int32.MinValue\r
629         and Int32.MaxValue).\r
630 \r
631         (ConvertFromBase64): New 64-bit version of ConvertFromBase.\r
632 \r
633 2002-06-02  Nick Drochak  <ndrochak@gol.com>\r
634 \r
635         * Convert.cs (ToSByte): Check for special value.\r
636         * Single.cs (Parse): \r
637         * UInt16.cs (Parse):\r
638         * UInt32.cs (Parse): Throw OverflowException if negative\r
639 \r
640 2002-06-02  Duncan Mak  <duncan@ximian.com>\r
641 \r
642         * Convert.cs (DBNull): Point it to DBNull.Value.\r
643         (IsDBNull): Instead of checking typecodes, just check to see if\r
644         it's the same as the DBNull field.\r
645 \r
646 2002-06-02  Nick Drochak  <ndrochak@gol.com>\r
647 \r
648         * Convert.cs (ConvertFromBase): Detect bad digits correctly.\r
649 \r
650 2002-06-02  Duncan Mak  <duncan@ximian.com>\r
651 \r
652         * Char.cs (Parse): Simplify the Exception handling.\r
653 \r
654         * Convert.cs (ToDecimal): Remove call to Math.Round () when\r
655         converting from a float.\r
656 \r
657 2002-05-30  Martin Baulig  <martin@gnome.org>\r
658 \r
659         * MonoType.cs (GetInterface): Implemented.\r
660 \r
661 Thu May 23 17:17:28 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
662 \r
663         * Activator.cs: implemented CreateInstance ().\r
664 \r
665 2002-05-22  Duncan Mak  <duncan@ximian.com>\r
666 \r
667         * Convert.cs (ConvertToBase): Added new 64bit version.\r
668         (BuildConvertedString64): New 64bit version of\r
669         BuildConvertedString.\r
670 \r
671         This fixes bug 25068.\r
672 \r
673         (ConvertFromBase): Added additional test for checking if the\r
674         digits are valid. Thanks to Miguel for coming up with this test.\r
675 \r
676         This fixes bug 25071.\r
677         \r
678 2002-05-21  Duncan Mak  <duncan@ximian.com>\r
679 \r
680         * Convert.cs (ToType): Rearranged to fit the new layout of\r
681         conversionTable.\r
682 \r
683         (conversionTable): Rearranged to fit the layout of the\r
684         System.TypeCode enum.\r
685 \r
686         This should fix bug 25075.\r
687         \r
688 2002-05-21  Duncan Mak  <duncan@ximian.com>\r
689 \r
690         * Convert.cs (ToString): Fixed the ToString methods. Previously I had\r
691         mixed up the two code paths, one for converting to a specific base\r
692         (this case), another from converting from a foreign base to base10\r
693         (used by ToInt16|32|64 (string, int)). This fixes bug 25068.\r
694 \r
695         * Convert.cs (ToByte)\r
696         (ToSByte): Fixed bug 25074. Added more bits to ConvertFromBase so\r
697         that we won't confuse FormatException with OverflowException.\r
698 \r
699 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>\r
700 \r
701         * Environment.cs: CommandLine missed spaces between arguments.\r
702         Implemented StackTrace. Returning MachineName in UserDomainName\r
703         instead of null.\r
704         \r
705 Tue May 21 17:25:49 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
706 \r
707         * MonoCustomAttrs.cs: handle inherit argument.\r
708 \r
709 2002-05-21  Nick Drochak  <ndrochak@gol.com>\r
710 \r
711         * Math.cs (Pow): Change icall method name and insert parameter\r
712         checks in for infinities and NaN.\r
713 \r
714 2002-05-13  Miguel de Icaza  <miguel@ximian.com>\r
715 \r
716         * Double.cs (Parse): Reimplement by cleaning up the string first,\r
717         and then passing to strtof in the mono runtime.\r
718 \r
719         * Single.cs (Parse): Use the Double implementation and cast to\r
720         float. \r
721 \r
722 2002-05-21  Nick Drochak  <ndrochak@gol.com>\r
723 \r
724         * Math.cs \r
725                 (Ceiling): Check for "special" values\r
726                 (Floor): Check for "special" values\r
727                 (Round): Fix off-by-one error on decimal shifting\r
728 \r
729 2002-05-20  Lawrence Pit  <loz@cable.a2000.nl>\r
730 \r
731         * DateTime.cs: ToString () using "G" format specifier \r
732 \r
733 2002-05-19  Martin Baulig  <martin@gnome.org>\r
734 \r
735         * Convert.cs (FromBase64CharArray): Do correct exception handling.\r
736 \r
737 2002-05-19  Martin Baulig  <martin@gnome.org>\r
738 \r
739         * Convert.cs (FromBase64CharArray): Convert the char array using\r
740         System.Text.UTF8Encoding, not UnicodeEncoding (which is UTF-16) to\r
741         a byte array.\r
742 \r
743 2002-05-17  Miguel de Icaza  <miguel@ximian.com>\r
744 \r
745         * MonoType.cs: Style changes.\r
746 \r
747         * Type.cs: Style changes.\r
748 \r
749 2002-05-16  Piers Haken <piersh@friksit.com\r
750 \r
751         * UInt64.cs: fix declaration of IConvertible.To* overrides.\r
752 \r
753 2002-05-16  Nick Drochak  <ndrochak@gol.com>\r
754 \r
755         * BitConverter.cs (ToString): Add parameter check for invalid start \r
756         index.\r
757 \r
758         * Console.cs: Use AutoFlush on the StreamWriter for stdin and stdout\r
759         now that StreamWriter uses buffering\r
760 \r
761 2002-05-14  Miguel de Icaza  <miguel@ximian.com>\r
762 \r
763         * Double.cs: Oops.  Also handle exponents without finding a dot.\r
764 \r
765 2002-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
766 \r
767         * ChangeLog: removed empty entry at the top of the file.\r
768 \r
769         * Int32.cs: made static functions used by Parse internal.\r
770 \r
771         * Int64.cs:\r
772         * UInt32.cs:\r
773         * UInt64.cs: removed static fucntions used by Parse and use the ones\r
774         in Int32.cs\r
775 \r
776 2002-05-12  Daniel Morgan <danmorg@sc.rr.com>\r
777 \r
778         * IServiceProvider.cs: added using System\r
779 \r
780 2002-05-09  Daniel Morgan <danmorg@sc.rr.com>\r
781 \r
782         * Single.cs: copied ToString() and Parse() methods from \r
783         Double to Single and modified a tiny bit for Single.  \r
784         There is still a FIXME for Double and Single about\r
785         passing the format and provider info to the icall too.\r
786 \r
787 2002-05-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
788 \r
789         * Int32.cs:\r
790         * Int64.cs:\r
791         * UInt32.cs:\r
792         * UInt64.cs (Parse): don't use Char.IsNumber to test for hex digits.\r
793         Don't use a delegate to test for valid digits.\r
794 \r
795 2002-05-01  Duncan Mak  <duncan@ximian.com>\r
796 \r
797         * Convert.cs: \r
798         * Math.cs: Added missing CLSCompliant attributes where necessary.\r
799         \r
800 2002-04-30  Duncan Mak  <duncan@ximian.com>\r
801 \r
802         * ArgumentException.cs (Message): \r
803         * ArgumentOutOfRangeException.cs (Message): Added.\r
804 \r
805 2002-04-30  Nick Drochak  <ndrochak@gol.com>\r
806 \r
807         * MonoType.cs: Remove unused variable and eliminate a compiler warning.\r
808 \r
809 Mon Apr 29 15:32:02 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
810 \r
811         * Environment.cs: support for Exit(), CommandLine, CommandLineArgs ().\r
812 \r
813 2002-04-28  Duncan Mak  <duncan@ximian.com>\r
814 \r
815         * DivideByZeroException.cs: Added missing serialization constructor.\r
816 \r
817         * UnauthorizedAccessException.cs: Added the missing Serializable attribute.\r
818 \r
819 2002-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
820 \r
821         * Math.cs: fix Floor () and Round (). Closes #23960.\r
822 \r
823 2002-04-27  Nick Drochak  <ndrochak@gol.com>\r
824 \r
825         * Array.cs (IList.Contains): Should throw a RankException if this is \r
826         called on a Rank > 1 array. Not in the docs, but this is what the \r
827         MS.NET does.\r
828 \r
829 2002-04-26  Duncan Mak  <duncan@ximian.com>\r
830 \r
831         * MissingMemberException.cs: Made the message variable 'protected'\r
832         instead of 'private', so that we can see it in\r
833         MissingMethodException and MissingFieldException.\r
834 \r
835         * MissingFieldException.cs:\r
836         * MissingMethodException.cs: Added missing (string, string)\r
837         constructor, and also the Message property.\r
838 \r
839 2002-04-26  Martin Baulig  <martin@gnome.org>\r
840 \r
841         * Enum.cs: Implemented the IConvertible methods.\r
842 \r
843 2002-04-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
844 \r
845         * SByte.cs: little change in Parse (string) to avoid incorrect\r
846         OverflowException thrown (reported by nickd).\r
847 \r
848 2002-04-22  Miguel de Icaza  <miguel@ximian.com>\r
849 \r
850         * ValueType.cs: Add Serializable attribute.\r
851 \r
852         * String.cs: ifdef-out out the __arglist Concat function until I\r
853         add support for that to mcs.\r
854 \r
855 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>\r
856 \r
857         * AppDomain.cs (GetValue): usage of the correct icall (bug)\r
858 \r
859 Wed Apr 24 21:15:44 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
860 \r
861         * GC.cs: implement most of the methods as icalls.\r
862 \r
863 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
864 \r
865         * DecimalFormatter.cs (ToString): return correct value when the\r
866         decimal number is 0.\r
867 \r
868 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>\r
869         \r
870         * Type.cs (GetProperty): fixed call syntax (needs an empty array not null)\r
871         * MonoType.cs (GetPropertyImpl) : basic implementation (ignores types, bindingAttr, modifiers)\r
872 \r
873 2002-04-24  Nick Drochak  <ndrochak@gol.com>\r
874 \r
875         * Double.cs (Parse): Handle case where there are no digits before the \r
876         decimal point, such as ".1".\r
877 \r
878 2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
879 \r
880         * Int32.cs:\r
881         * UInt32.cs:\r
882         * Int64.cs:\r
883         * UInt64.cs: fixed bug #23738 (hex numbers parsed wrong).\r
884 \r
885 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>\r
886 \r
887         * String.cs (Split): fixed invalid split of count 0 and 1.\r
888         \r
889 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>\r
890         \r
891         * String.cs (LastIndexOf): fixed argument checking.\r
892         * String.cs (Equals): made internal for performace.\r
893 \r
894 2002-04-23  Nick Drochak  <ndrochak@gol.com>\r
895 \r
896         * String.cs (Join): check argument and throw exception if needed\r
897 \r
898 2002-04-23  Nick Drochak  <ndrochak@gol.com>\r
899 \r
900         * String.cs (StartsWith): check argument and throw exception if needed\r
901 \r
902 2002-04-22  Nick Drochak  <ndrochak@gol.com>\r
903 \r
904         * String.cs (IndexOfAny): check arguments and throw exceptions as\r
905         neccessary.  ALso remove some debug WriteLines.\r
906 \r
907 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>\r
908 \r
909         * String.cs: use internal constructors\r
910         buf fix in Concat.\r
911 \r
912 Thu Apr 18 17:16:15 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
913 \r
914         * MonoType.cs: make GetElementType its own icall.\r
915 \r
916 2002-04-18  Nick Drochak <ndrochak@gol.com>\r
917 \r
918         * String.cs: Modified file. Re-add methods needed by the unit tests.\r
919 \r
920 Thu Apr 18 12:38:32 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
921 \r
922         * String.cs: some code speedups and restored GetTypeCode().\r
923 \r
924 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>\r
925 \r
926         * String.cs: New implementation using internal calls.\r
927         \r
928 2002-04-16  Nick Drochak  <ndrochak@gol.com>\r
929 \r
930         * DecimalFormatter.cs: Trim off excess null characters from the string\r
931         that decimal2string gives back.\r
932 \r
933 2002-04-16  Nick Drochak  <ndrochak@gol.com>\r
934 \r
935         * String.cs (SubString): revert my change.  I can't reproduce the\r
936         problem anymore.\r
937 \r
938 2002-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
939 \r
940         * Attribute.cs: added GetHashCode and Equals.\r
941 \r
942 2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
943 \r
944         * Enum.cs: little improvements to Format ().\r
945 \r
946 Thu Apr 11 12:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
947 \r
948         * String.cs: internalcall GetHashCode().\r
949         * Array.cS: optimize access to elements.\r
950 \r
951 Wed Apr 10 21:20:19 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
952 \r
953         * String.cs: make IndexOfAny() use an internalcall.\r
954 \r
955 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
956 \r
957         * Int32.cs:\r
958         * UInt32.cs:\r
959         * Int64.cs: \r
960         * UInt64.cs: fixed error when testing for validity of flags.\r
961 \r
962 2002-04-11  Nick Drochak  <ndrochak@gol.com>\r
963 \r
964         * Double.cs: Use an internal call for ToString(). This is just a simple\r
965         implementation to get away from throwing a NotImplementedException.\r
966 \r
967 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
968 \r
969         * Int32.cs:\r
970         * UInt32.cs:\r
971         * Int64.cs: \r
972         * UInt64.cs: changed Type.GetType () by typeof (), as suggested by\r
973         lupus.\r
974 \r
975         * Int32.cs:\r
976         * Int64.cs: throw an OverFlowException when parsing a string \r
977         containing a dot followed by any non '0' number.\r
978 \r
979 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
980 \r
981         * Byte.cs:\r
982         * UInt16.cs:\r
983         * UInt32.cs:\r
984         * UInt64.cs: added complex Parse ().\r
985 \r
986 2002-04-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
987 \r
988         * SByte.cs:\r
989         * Int16.cs:\r
990         * Int32.cs:\r
991         * Int64.cs: added complex Parse ().\r
992 \r
993 2002-04-09  Nick Drochak  <ndrochak@gol.com>\r
994 \r
995         * Array.cs (BinarySearch): Add checks on paramters before using them\r
996         and throw exceptions as needed.\r
997 \r
998         * Enum.cs (Format): Check if [Flags] is applied to enum and convert\r
999         "G" format to "F" if so.\r
1000 \r
1001 Tue Apr 9 13:12:09 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
1002 \r
1003         * MonoCustomAttrs.cs: return arrays of type Attribute[]\r
1004         instead of object[].\r
1005 \r
1006 2002/04/09  Nick Drochak <ndrochak@gol.com>\r
1007 \r
1008         * String.cs (Substring): Copy only non-null characters to the new\r
1009         string.\r
1010 \r
1011 2002-04-09  Nick Drochak  <ndrochak@gol.com>\r
1012 \r
1013         * IntegerFormatter.cs: Don't use a format character to indicate a\r
1014         custom format was passed in. It was using 'z' to indicate a custom\r
1015         format, but really it should throw a format exception if the user\r
1016         tries to use "z" as the format string. Now it does.\r
1017 \r
1018         * Activator.cs: New File.\r
1019 \r
1020 2002-04-08  Nick Drochak  <ndrochak@gol.com>\r
1021 \r
1022         * Enum.cs (ToString): Big ugly fix for the case where [Flags] is\r
1023         applied to an enum. Need to handle the different possible integer\r
1024         types of an enum somehow.  Can anyone say generics?\r
1025 \r
1026 Mon Apr  8 06:22:42  2002 Piers Haken <piersh@friskit.com>\r
1027 \r
1028         * Convert.cs: switched the To*(object) methods to use\r
1029         IConvertible directly instead of calling ChangeType\r
1030 \r
1031 Sat Apr 6 20:08:41 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
1032 \r
1033         * ValueType.cs: make Equals() an internalcall.\r
1034 \r
1035 Fri Apr 5 15:38:54 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
1036 \r
1037         * Type.cs: also look for nested types in FindMembers.\r
1038         * MonoType.cs: make GetNestedTypes() an internalcall.\r
1039 \r
1040 2002-04-05  Nick Drochak  <ndrochak@gol.com>\r
1041 \r
1042         * Enum.cs (Parse): Handle different underlying types.\r
1043 \r
1044 2002/04/04 Nick Drochak <ndrochak@gol.com>\r
1045 \r
1046         * Enum.cs (IsDefined): Throw exception when type of value to look for\r
1047         is not the correct one.  Attempt to have it work with string values\r
1048         too, but not sure if the unit tests are getting that far yet.\r
1049 \r
1050 2002-04-04  Nick Drochak  <ndrochak@gol.com>\r
1051 \r
1052         * Decimal.cs: Fix a couple of typos.\r
1053 \r
1054 Wed Apr 3 19:46:00 CEST 2002 Paolo Molaro <lupus@ximian.com>\r
1055 \r
1056         * Enum.cs: the values array is of the enum and not of the underlying\r
1057         type. Updates and some bug fixes.\r
1058         * MonoType.cs: make the internalcall return FullName instead of the\r
1059         assembly qualified name.\r
1060         * Type.cs: make ToString () simply return FullName.\r
1061 \r
1062 2002-04-03  Nick Drochak  <ndrochak@gol.com>\r
1063 \r
1064         * Type.cs (GetTypeCode): provide some of the implementation for this\r
1065         method.  It's still too simplistic to be considered complete.\r
1066 \r
1067 2002-04-02  Dietmar Maurer  <dietmar@ximian.com>\r
1068 \r
1069         * Object.cs: fixed FieldGetter/FieldSetter signature\r
1070 \r
1071 2002-04-02  Nick Drochak  <ndrochak@gol.com>\r
1072 \r
1073         * Environment.cs: add MonoTODO's on parts that should have it.\r
1074 \r
1075 2002-04-01  Nick Drochak  <ndrochak@gol.com>\r
1076 \r
1077         * Enum.cs: added reality checks (check parameters to most methods that\r
1078         need them).\r
1079 \r
1080 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>\r
1081 \r
1082         * Object.cs: added FieldGetter/FieldSetter\r
1083 \r
1084 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
1085 \r
1086         * IntegerFormatter.cs: fixed initialization error in static\r
1087         constructor.\r
1088 \r
1089 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>\r
1090 \r
1091         * Delegate.cs: added new field to store a trampoline function\r
1092 \r
1093 2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>\r
1094 \r
1095         * IntegerFormatter.cs: added workaround for bug #22668. First patch to\r
1096         make custom format strings work (not fully functional yet).\r
1097 \r
1098 2002/03/28  Nick Drochak <ndrochak@gol.com>\r
1099 \r
1100         * IntegerFormatter.cs: Change class from internal to public.  Add\r
1101         necessary [CLSCompliant(false)] attributes.\r
1102 \r
1103 2002-03-27  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1104         * _AppDomain.cs, AppDomain.cs: renamed method GetDate to GetData\r
1105         (was a typo)\r
1106 \r
1107 2002-03-28  Nick Drochak  <ndrochak@gol.com>\r
1108 \r
1109         * Type.cs: Added MonoTODO tags on members that have FIXME, etc.\r
1110 \r
1111 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>\r
1112 \r
1113         * Console.cs: Modified to get std handles from MonoIO.\r
1114         * Environment.cs: removed PAL dependencies.\r
1115 \r
1116 2002-03-25  Miguel de Icaza  <miguel@ximian.com>\r
1117 \r
1118         * String.cs (System): Removed internal enumeration, because\r
1119         bootstrapping the corlib at this point does not support\r
1120         enumerations. \r
1121 \r
1122         * IntPtr.cs: Temporary work-around until I fix the assembly\r
1123         attributes bug.\r
1124 \r
1125 2002-03-24  Martin Baulig  <martin@gnome.org>\r
1126 \r
1127         * Enum.cs (GetValues): According to the docu this is sorted after\r
1128         values, not names.\r
1129 \r
1130         * String.cs (System): Removed enumeration, because it is pretty\r
1131         hard to support enumerations in /nostdlib mode for the core types.\r
1132 \r
1133 Tue Mar 19 18:18:49 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1134 \r
1135         * Array.cs: move error handling in the catch block.\r
1136         * MulticastDelegate.cs: remove == and != operators that were\r
1137         removed with the delegate changes (when you add stuff, please do not\r
1138         remove existing functionality!).\r
1139         * Type.cs: if a property is not found in a type, search for it\r
1140         in the parent types, too.\r
1141 \r
1142 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>\r
1143         \r
1144         * Math.cs: changed to use icall instead of PAL.\r
1145 \r
1146 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>\r
1147 \r
1148         * Double.cs: added check for NaN (Bug [22082])\r
1149 \r
1150 2002-03-19  Nick Drochak  <ndrochak@gol.com>\r
1151 \r
1152         * Enum.cs (Equals): check for null and throw if it is.\r
1153         * Enum.cs (Format): check for null parameters and throw if necessary.\r
1154         This method still needs more argument checking.\r
1155 \r
1156 2002-03-18  Dietmar Maurer  <dietmar@ximian.com>\r
1157 \r
1158         * Enum.cs (Equals): check if Enums are of the same type\r
1159 \r
1160 2002-03-18  Nick Drochak  <ndrochak@gol.com>\r
1161 \r
1162         * Double.cs: Explicitly handle comparisons in CompareTo() for\r
1163         Positive/Negative Infinity and NaN. Unit Test now passes on Linux.\r
1164 \r
1165         * Enum.cs(CompareTo): Check types of values before trying to compare.\r
1166         Throw exceptions if types are invalid or don't match.\r
1167 \r
1168 2002-03-14  Miguel de Icaza  <miguel@ximian.com>\r
1169 \r
1170         * Array.cs: Add some extra debugging information.\r
1171 \r
1172 2002-03-15  Nick Drochak  <ndrochak@gol.com>\r
1173 \r
1174         * Array.cs: Added IList and IEnumerable. \r
1175 \r
1176 2002-03-14  Miguel de Icaza  <miguel@ximian.com>\r
1177 \r
1178         * UInt64.cs, UInt32.cs, UInt16.cs: Mark public parse methods as\r
1179         NonCLSCompliant. \r
1180 \r
1181 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>\r
1182 \r
1183         * Delegate.cs (Equals): also compare method_ptr \r
1184         (GetHashCode): returm method_ptr as hash\r
1185 \r
1186 2002-03-13  Duco Fijma  <duco@lorentz.xs4all.n>\r
1187         * TimeSpan.cs: removed the use of Custom Numeric Format Strings,\r
1188         such as 42.ToString("0000000"), as these are (currently) not implemented\r
1189         in System.IntegerFormatter. TimeSpan luckely can do with Standard\r
1190         Numeric Format Strings, such as 42.ToString("D7").\r
1191 \r
1192 2002-03-12  Duncan Mak  <duncan@ximian.com>\r
1193 \r
1194         * FieldAccessException.cs: \r
1195         * MethodAccessException.cs: \r
1196         * PlatformNotSupportedException.cs: Inherit from\r
1197         MemberAccessException, not SystemException.\r
1198 \r
1199         * ObsoleteAttribute.cs: Made Message and IsError properties\r
1200         instead of fields.\r
1201 \r
1202 Tue Mar 12 19:21:18 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1203 \r
1204         * GC.cs: make SuppressFinalize() a nop.\r
1205         * Delegate.cs: fix == operator.\r
1206 \r
1207 2002-03-13  Nick Drochak  <ndrochak@gol.com>\r
1208 \r
1209         * Enum.cs: Add IConvertible methods. Cyclic dependancy fixed in the\r
1210         runtime that goes with this patch.\r
1211 \r
1212 2002-03-10  Martin Baulig  <martin@gnome.org>\r
1213 \r
1214         * Int32.cs (Parse): Correctly parse negative numbers.\r
1215 \r
1216 2002-03-08  Martin Baulig  <martin@gnome.org>\r
1217 \r
1218         * String.cs (Split): Really fix it this time. Also adding several new\r
1219         testcase to the testsuite.       \r
1220 \r
1221 2002-03-08  Martin Baulig  <martin@gnome.org>\r
1222 \r
1223         * Array.cs (Copy): Optimized: removed duplicate null check, removed\r
1224         two duplicate GetLowerBound() calls and one duplicate IsValueType.\r
1225 \r
1226 Fri Mar 8 18:49:19 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1227 \r
1228         * Object.cs: commit my hacked GetHashCode(): it's good enough for now.\r
1229         * String.cs: use the dumb code for IndexOf(string): this is worth\r
1230         15-20 % speedup in mcs compile with mint.\r
1231 \r
1232 Fri Mar 8 12:45:44 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1233 \r
1234         * String.cs: revert change to Split() that broke the compiler (hi martin!:-).\r
1235 \r
1236 2002-03-07  Martin Baulig  <martin@gnome.org>\r
1237 \r
1238         * String.cs (Join): Throw an ArgumentNullException.\r
1239         (LastIndexOf (string,int,int)): This method does a backwards search,\r
1240         so startIndex points to the end of value, not to its beginning. Don't\r
1241         throw an exception if startIndex equals this.Length. Always return -1\r
1242         if startIndex is smaller than the length of value.\r
1243         (Replace (string,string)): Replace all occurences of oldValue.\r
1244         If newValue is null, all occurences of oldValue are to be removed.\r
1245         (Split (char[],int)): Return an empty array if maxCount is zero, throw\r
1246         an ArgumentOutOfRangeException if it's less than zero. Return maxValue\r
1247         elements, not maxValue+1.\r
1248 \r
1249 Thu Mar 7 17:16:06 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1250 \r
1251         * MonoType.cs: make GetEvents() an internal call.\r
1252         * MulticastDelegate.cs: copy the passed in array.\r
1253 \r
1254 2002-03-06  Martin Baulig  <martin@gnome.org>\r
1255 \r
1256         * Array.cs (Copy): Use FastCopy when appropriate and do correct\r
1257         exception handling.\r
1258 \r
1259 2002-03-06  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1260         * CharEnumerator.cs: fixes to CharEnumertor.MoveNext, fixing \r
1261         some of the failures found be new tests (see ChangeLog in \r
1262         Test/System). Comments added to this method, based on\r
1263         the representation invariant of this class, that (try to) explain\r
1264         why it now should be correct.\r
1265 \r
1266 2002-03-06  Dietmar Maurer  <dietmar@ximian.com>\r
1267 \r
1268         * Int64.cs (Parse): bug fix for max. negative value. \r
1269 \r
1270 2002-03-07  Nick Drochak  <ndrochak@gol.com>\r
1271 \r
1272         * RuntimeTypeHandle.cs: Add Serializable attribute as the docs say.\r
1273         I need to understand what the difference between the attribute and\r
1274         the interface is.\r
1275 \r
1276 2002-03-06  Martin Baulig  <martin@gnome.org>\r
1277 \r
1278         * Array.cs (Copy): Always throw an ArrayTypeMismatchException, not\r
1279         an InvalidCastException if the widening conversion failed. See\r
1280         testcases #M94-#M96.\r
1281 \r
1282         * Array.cs (CopyTo): Bug fix from Ajay Dwivedi, correctly handle\r
1283         arrays with non-zero lower bounds. Also adding testcases #F10-#F13\r
1284         for this.\r
1285 \r
1286         * Array.cs (CopyTo): Reverted my last change, it was incorrect.\r
1287         (Copy): Actually allow copying multi-dimensional arrays.\r
1288 \r
1289 2002-03-05  Duncan Mak  <duncan@ximian.com>\r
1290 \r
1291         * Convert.cs:\r
1292         (DBNull) Added the missing field.\r
1293         (IsDBNull) Fixed typo.\r
1294         (ToByte (string, int)) Implemented.\r
1295         (ToString (byte, int)) Implemented.\r
1296         (ConvertToBase)\r
1297         (BuildConvertedString) internal functions used for converting values to\r
1298         a specific base.\r
1299 \r
1300         * Int16.cs: \r
1301         * Int32.cs:\r
1302         * Int64.cs:\r
1303         * Single.cs:\r
1304         * UInt16.cs: \r
1305         * UInt32.cs: Implemented the IConvertible interface.    \r
1306 \r
1307         * CharEnumerator.cs: Renamed to variables to be clearer and\r
1308         changed some of the tests to conform to the 1.0 spec.\r
1309 \r
1310 2002-03-06  Martin Baulig  <martin@gnome.org>\r
1311 \r
1312         * Array.cs (Copy): Calculate absolute array position here and use\r
1313         GetValueImpl() and SetValueImpl() with that position. We can now\r
1314         copy multi-dimensional arrays.\r
1315         (CopyTo): Small bug fix.\r
1316 \r
1317 2002-03-05  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1318 \r
1319         * Version.cs: CompareTo changed according the LAMESPEC discovered by \r
1320         Nick (See VersionTest.cs).\r
1321         * CharEnumerator.cs: fixed two bugs in MoveNext. It had an off-by-one\r
1322         error comparing the current position (idx) against the length of the\r
1323         string iterated and it set idx to an unrecognized special value (-2)\r
1324 \r
1325 Tue Mar 5 17:34:14 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1326 \r
1327         * SByte.cs, UInt64.cs: implement IConvertible interface. Nobody wants\r
1328         to do this dirty work, but someone has to do it (and I need it to pass\r
1329         the "200 sample tests compiled on linux" mark).\r
1330 \r
1331 2002-03-06  Nick Drochak  <ndrochak@gol.com>\r
1332 \r
1333         * Attribute.cs\r
1334         * DecimalFormatter.cs\r
1335         * Delegate.cs\r
1336         * Double.cs\r
1337         * GC.cs\r
1338         * Int16.cs\r
1339         * Int32.cs\r
1340         * MonoType.cs\r
1341         * RuntimeMethodHandle.cs\r
1342         * RuntimeTypeHandle.cs\r
1343         * String.cs\r
1344         * Type.cs:\r
1345                 Add [MonoTODO]'s to places where we currently throw a\r
1346                 NotImplementedException.\r
1347 \r
1348 2002-03-05  Dietmar Maurer  <dietmar@ximian.com>\r
1349 \r
1350         * Int16.cs (Parse): do not overflow on max negative value\r
1351 \r
1352         * Int32.cs (Parse): do not overflow on max negative value\r
1353 \r
1354 Mon Mar 4 20:36:05 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1355 \r
1356         * Type.cs: fixed IsClass.\r
1357         * MonoType.cs: fixed MemberType, IsPrimitiveImpl, IsPointerImpl,\r
1358         IsByRefImpl. Added GetInterfaces().\r
1359         * IServiceProvider.cs: compilation fix.\r
1360 \r
1361 Mon Mar 4 18:37:03 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1362 \r
1363         * Array.cs: allow copying an empty array to an empty array.\r
1364 \r
1365 Mon Mar 4 17:59:16 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1366 \r
1367         * String.cs: fixed LastIndexOf (string) to do a bit of argument\r
1368         checking.\r
1369 \r
1370 2002-03-04  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1371         * Version.cs: many fixes to failures found by the newly created\r
1372         test cases for this class. Specifically, the CompareTo member\r
1373         returned wrong values due to the use of Int32.MaxValue as a special\r
1374         value indicating an "undefined" version component. Also implemented the\r
1375         missing operators (==, <, >, etc.), one missing constructor and\r
1376         and some exception throwing.\r
1377 \r
1378 2002-03-04  Nick Drochak  <ndrochak@gol.com>\r
1379 \r
1380         * IServiceProvider.cs: Add missing attribute: ComVisible(false)\r
1381         * Attribute.cs: Add missing attributes: Serializable and\r
1382         AttributeUsage(AttributeTargets.All)\r
1383 \r
1384 Mon Mar 4 11:26:49 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1385 \r
1386         * MonoType.cs: implemented GetConstructors(), GetFields(),\r
1387         GetMethods(), GetProperties().\r
1388         * Object.cs: added debugging icall obj_address().\r
1389         * Type.cs: fixed the binding flags for some Get* methods.\r
1390         Implemented FindMembers() as calls to the specific GetMember\r
1391         methods.\r
1392 \r
1393 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1394         * BitConverter.cs: fixed one little bug: ToString(s, n, 0) \r
1395         should give an exception for n>=s.Length.\r
1396 \r
1397 2002-03-01  Martin Baulig  <martin@gnome.org>\r
1398 \r
1399         * Array.cs: More argument checking and bug fixing.\r
1400 \r
1401 2002-03-01  Miguel de Icaza  <miguel@ximian.com>\r
1402 \r
1403         * BitConverter.cs: Indentation match\r
1404 \r
1405         * AppDomain.cs: Added MonoTODOs to this too.\r
1406 \r
1407         * Buffer.cs: Added MonoTODOs to this.\r
1408 \r
1409 2002-03-01  Martin Baulig  <martin@gnome.org>\r
1410 \r
1411         * Array.cs: Added argument checking to all methods where it was missing.\r
1412 \r
1413 2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1414 \r
1415         * BitConverter.cs: Fixed bugs in ToString methods\r
1416 \r
1417 Fri Mar 1 15:20:00 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1418 \r
1419         * MulticastDelegate.cs: implement operators so mcs3 can be used on linux.\r
1420 \r
1421 2002-03-01  Nick Drochak  <ndrochak@gol.com>\r
1422 \r
1423         * BitConverter.cs: Throw ArgumentException like mscorlib, instead of\r
1424         ArgumentOutOfRangeException like the docs say.\r
1425 \r
1426 2002-03-01  Martin Baulig  <martin@gnome.org>\r
1427 \r
1428         * Enum.cs (CompareTo): Correctly override this method from IComparable.\r
1429 \r
1430         * Console.cs (setIn, setOut, setError): It's called SetIn, SetOut, SetError.\r
1431 \r
1432 2002-02-28  Martin Baulig  <martin@gnome.org>\r
1433 \r
1434         * String.cs: This file now passes the testsuite on Linux :-)\r
1435         \r
1436         * String.cs (Intern, IsInterned): The interncalls are now called _Intern and _IsInterned;\r
1437         make them private and provide C# wrappers which do proper argument checking.\r
1438 \r
1439         * String.cs (Format): Correctly handle escaped brackets.\r
1440 \r
1441         * String.cs (_CompareChar): New internal function which compares two chars.\r
1442         (_Compare): Provide an internal compare method which can do all sorts of\r
1443         comparision and call it from all the Compare() methods. Also fixed a lot of\r
1444         bugs here, this code now actually passes the testsuite.\r
1445 \r
1446 2002-02-28  Duncan Mak  <duncan@ximian.com>\r
1447 \r
1448         * Convert.cs: Added the missing methods. The new class status page\r
1449         kicks ass, it even found my typos! Woohoo!\r
1450         (ConvertFromBase): Moved the Exception throwing in here and\r
1451         removed the other occurances so it's all centralized now.\r
1452         (ISDBNull): Implemented.\r
1453         (GetTypeCode): Implemented.\r
1454 \r
1455 2002-02-27  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1456         * Guid.cs: Guid.ToString("") and Guid.ToString(null) is now understood as Guid.ToString("D") \r
1457         just as in mscorlib. There is (probably) a documentation bug in the MS FrameWork SDK, which\r
1458         states that a lacking format should be interpreted as "N".  \r
1459         Also added [Serializable] attribute\r
1460         * TimeSpan.cs: some formatting and added the [Serializable] attribute\r
1461 \r
1462 2002-02-26  Duncan Mak  <duncan@ximian.com>\r
1463 \r
1464         * WeakReference.cs: Committed for Ajay Kumar Dwivedi.   \r
1465 \r
1466 2002-02-26  Martin Baulig  <martin@gnome.org>\r
1467 \r
1468         * TimeZone.cs: Use an internal enum rather than magic numbers to access the\r
1469         fields of the interncall GetTimeZoneData.\r
1470 \r
1471         * DateTime.cs: Implemented Parse and fixed a few bugs.\r
1472 \r
1473         * String.cs (TrimStart): Small fix.\r
1474 \r
1475 2002-02-26  Martin Baulig  <martin@gnome.org>\r
1476 \r
1477         * DateTime.cs: ParseExact is now fully functional.\r
1478 \r
1479         * String.cs (TrimEnd): Small fix.\r
1480 \r
1481 2002-02-26  Duco Fijma <duco@lorentz.xs4all.nl>\r
1482         * TimeSpan.cs: Added method TimeSpan.FromMilliseconds, mysteriously \r
1483         missing for about six months.\r
1484 \r
1485 Tue Feb 26 14:21:19 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1486 \r
1487         * UInt64.cs: fixed Parse method () to handle some of the NumberStyle flags.\r
1488 \r
1489 2002-02-26  Martin Baulig  <martin@gnome.org>\r
1490 \r
1491         * DateTime.cs: Miguel already committed this, but there was still a\r
1492         ChangeLog entry for this missing ....\r
1493         We're now reusing functionality from TimeSpan, printing dates is\r
1494         fully implemented, currently working on parsing.\r
1495 \r
1496         * TimeZone.cs: Fully implemented this. There's a new InternCall in the\r
1497         runtime for this.\r
1498 \r
1499 Fri Feb 22 18:47:08 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1500 \r
1501         * MonoType.cs: disable constructor.\r
1502         * Object.cs: make GetType() an internalcall.\r
1503         * Type.cs: added correct bindingflags to GetMethods ().\r
1504         All such calls should be reviewed to use the correct flags.\r
1505 \r
1506 Thu Feb 21 19:23:46 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1507 \r
1508         * Type.cs, MonoType.cs: type_is_subtype_of () changed to include extra\r
1509         argument.\r
1510 \r
1511 Thu Feb 21 16:56:51 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1512 \r
1513         * Type.cs: implemented IsAssignableFrom.\r
1514 \r
1515 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>\r
1516         * Guid.cs: fixed Guid.Guid(string) ctor. Changed format:\r
1517         "{0xdddddddd,0xdddd,0xdddd,{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},{0xdd}}" \r
1518         to "{0xdddddddd,0xdddd,0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}}" \r
1519         The former is documented by Microsoft. The latter is how they\r
1520         actually implemented it in mscorlib:-)\r
1521 \r
1522 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1523 \r
1524         * MonoCustomAttrs.cs: hooks to get the custom attributes from the\r
1525         runtime.\r
1526         * MonoType.cs: Implemented custom attributes methods.\r
1527 \r
1528 \r
1529 2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>\r
1530         * Guid.cs: \r
1531 \r
1532 Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1533 \r
1534         * MonoCustomAttrs.cs: hooks to get the custom attributes from the\r
1535         runtime.\r
1536         * MonoType.cs: Implemented custom attributes methods.\r
1537 \r
1538 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>\r
1539 \r
1540         * Array.cs (CopyTo): use GetLength() instead of GetUpperBound() \r
1541 \r
1542 2002-02-19  Duncan Mak  <duncan@ximian.com>\r
1543 \r
1544         * Convert.cs: Finished up the missing methods in Convert. Added a\r
1545         new private method ConvertFromBase.\r
1546 \r
1547 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>\r
1548 \r
1549         * String.cs: impl. IConvertible interface\r
1550 \r
1551 2002-02-18  Duco Fijma <duco@lorentz.xs4all.nl>\r
1552         * Guid.cs: actual implementation for Guid.Guid(string) Ctor\r
1553 \r
1554 2002-02-18  Duncan Mak  <duncan@ximian.com>\r
1555 \r
1556         * Convert.cs: Changed from using Type.GetType (string) to just\r
1557         typeof (). Probably will speed things up a bit?         \r
1558 \r
1559 2002-02-18  Ajay Kumar Dwivedi <AjayKumar.Dwivedi@dresdner-bank.com>\r
1560 \r
1561         * Array.cs:         \r
1562         1. Fix for GetUpperBound to return correct values\r
1563         2. made some Properties virtual\r
1564         3. Adds IsFixedSize and IsReadOnly properties.\r
1565         4. changes CreateInstance(Type,int[],int[]) to throw Exception\r
1566         when third arg is null. InternalCall CreateInstance changed to  \r
1567         CreateInstanceImpl\r
1568         5. Fixed array.GetUpperBound at a couple of places\r
1569         6. IndexOf and LastIndexOf now use Object.Equals instead of "=="\r
1570         7. Added two FIXME's in BinarySearch functions.\r
1571 \r
1572 2002-02-17  Duncan Mak  <duncan@ximian.com>\r
1573 \r
1574         * TimeZone.cs:  Applied the rest of Ajay's patch for    \r
1575         IsDaylightSavingTime. Thanks a lot for the nice explanation of how\r
1576         it works!\r
1577 \r
1578 2002-02-17  Duco Fijma  <duco@lorentz.xs4all.nl>\r
1579         * Guid.cs: added stub for Guid(string) ctor\r
1580 \r
1581 2002-02-17  Duncan Mak  <duncan@ximian.com>\r
1582 \r
1583         * Convert.cs: Near-complete implementation of Convert.cs\r
1584 \r
1585         Added all the To* methods taking (object) and\r
1586         (object, IFormatProvider) as parameters.\r
1587 \r
1588         Added [CLSCompliant (false)] attributes to methods dealing with\r
1589         unsigned types.\r
1590 \r
1591         Added the missing section on converting to and from DateTime. Only\r
1592         6 missing methods, all marked with MonoTODOs. Will tackle them later.           \r
1593 \r
1594 2002-02-16  Duncan Mak  <duncan@ximian.com>\r
1595 \r
1596         * TimeZone.cs: patch from Ajay Kumar Dwivedi (adwiv@yahoo.com) to\r
1597         make IsDaylightSavingTime (DateTime) call \r
1598         IsDaylightSavingTime (DateTime, DaylightTime).  \r
1599         \r
1600         Added internal class CurrentTimeZone from Ajay. It needs more work\r
1601         to fill in the appropriate internal calls.\r
1602         \r
1603 Sat Feb 16 12:41:41 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1604 \r
1605         * Type.cs: fix IsClass.\r
1606 \r
1607 Sat Feb 16 12:02:02 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1608 \r
1609         * String.cs: fix Trim().\r
1610 \r
1611 Fri Feb 15 21:02:46 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1612 \r
1613         * String.cs: fix more off by one errors.\r
1614 \r
1615 Thu Feb 14 18:54:09 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1616 \r
1617         * MonoType.cs: fix IsValueTypeImpl.\r
1618         * Type.cs: fix IsEnum. Implement Equals methods.\r
1619 \r
1620 Wed Feb 13 21:50:13 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1621 \r
1622         * Int32.cs: implement IConvertible interface.\r
1623         \r
1624 2002-02-12  Duncan Mak  <duncan@ximian.com>\r
1625 \r
1626         * TimeZone.cs: Implemented and added to CVS.\r
1627 \r
1628 2002-02-11  Duncan Mak  <duncan@ximian.com>\r
1629 \r
1630         * Convert.cs: Implemented the ChangeType () methods.\r
1631 \r
1632 Mon Feb 11 19:48:58 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1633 \r
1634         * Array.cs: make Clone() an internal call.\r
1635 \r
1636 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>\r
1637         * Changed Guid.NewGuid so that it can use both System.Random and \r
1638           System.Security.Cryptography.RandomNumberGenerator\r
1639 \r
1640 2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>\r
1641         * First version of Guid.NewGuid\r
1642 \r
1643 2002-02-08  Duncan Mak  <duncan@ximian.com>\r
1644 \r
1645         * RuntimeArgumentHandle.cs: Added to CVS.\r
1646 \r
1647 Fri Feb 8 19:14:54 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1648 \r
1649         * CrossAppDomainDelegate.cs, AssemblyLoadEventHandler.cs,\r
1650         UnhandledExceptionEventHandler.cs: added delegates.\r
1651 \r
1652 Fri Feb 8 18:06:20 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1653 \r
1654         * MarshalByRefObject.cs: add ToString () method\r
1655         (apparently needed by nunit).\r
1656         * _AppDomain.cs: uncomment ToString(): dietmar fixed the bug triggered\r
1657         by it in the runtime.\r
1658 \r
1659 2002-02-08  Dan Lewis <dihlewis@yahoo.co.uk>\r
1660         \r
1661         * String.cs (Format): implemented\r
1662 \r
1663 2002-02-07  Duncan Mak  <duncan@ximian.com>\r
1664         \r
1665         * DuplicateWaitObjectException:\r
1666         * InvalidCastException:\r
1667         * NotImplementedException:\r
1668         * NotSupportedException:\r
1669         * NullReferenceException:\r
1670         * OutOfMemoryException:\r
1671         * OverflowException:\r
1672         * RankException:\r
1673         * StackOverflowException.cs:\r
1674         * UnauthorizedAccessException: Added missing constructor used for serialization.\r
1675 \r
1676 2002-02-07  Dietmar Maurer  <dietmar@ximian.com>\r
1677 \r
1678         * String.cs (System.Compare): bug fix \r
1679 \r
1680 2002-02-06  Dietmar Maurer  <dietmar@ximian.com>\r
1681 \r
1682         * Enum.cs (Parse,  GetHashCode): impl. \r
1683 \r
1684 2002-02-05  Duncan Mak  <duncan@ximian.com>\r
1685 \r
1686         * DBNull.cs: This is my first crack at the DBNull class. I think I\r
1687         actually got most of the IConvertible methods right, but I haven't\r
1688         done the research to test whether or not this is the correct\r
1689         behavior. IConvertible.ToType () is the most iffy of all, IMHO.\r
1690 \r
1691         * DllNotFoundException.cs: Inherits from TypeLoadException, not SystemException.\r
1692 \r
1693 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>\r
1694 \r
1695         * Enum.cs: added more functionality (GetName, ToObject, Equals)\r
1696 \r
1697 2002-01-31  Duncan Mak  <duncan@ximian.com>\r
1698 \r
1699         * InvalidOperationException.cs:\r
1700         * NotFiniteNumberException.cs:\r
1701         * ObjectDisposedException.cs:\r
1702         * TypeInitializationException.cs: Added missing bits for serialization/\r
1703         \r
1704         * AppDomainUnloadedException.cs:\r
1705         * ApplicationException.cs:\r
1706         * ArgumentOutOfRangeException.cs:\r
1707         * ArithmeticException.cs:\r
1708         * ArrayTypeMismatchException:\r
1709         * BadImageFormatException.cs:\r
1710         * Exception.cs:\r
1711         * MissingMemberException.cs:\r
1712         * TypeLoadException.cs: Added missing bits for serialization.\r
1713 \r
1714 2002-01-30  Duco Fijma <duco@lorentz.xs4all.nl>\r
1715         * Guid.cs: implemented everything but Guid.NewGuid\r
1716 \r
1717 Tue Jan 29 22:32:36 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1718 \r
1719         * _AppDomain.cs: remove ToString() method: it doesn't seem right \r
1720         to have it in this interface and it screws up the method vtable setup.\r
1721 \r
1722 2002-01-28  Andrei Zmievski <andrei@php.net>\r
1723 \r
1724         * Double.cs: implemented IConvertible interface.\r
1725 \r
1726 2002-01-28  Miguel de Icaza  <miguel@ximian.com>\r
1727 \r
1728         * ArgumentException.cs: Implement serialization constructor.\r
1729         (GetObjectData): Implement serializer.\r
1730         \r
1731         * ArgumentNullException.cs: Implement serialization constructor.\r
1732 \r
1733         * Exception.cs: Implement serialization constructor.\r
1734         (GetObjectData): Implement serializer.\r
1735 \r
1736 2002-01-23  Miguel de Icaza  <miguel@ximian.com>\r
1737 \r
1738         * DateTime.cs (UnixEpoch): The Begining of the Unix epoch.\r
1739 \r
1740 2002-01-23  Duncan Mak  <duncan@ximian.com>\r
1741 \r
1742         * EntryPointNotFoundException.cs:\r
1743         * FormatException: Added missing constructor and related bits.\r
1744 \r
1745         * TypeLoadException: Added missing constructor, methods and properties.\r
1746 \r
1747 2002-01-23  Miguel de Icaza  <miguel@ximian.com>\r
1748 \r
1749         * AppDomain.cs (GetAssemblies): Use foreach construct instead of\r
1750         manually getting the enumerator.\r
1751 \r
1752         (AppDomain.AppDomain): Prime the loaded assemblies with the\r
1753         assemblies loaded by the runtime in our behalf.\r
1754 \r
1755         * AppDomainSetup.cs: Remove private keyword, that is the default.\r
1756         Add a new property DisallowPublisherPolicy.\r
1757 \r
1758         * AppDomain.cs (AppDomain.GetAssemblies): Implement.\r
1759 \r
1760 Tue Jan 22 22:51:48 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1761 \r
1762         * MonoType.cs, Type.cs: many updates, corrected implementation,\r
1763         completed stubs.\r
1764 \r
1765 2002-01-20  Andrei Zmievski <andrei@php.net>\r
1766 \r
1767         * Byte.cs:\r
1768         * Char.cs: implemented IConvertible interface.\r
1769 \r
1770         * Boolean.cs: use our own ToString() method directly.\r
1771 \r
1772 2002-01-20  Duncan Mak  <duncan@ximian.com>\r
1773 \r
1774         * Files I commited recently: Fixed indentation style.\r
1775 \r
1776 2002-01-20 Nick Drochak  <ndrochak@gol.com>\r
1777 \r
1778         * SerializableAttribute.cs: this attrib can be used on enums, structs, \r
1779         and delegates too. Added the appropriate usage flags.\r
1780 \r
1781 2002-01-18  Duncan Mak  <duncan@ximian.com>\r
1782 \r
1783         * CharEnumerator.cs: Implemented.\r
1784         * String.cs (System): Fixed the GetEnumerator () method(s).\r
1785 \r
1786         * ObsoleteAttribute.cs:\r
1787         * STAThreadAttribute.cs:\r
1788         * MTAThreadAttribute.cs:\r
1789         * ThreadStaticAttribute.cs:\r
1790         * LoaderOptimizationAttribute.cs:\r
1791         * PlatformNotSupportedException.cs:\r
1792         * LoaderOptimization.cs: Added to CVS.\r
1793 \r
1794 2002-01-18  Duncan Mak  <duncan@ximian.com>\r
1795 \r
1796         * AppDomainUnloadedException.cs:\r
1797         * MethodAccessException.cs:\r
1798         * ContextMarshalException.cs:\r
1799         * CannotUnloadAppDomainException.cs:\r
1800         * DllNotFoundException.cs:\r
1801         * EntryPointNotFoundException.cs:\r
1802         * FieldAccessException.cs:\r
1803         * TypeUnloadedException.cs:\r
1804         * MissingFieldException.cs: Added to CVS.\r
1805 \r
1806         * ApplicationException.cs: \r
1807         * MemberAccessException.cs:\r
1808         * MissingMemberException.cs\r
1809         * MissingMethodException.cs:\r
1810         * SystemException.cs: Added [Serializable] attribute.\r
1811 \r
1812         * Exception.cs: Added [Serializable] attribute, made properties\r
1813         'Message', 'Source' and 'StackTrace' virtual methods, per 1.0\r
1814         spec.\r
1815 \r
1816         * ContextStaticAttribute.cs: Added [Serializable] attribute and\r
1817         put in the missing constructor.\r
1818 \r
1819         * Environment.cs: Commented out references to\r
1820         EnvironmentPermissionAttribute, because they're just stubbed out\r
1821         right now and has no implementation.\r
1822 \r
1823 2002-01-16  Andrei Zmievski <andrei@php.net>\r
1824 \r
1825         * Boolean.cs: implemented IConvertible interface\r
1826 \r
1827 2002-01-15  Nick Drochak  <ndrochak@gol.com>\r
1828 \r
1829         * ResolveEventArgs.cs: class should derive from EventArgs.\r
1830 \r
1831 2002-01-14  Miguel de Icaza  <miguel@ximian.com>\r
1832 \r
1833         * String.cs (System): Use DefaultMemberName for the String class.\r
1834 \r
1835 Mon Jan 14 17:06:40 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1836 \r
1837         * String.cs: use IndexerName in index char accessor.\r
1838 \r
1839 Thu Jan 10 21:05:23 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1840 \r
1841         * MonoType.cs: add rank to MonoTypeInfo and implement GetArrayRank.\r
1842         * String.c: eliminate 64k+ method calls in search.\r
1843         * Type.cs: handle byref and array types in ToString ().\r
1844 \r
1845 2002-01-09  Duco Fijma <duco@lorentz.xs4all.nl>\r
1846 \r
1847         * Guid.cs: created first version\r
1848 \r
1849 2002-01-10  Dietmar Maurer  <dietmar@ximian.com>\r
1850 \r
1851         * MonoType.cs: added missing TypeAttributes to MonoTypeInfo \r
1852 \r
1853 Wed Jan 9 19:35:07 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1854 \r
1855         * MulticastDelegate.cs: add == and != operator stubs.\r
1856         * String.cs: check for null in == operator.\r
1857         * Type.cs: use a virtual method to get TypeAttributes.\r
1858 \r
1859 Tue Jan  8 23:30:19 EST 2002 Matt Kimball <matt@kimball.net>\r
1860         * String.cs: Fixed several off-by-one errors in LastIndexOf* methods\r
1861 \r
1862 2002-01-09  Nick Drochak  <ndrochak@gol.com>\r
1863         \r
1864         * Environment.cs: Comment out Security attribute and put a MonoTODO\r
1865         there as a reminder.  We need mcs magic to handle security attributes in\r
1866         corlib.\r
1867 \r
1868 2002-01-07  Duco Fijma <duco@lorentz.xs4all.nl>\r
1869         * Created IAppDomainSetup.cs\r
1870 \r
1871 2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>\r
1872         * Created System._AppDomain interface in _AppDomain.cs\r
1873 \r
1874 2002-01-06  Nick Drochak  <ndrochak@gol.com>\r
1875 \r
1876         * ResolveEventArgs.cs: New File, completely implemented! ;)\r
1877 \r
1878 Sat Jan 5 15:53:50 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1879 \r
1880         * Enum.cs: dummy ToString impl.\r
1881         * String.cs: dummy format implementations to get compiler errors\r
1882         somewhat working.\r
1883         * Type.cs: implemented filter delegates. FindMembers runs the filter, now.\r
1884 \r
1885 2002-01-05  Ravi Pratap  <ravi@ximian.com>\r
1886 \r
1887         * TODOAttribute.cs : Augment some more; provide two constructors\r
1888         with support for a comment too.\r
1889 \r
1890 2002-01-05  Nick Drochak  <ndrochak@gol.com>\r
1891 \r
1892         * Uncommented those MonoTODO's now that Ravi's got\r
1893         the class in there\r
1894 \r
1895 2001-01-04  Ravi Pratap  <ravi@ximian.com>\r
1896 \r
1897         * TODOAttribute.cs : Actually add this time ;-)\r
1898 \r
1899         Change name to MonoTODO.\r
1900 \r
1901 2002-01-04  Jeffrey Stedfast  <fejj@ximian.com>\r
1902 \r
1903         * String.cs (Trim): Fixed a few logic bugs in the code that\r
1904         calculated how much to trim off the end of the string.\r
1905 \r
1906 2001-01-04  Nick Drochak  <ndrochak@gol.com>\r
1907         \r
1908         * Commented out the [TODO] attributes for now.  We don't have the\r
1909         class written.  Also changed it to [MonoTODO]\r
1910 \r
1911 2002-01-04  Ravi Pratap  <ravi@ximian.com>\r
1912 \r
1913         * TODOAttribute.cs : Add. We use this attribute to tag all bits in\r
1914         our class libraries that are incomplete.\r
1915 \r
1916         * Array.cs : Apply attribute wherever we find a FIXME which says\r
1917         we need something to be implemented there.\r
1918 \r
1919         * Int32.cs : Ditto.\r
1920 \r
1921         * MulticastDelegate.cs : Ditto.\r
1922 \r
1923         * RuntimeFieldHandler.cs, RuntimeMethodHandle.cs,\r
1924         RuntimeTypeHandle.cs : Ditto.\r
1925 \r
1926         * String.cs : Ditto.\r
1927 \r
1928         * Type.cs : Ditto.\r
1929 \r
1930         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs, Delegate.cs : Ditto.\r
1931 \r
1932         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs, Single.cs, \r
1933         UInt16.cs, UInt32.cs, ValueType.cs: Ditto.\r
1934 \r
1935         * Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs,\r
1936         Delegate.cs : Ditto.\r
1937 \r
1938         * Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs,\r
1939         Single.cs, UInt16.cs, UInt32.cs, ValueType.cs: Ditto.\r
1940         \r
1941 Thu Jan 3 23:24:04 CET 2002 Paolo Molaro <lupus@ximian.com>\r
1942 \r
1943         * Delegate.cs: add Remove() stub.\r
1944         * Enum.cs: add ToObject().\r
1945         * Type.cs: add IsEnum property.\r
1946 \r
1947 2002-01-03  Kristian Rietveld  <kris@gtk.org>\r
1948 \r
1949         * Convert.cs: add non-CLS-compliant ToBoolean methods for char,\r
1950         DateTime and object.\r
1951 \r
1952 2001-12-30  Nick Drochak  <ndrochak@gol.com>\r
1953 \r
1954         * Byte.cs (Parse): Add comments to aid in testing.\r
1955 \r
1956 2001-12-21  Miguel de Icaza  <miguel@ximian.com>\r
1957 \r
1958         * Char.cs (Parse): Implement.\r
1959 \r
1960         * Byte.cs (Parse): Implement a fast parser.\r
1961         \r
1962         * SByte.cs (Parse): Implement a fast parser.\r
1963 \r
1964         * UInt16.cs (Parse): Implement a fast parser.\r
1965         \r
1966         * Int16.cs (Parse): Implement a fast parser.\r
1967 \r
1968         * UInt32.cs (Parse): Implement a fast parser.\r
1969 \r
1970         * Int32.cs (Parse): Implement a fast parser.\r
1971 \r
1972 Fri Dec 21 15:14:52 CET 2001 Paolo Molaro <lupus@ximian.com>\r
1973 \r
1974         * Array.cs: fix null ref in sort code.\r
1975         * UInt64.cs: add bare-bones parse.\r
1976 \r
1977 Thu Dec 20 15:29:52 CET 2001 Paolo Molaro <lupus@ximian.com>\r
1978         \r
1979         * Byte.cs: removed use of Regexes.\r
1980 \r
1981 Tue Dec 18 18:39:54 CET 2001 Paolo Molaro <lupus@ximian.com>\r
1982 \r
1983         * Enum.cs: implemented GetValues(), GetNames(), GetName(),\r
1984         IsDefined(), GetUnderlyingType().\r
1985         * String.cs: fix one instance of Compare().\r
1986         * Type.cs: implemented GetProperties(), GetProperty().\r
1987 \r
1988 Thu Dec 13 20:10:57 CET 2001 Paolo Molaro <lupus@ximian.com>\r
1989 \r
1990         * Array.cs: implement CopyTo ().\r
1991         * Char.cs: implement ToString ().\r
1992         * Exception.cs: bugfix.\r
1993         * Int32.cs: bare-bones Parse ().\r
1994         * MonoType.cs: query the needed info with an internalcall.\r
1995         * String.cs: speedups, bugfixes, reduced copies.\r
1996         * Type.cs: added missing fields. Implemented many of the Is*\r
1997         properties. Implemented GetMethod(), GetConstructor(), GetMethods(),\r
1998         GetFields(), FindMembers(), ToString().\r
1999         \r
2000 2001-12-11  Dick Porter  <dick@ximian.com>\r
2001 \r
2002         * DateTime.cs: Implemented FromFileTime() and ToFileTime()\r
2003 \r
2004         * Console.cs: Use handles rather than casting file descriptors\r
2005 \r
2006 2001-12-08  Nick Drochak  <ndrochak@gol.com>\r
2007 \r
2008         * Byte.cs (Parse): Start implementation. Parse(string) works, but\r
2009         now we need to handle other formats\r
2010 \r
2011 2001-12-06  Dietmar Maurer  <dietmar@ximian.com>\r
2012 \r
2013         * DateTime.cs: added an icall to GetNow()\r
2014 \r
2015 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>\r
2016 \r
2017         * Double.cs: added the parse method from Bob Smith\r
2018 \r
2019 2001-11-28  Miguel de Icaza  <miguel@ximian.com>\r
2020 \r
2021         * UInt64.cs: ditto.\r
2022 \r
2023         * UInt32.cs: ditto.\r
2024 \r
2025         * Int32.cs (Int32.CompareTo): Fix because we can not just\r
2026         substract the values.\r
2027 \r
2028         Return possitive value if the object is null.\r
2029 \r
2030         * Boolean.cs: (Boolean.CompareTo): ditto.\r
2031 \r
2032         * Int16.cs (Int16.CompareTo): ditto.\r
2033 \r
2034         * Byte.cs (Byte.CompareTo): ditto.\r
2035 \r
2036         * SByte.cs (SByte.CompareTo): ditto.\r
2037 \r
2038         * Char.cs (Char.CompareTo): ditto.\r
2039         \r
2040         * Decimal.cs (Decimal.CompareTo): ditto.\r
2041 \r
2042         * Int64.cs (Int64.CompareTo): ditto.\r
2043 \r
2044         * Single.cs: Ditto.\r
2045 \r
2046         * UInt16.cs: Ditto.\r
2047 \r
2048 2001-11-28  Nick Drochak <ndrochak@gol.com>\r
2049 \r
2050         * Byte.cs: Throw NotImplementedException for Parse.\r
2051 \r
2052 2001-11-27  Derek Holden  <dholden@draper.com>\r
2053 \r
2054         * IntegerFormatter.cs: Formatting of type "Number" was not\r
2055         using NumberFormatInfo.NumberNegativePattern.\r
2056 \r
2057 2001-11-26  Dick Porter  <dick@ximian.com>\r
2058 \r
2059         * LocalDataStoreSlot.cs: No need to delete a system TLS slot in\r
2060         the finalise routine any more\r
2061 \r
2062 2001-11-21  Miguel de Icaza  <miguel@ximian.com>\r
2063 \r
2064         * ApplicationException.cs: internationalize by adding calls to\r
2065         Locale.GetText ().  And throw NotImplementedExceptions on calls\r
2066         that we have to implement.\r
2067 \r
2068         * Version.cs: Ditto.\r
2069 \r
2070         * ValueType.cs: ditto.\r
2071 \r
2072         * UnauthorizedAccessException.cs: ditto.\r
2073 \r
2074         * UInt32.cs: ditto.\r
2075 \r
2076         * UInt64.cs: ditto.\r
2077 \r
2078         * UInt16.cs: ditto.\r
2079 \r
2080         * TypeLoadException.cs: ditto\r
2081 \r
2082         * TypeInitializationException.cs: ditto.\r
2083 \r
2084         * Type.cs: ditto.\r
2085 \r
2086         * TimeSpan.cs: ditto.\r
2087 \r
2088         * SystemException.cs: ditto.\r
2089 \r
2090         * String.cs: ditto.\r
2091 \r
2092         * StackOverflowException.cs: ditto.x\r
2093 \r
2094         * Single.cs: ditto.\r
2095 \r
2096         * SByte.cs: ditto.\r
2097 \r
2098         * RuntimeTypeHandle.cs: ditto.\r
2099 \r
2100         * RuntimeMethodHandle.cs: ditto.\r
2101 \r
2102         * RuntimeFieldHandle.cs: ditto.\r
2103 \r
2104         * Random.cs: ditto.\r
2105 \r
2106         * OutOfMemoryException.cs: ditto.\r
2107 \r
2108         * OperatingSystem.cs: ditto.\r
2109 \r
2110         * ObjectDisposedException.cs: ditto.\r
2111 \r
2112         * NullReferenceException.cs: ditto.\r
2113 \r
2114         * NotImplementedException.cs: ditto.\r
2115 \r
2116         * NotFiniteNumberException.cs: ditto.o\r
2117 \r
2118         * MulticastNotSupportedException.cs: ditto.\r
2119 \r
2120         * MissingMethodException.cs: ditto.\r
2121 \r
2122         * MemberAccessException.cs: ditto.\r
2123 \r
2124         * Math.cs: ditto.\r
2125 \r
2126         * InvalidCastException.cs: ditto.\r
2127 \r
2128         * IntegerFormatter.cs: ditto.\r
2129 \r
2130         * Int32.cs: ditto.\r
2131 \r
2132         * Int16.cs: ditto.\r
2133 \r
2134         * IndexOutOfRangeException.cs: ditto.\r
2135 \r
2136         * Environment.cs: ditto\r
2137 \r
2138         * Enum.cs: ditto.\r
2139 \r
2140         * DuplicateWaitObjectException.cs: ditto.\r
2141 \r
2142         * DivideByZeroException.cs: ditto.\r
2143 \r
2144         * Delegate.cs: ditto\r
2145 \r
2146         * DecimalFormatter.cs: ditto.\r
2147 \r
2148         * Decimal.cs: ditto.\r
2149 \r
2150         * DateTime.cs: ditto.\r
2151 \r
2152         * Convert.cs: ditto.\r
2153 \r
2154         * Char.cs: ditto.\r
2155 \r
2156         * Byte.cs: ditto.\r
2157 \r
2158         * Boolean.cs: ditto.\r
2159 \r
2160         * ArrayTypeMismatchException.cs: ditto.\r
2161 \r
2162         * ArithmeticException.cs: ditto.\r
2163 \r
2164         * ArgumentOutOfRangeException.cs: ditto.\r
2165 \r
2166         * ArgumentNullException.cs: ditto.\r
2167 \r
2168         * Enum.cs: Make it derive from ValueType, add CompareTo method.\r
2169 \r
2170         * Attribute.cs: Reformat.\r
2171 \r
2172 2001-11-14  Miguel de Icaza  <miguel@ximian.com>\r
2173 \r
2174         * Decimal.cs, Double.cs, Byte.cs, Char.cs, Int16, UInt16, Int32,\r
2175         UInt32, Int64, UInt64, SByte, Single (CompareTo): Throw the\r
2176         exception if the value is null too.\r
2177 \r
2178         * Char.cs (CompareTo): ditto.\r
2179 \r
2180         * ApplicationException.cs: Added constructor that does serialization.\r
2181 \r
2182         * ParamArrayAttribute.cs: Define attribute correctly.\r
2183 \r
2184 Wed Nov 14 16:31:19 CET 2001 Paolo Molaro <lupus@ximian.com>\r
2185 \r
2186         * AppDomain.cs: rename dummy interface _AppDomain to AppDomain_Intf.\r
2187         * Array.cs: fix Array.Copy.\r
2188         * AssemblyLoadEventArgs.cs: rename field.\r
2189         * CLSCompliantAttribute.cs: use correct name for the class.\r
2190         * Char.cs: fix IsLetter.\r
2191         * Console.cs, DateTime.cs, Decimal.cs, IConvertible.cs, Math.cs,\r
2192         SByte.cs, UInt16.cs, UInt32.cs, UInt64.cs, UIntPtr.cs: CLSCompliant updates.\r
2193         * Convert.cs: CLSCompliant updates, add ChangeType() methods.\r
2194         * Delegate.cs: renamed target field to m_target.\r
2195         * Enum.cs: added missing methods.\r
2196         * MonoType.cs: add a constructor and some needed properties.\r
2197         * Object.cs: implement GetType().\r
2198         * String.cs: CLSCompliant updates. Fixes everywhere to remove the\r
2199         ending 0 char.\r
2200         * Type.cs: add missing methods/properties.\r
2201 \r
2202 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>\r
2203 \r
2204         * AttributeUseage.cs: Should define AttributeUsageAttribute.\r
2205 \r
2206         * CLSCompliant.cs: Marked with AttributeUsage attribute.\r
2207 \r
2208         * Decimal.cs: Fixed CLSCompliant attributes.\r
2209 \r
2210         * Type.cs: changed _impl to internal (needs to be accessable by\r
2211         subclasses).\r
2212 \r
2213         (TypeHandle): Marked as abstract, implementation removed.\r
2214 \r
2215         (IsNotPublic, IsPublic, GetMethods, GetPropery, GetConstructor,\r
2216         GetMethod): Added stub implementations so NUnit would link against\r
2217         corlib\r
2218 \r
2219 Tue Nov 6 09:11:43 CET 2001 Paolo Molaro <lupus@ximian.com>\r
2220 \r
2221         * AppDomain.cs: use an internal constructor for AssemblyBuilder.\r
2222 \r
2223 2001-11-05  Miguel de Icaza  <miguel@ximian.com>\r
2224 \r
2225         * NonSerializedAttribute.cs: Add AttributeUsage rules for this\r
2226         attribute. \r
2227 \r
2228 Fri Nov 2 18:23:15 CET 2001 Paolo Molaro <lupus@ximian.com>\r
2229 \r
2230         * String.cs: fix a couple of bugs.\r
2231         * AppDomain.cs: use new AppBuilder constructor.\r
2232         * Buffer.cs, GC.cs, NonSerializedAttribute.cs,\r
2233         NotImplementedException.cs, ObjectDisposedException.cs,\r
2234         UnauthorizedAccessException.cs: add implementation.\r
2235         * OverflowException.cs: fix class name.\r
2236 \r
2237 2001-10-28  Jeffrey Stedfast  <fejj@ximian.com>\r
2238 \r
2239         * String.cs: Don't use a terminating nil char for our internal\r
2240         array.\r
2241 \r
2242 2001-10-27  Miguel de Icaza  <miguel@ximian.com>\r
2243 \r
2244         * Delegate.cs (Delegate.CombineImpl): Implement.\r
2245         (Delegate.Combine): Implement.\r
2246 \r
2247         * MulticastDelegate.cs (MulticastDelegate.Equals): Implement.\r
2248 \r
2249         (MulticastDelegate.CombineImpl): This was not as trivial as I\r
2250         thought. \r
2251 \r
2252         * ContextStaticAttribute.cs: Added AttributeUsage to\r
2253         ContextStaticAttribute. \r
2254 \r
2255         * FlagsAttribute.cs: Add AttributeUsage to FlagsAttribute\r
2256 \r
2257 2001-10-15  Martin Weindel <martin.weindel@t-online.de>\r
2258 \r
2259         * added Decimal.cs * added DecimalFormatter.cs (internal class\r
2260         used from System.Decimal)\r
2261 \r
2262 2001-10-11  Thomas Neidhart <tome@sbox.tugraz.at>\r
2263 \r
2264         * Convert.cs: Added methods for Base64 transforming just used the\r
2265           existing System.Security.Cryptography.ToBase64Transform, should\r
2266           be changed to use a stand-alone class, e.g. Base64Encoder\r
2267           \r
2268 2001-10-10  Derek Holden  <dholden@draper.com>\r
2269 \r
2270         * IntegerFormatter.cs: Added. Implements ToString for all the\r
2271         integer data types for all the format types.\r
2272 \r
2273         * Byte.cs: Using IntegerFormatter for ToString's.\r
2274 \r
2275         * SByte.cs: Using IntegerFormatter for ToString's.\r
2276 \r
2277         * Int16.cs: Using IntegerFormatter for ToString's.\r
2278 \r
2279         * Int32.cs: Using IntegerFormatter for ToString's.\r
2280 \r
2281         * Int64.cs: Using IntegerFormatter for ToString's.\r
2282 \r
2283         * UInt16.cs: Using IntegerFormatter for ToString's.\r
2284 \r
2285         * UInt32.cs: Using IntegerFormatter for ToString's.\r
2286 \r
2287         * UInt64.cs: Using IntegerFormatter for ToString's.\r
2288 \r
2289 2001-10-07  Miguel de Icaza  <miguel@ximian.com>\r
2290 \r
2291         * Exception.cs: Implement bits of serialization.\r
2292 \r
2293         * RuntimeFieldHandle.cs: Implement Serialization features.\r
2294 \r
2295         * Type.cs: Implement TypeHandle property.\r
2296 \r
2297 2001-09-28  Dick Porter  <dick@ximian.com>\r
2298 \r
2299         * LocalDataStoreSlot.cs: Implemented\r
2300 \r
2301 Tue Sep 25 19:58:14 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2302 \r
2303         * String.cs: fix off-by-one error in Trim().\r
2304 \r
2305 Tue Sep 25 18:52:14 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2306 \r
2307         * Type.cs: added GetType () method.\r
2308 \r
2309 Tue Sep 25 17:29:02 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2310 \r
2311         * MissingMethodException.cs, MissingMemberException.cs,\r
2312         MemberAccessException.cs: added.\r
2313 \r
2314 Tue Sep 25 16:46:43 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2315 \r
2316         * String.cs: don't access the string array out of bounds in\r
2317         LastIndexOf.  * Type.cs: fix return type of the Assembly property.\r
2318 \r
2319 Mon Sep 24 20:35:24 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2320 \r
2321         * String.cs: make Intern and IsIntern internalcalls.\r
2322 \r
2323 2001-09-13  Dick Porter  <dick@ximian.com>\r
2324 \r
2325         * Type.cs: Added a stub for the IsValueType property.\r
2326 \r
2327         * SystemException.cs (System): Added the other constructor, so\r
2328         that System.Threading exceptions can inherit it.\r
2329 \r
2330 2001-09-08  Jeffrey Stedfast  <fejj@ximian.com>\r
2331 \r
2332         * String.cs (TrimStart): Don't keep looping through the trimchars\r
2333         once we've found a match.\r
2334         (TrimEnd): Same here.\r
2335         (Trim): And finally here.\r
2336 \r
2337 2001-09-07  Ravi Pratap  <ravi@ximian.com>\r
2338 \r
2339         * Char.cs (IsLetterOrDigit): Implement.\r
2340         (IsLower): Implement, but we need to be Unicode aware.\r
2341         (IsNumber): Implement.\r
2342         (IsPunctuation): Implement.\r
2343         (IsWhiteSpace): Implement.\r
2344         (ToUpper): Fix to subtract 32 from the ASCII value, not 33 :)\r
2345         (ToLower): Same here.\r
2346 \r
2347 2001-09-04  Miguel de Icaza  <miguel@ximian.com>\r
2348 \r
2349         * Object.cs: Shortcut, if (a == b) then return true.\r
2350 \r
2351 Fri Sep 7 18:34:48 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2352 \r
2353         * Delegate.cs: we need a pointer to the method thunk in\r
2354         the delegate object.\r
2355 \r
2356 Fri Sep 7 12:28:01 CEST 2001 Paolo Molaro <lupus@ximian.com>\r
2357 \r
2358         * AsyncCallback.cs, common.src: add AsyncCallback delegate.\r
2359 \r
2360 2001-09-06  Jeffrey Stedfast  <fejj@ximian.com>\r
2361 \r
2362         * String.cs (System): Don't mix uint and int.\r
2363 \r
2364 2001-09-04  Jeffrey Stedfast  <fejj@ximian.com>\r
2365 \r
2366         * String.cs (BoyerMoore): Modified to not use pointers and to instead\r
2367         use indexes.\r
2368         (IndexOf): Use BoyerMoore.\r
2369 \r
2370 2001-09-02  Miguel de Icaza  <miguel@ximian.com>\r
2371 \r
2372         * All over: Use the autogenerated enumerations from the ECMA\r
2373         documentation that Sergey wrote.\r
2374         \r
2375         * PlatformID.cs: Add Unix definition.\r
2376 \r
2377         * OperatingSystem.cs: Use Unix instead of Linux here.\r
2378 \r
2379         * MarshalByRefObject.cs: Mark class as [Serializable].\r
2380 \r
2381 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>\r
2382 \r
2383         * Console.cs: impl. (write only)\r
2384         implemented the stdin stuff\r
2385 \r
2386         * Int32.cs: impl. real op_Equal\r
2387 \r
2388 2001-08-24  Miguel de Icaza  <miguel@ximian.com>\r
2389 \r
2390         * (common.src): Removed IAsyncResult as it is not on CVS yet.\r
2391 \r
2392         * UIntPtr.cs: Removed CLSCompliant attribute before the namespace,\r
2393         as it breaks the build.\r
2394 \r
2395 2001-08-23  Michael Lambert <michaellambert@email.com>\r
2396 \r
2397         * IntPtr.cs: Optimized unsafe declaration, implemented GetObjectData, \r
2398         added CLSCompliant attribute\r
2399 \r
2400         * IAsyncResult.cs: Added\r
2401 \r
2402         * common.src: Added IAsyncResult.cs\r
2403 \r
2404 2001-08-23  Michael Lambert <michaellambert@email.com>\r
2405 \r
2406         * UIntPtr.cs: Added\r
2407 \r
2408         * common.src: Added UIntPtr.cs\r
2409 \r
2410 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>\r
2411 \r
2412         * Attribute.cs: uncomment some code to make it compile again\r
2413 \r
2414         * mono.src: removed duplicated Attribute.cs\r
2415 \r
2416 2001-08-16  Nick Drochak <ndrochak@gol.com>\r
2417 \r
2418         * Attribute.cs: implemented all methods except GetHashCode()\r
2419 \r
2420         * common.src: added Attribute.cs so it would compile in\r
2421 \r
2422 2001-08-10  Dietmar Maurer  <dietmar@ximian.com>\r
2423 \r
2424         * Object.cs: changed MemberWiseClone to MemberwiseClone, and\r
2425         marked it as InternalCall\r
2426         \r
2427         * common.src: removed UriFormatException.cs because the file is\r
2428         not there.\r
2429 \r
2430         * RuntimeTypeHandle.cs: replaced IntrPtr with IntPtr\r
2431         * Char.cs: replaced byte with char\r
2432 \r
2433         * Array.cs: make it work with the mono interpreter\r
2434 \r
2435 2001-08-06  Miguel de Icaza  <miguel@ximian.com>\r
2436 \r
2437         * Version.cs: Make the class sealed\r
2438 \r
2439 2001-08-08  Bob Smith  <bob@thestuff.net>\r
2440 \r
2441         * Random.cs: Many compile fixes.\r
2442         * Random.cs: I read a bad spec. Class updated to match real spec.\r
2443 \r
2444 2001-08-06  Miguel de Icaza  <miguel@ximian.com>\r
2445 \r
2446         * IntPtr.cs: Added and Completed implementation.\r
2447 \r
2448         * Uri.cs: Add a note.\r
2449 \r
2450 2001-08-06  Bob Smith  <bob@thestuff.net>\r
2451 \r
2452         * Random.cs: Compile fix. Needs more testing.\r
2453 \r
2454 2001-08-06 Garrett Rooney <rooneg@electricjellyfish.net>\r
2455 \r
2456         * Uri.cs: Initial Implementation.  Parsing needs to be fixed to take \r
2457         into account IPv6 addresses, url encoding needs to be implemented, and \r
2458         various minor methods need to be written, but this is a decent start.\r
2459 \r
2460 2001-08-06  Dietmar Maurer  <dietmar@ximian.com>\r
2461 \r
2462         * common.src: added Object.cs\r
2463 \r
2464         * mono.src: added ValueType.cs\r
2465 \r
2466 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>\r
2467 \r
2468         * Math.cs: replaced libc with libm\r
2469 \r
2470 2001-08-02  Bob Smith  <bob@thestuff.net>\r
2471 \r
2472         * Random.cs: Implemented. Needs testing.\r
2473 \r
2474 2001-08-02  Miguel de Icaza  <miguel@ximian.com>\r
2475 \r
2476         * IServiceProvider.cs, EventHandler.cs: New files.\r
2477 \r
2478 2001-08-02  Marcel Narings  <marcel@narings.nl>\r
2479         \r
2480         * DateTime.cs: Cleaned up a bit. Added the Add* family members.\r
2481         Added exceptions. Added IConvertible. Still needs some platform \r
2482         dependend stuff, the Parse and ToString members\r
2483 \r
2484 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>\r
2485 \r
2486         * Type.cs (GetTypeFromHandle): added placeholder \r
2487 \r
2488 2001-07-24  Derek Holden  <dholden@draper.com>\r
2489 \r
2490         * Boolean.cs: Formatted to code style standard. Added GetTypeCode\r
2491         which is really an IConvertible defined method.\r
2492 \r
2493         * Byte.cs: Added a missing Parse method. Put in Parse and ToString\r
2494         behavior, still need to do the main Parse and ToString.\r
2495 \r
2496         * Char.cs: Added a bunch of missing ECMA methods. Commented a\r
2497         specification discrepency. Still didn't any unicode stuff, though\r
2498         every IsFoo(char c) method has an IsFoo(string, index)\r
2499         counterpart, added wrappers for those.\r
2500         \r
2501         * Convert.cs: Fixed NaN/Inf checking and double/float\r
2502         rounding. Added ToType for IConvertible classes\r
2503 \r
2504         * Double.cs: Fixed ECMA min and max values. Added IsInfinity /\r
2505         IsNaN methods. Changed Inf/NaN internals.\r
2506 \r
2507         * IConvertible.cs: Added comments for using\r
2508         Convert.ToType. Changed return values to draft base values.\r
2509 \r
2510         * Int16.cs: Added a missing Parse statement. Put in behavior for\r
2511         overloaded ToString and Parse methods.\r
2512 \r
2513         * Int32.cs: Added a missing Parse statement. Put in behavior for\r
2514         overloaded ToString and Parse methods.\r
2515 \r
2516         * Int64.cs: Added a missing Parse statement. Put in behavior for\r
2517         overloaded ToString and Parse methods.\r
2518         \r
2519         * Single.cs: Put in ECMA epsilon value. Added IsInfinity / IsNaN\r
2520         methods. Changed Inf/NaN internals.\r
2521 \r
2522         * SByte.cs: Added a missing Parse method. Put in Parse and\r
2523         ToString behavior, still need to do the main Parse and ToString.\r
2524 \r
2525         * UInt16.cs: Added a missing Parse statement. Put in behavior for\r
2526         overloaded ToString and Parse methods.\r
2527 \r
2528         * UInt32.cs: Added a missing Parse statement. Put in behavior for\r
2529         overloaded ToString and Parse methods.\r
2530 \r
2531         * UInt64.cs: Added a missing Parse statement. Put in behavior for\r
2532         overloaded ToString and Parse methods.\r
2533         \r
2534 2001-07-20  Miguel de Icaza  <miguel@ximian.com>\r
2535 \r
2536         * MulticastDelegate.cs: New File.\r
2537 \r
2538         * Delegate.cs: New file.\r
2539 \r
2540         * Enum.cs: New file.\r
2541 \r
2542         * Attribute.cs: New file.\r
2543 \r
2544         * Type.cs: New file.\r
2545 \r
2546         * ParamArrayAttribute.cs: New file.\r
2547 \r
2548         * RuntimeTypeHandle.cs: New file.\r
2549 \r
2550         * MulticastDelegate.cs: Added.\r
2551 \r
2552         * DateTime.cs: Added\r
2553 \r
2554         * Delegate.cs: Added\r
2555 \r
2556 2001-07-18  Michael Lambert <michaellambert@email.com>\r
2557 \r
2558         * AttributeTargets.cs: Add.\r
2559 \r
2560 2001-07-19  Jeffrey Stedfast  <fejj@ximian.com>\r
2561 \r
2562         * Char.cs: Made ToUpper and ToLower public methods.\r
2563 \r
2564         * String.cs: Lots and lots of compile fixes - just need to write\r
2565         DateTime.cs and this should build completely now.\r
2566 \r
2567 2001-07-19  Bob Smith (bob@thestuff.net)\r
2568 \r
2569         * Math.cs: Implemented. \r
2570 \r
2571 2001-07-19  Miguel de Icaza  <miguel@ximian.com>\r
2572 \r
2573         * String.cs: Removed tolower and toupper.\r
2574 \r
2575         * Char.cs: Moved ToLower and ToUpper from string to here. \r
2576 \r
2577         * Convert.cs ToByte (float value), ToByte (double value) Use IsNan\r
2578         instead of comparing the value to Nan.\r
2579 \r
2580 2001-07-19  Duco Fijma (duco@lorentz.xs4all.nl)\r
2581 \r
2582         * TimeSpan.cs: New implementation.\r
2583 \r
2584 2001-07-18  Scott Sanders <scott@stonecobra.com>\r
2585 \r
2586          * UriFormatExcpetion.cs: Add - 85% complete\r
2587 \r
2588 2001-07-17  Jeffrey Stedfast  <fejj@ximian.com>\r
2589 \r
2590         * String.cs (IndexOf): Slight optimization that allows skipping\r
2591         over a few chars here and there. This isn't as good as using my\r
2592         Boyer-Moore implementation, however, Boyer-Moore is only really\r
2593         good for long strings (I plan on making the code decide which\r
2594         string search algorithm it should use on-the-fly at some point).\r
2595         (LastIndexOf): Fix to work correctly.\r
2596         (BoyerMoore): Took out some unneeded code and fixed an edge-case.\r
2597 \r
2598 2001-07-16  Michael Lambert <michaellambert@email.com>\r
2599 \r
2600         * EventArgs.cs: Add.\r
2601         \r
2602 2001-07-16  Miguel de Icaza  <miguel@ximian.com>\r
2603 \r
2604         * Version.cs: Remove my buggy comment.\r
2605 \r
2606 2001-07-15  Sean MacIsaac  <macisaac@ximian.com>\r
2607 \r
2608         * String.cs: Spelling error of IComparable, object's\r
2609         MemberwiseClone cannot be overridden.  Made indexer valid for now,\r
2610         but not sure what to do about this in the long run.  Seems to be a\r
2611         couple bugs in csc.exe having to do with multiple pointer defs in\r
2612         the same statement, and returning subclasses of a class in the\r
2613         return type of an interface function implementation.  Also moved\r
2614         operators inside of class definition.\r
2615 \r
2616 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>\r
2617 \r
2618         * String.cs: A tom of compile fixes, although we still don't compile.\r
2619 \r
2620         * IConvertible.cs: The To*Int64() methods return *Int64's, not\r
2621         *Int32's. Also, it's ToDateTime() not ToDateType().\r
2622 \r
2623 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>\r
2624 \r
2625         * String.cs: Apparently I needed to at least write stubs for the\r
2626         IConvertible interfaces. *sigh*\r
2627 \r
2628 2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>\r
2629 \r
2630         * String.cs: Many logic/other fixes and better usage of the\r
2631         features of c#\r
2632         (tolower): New convenience method to help condense code.\r
2633         (toupper): Another new helper method.\r
2634         (Compare): Use the new helper methods.\r
2635         (ToLower): use tolower().\r
2636         (ToUpper): use toupper().\r
2637         (LastIndexOfAny): Implemented.\r
2638         (BoyerMoore): New private helper method that implements a modified\r
2639         version of the Boyer-Moore search algorithm. Noothing uses it yet\r
2640         as I'm not 100% sure it even works properly with unicode strings\r
2641         not to mention it uses a huge lookup-table :-)\r
2642         (Split): Implemented.\r
2643 \r
2644 2001-07-13  Jeffrey Stedfast  <fejj@ximian.com>\r
2645 \r
2646         * TODO: Added things that need to be finished in System.String\r
2647 \r
2648         * String.cs: New source file implementing the System.String class\r
2649 \r
2650 2001-07-12  Sean MacIsaac  <macisaac@ximian.com>\r
2651 \r
2652         * TypeCode.cs: UInt64 was UInt63.\r
2653 \r
2654         * Object.cs: Fixed a numer of compiler errors.\r
2655 \r
2656         * Array.cs: Fixed some compiler errors.\r
2657 \r
2658         * IComparable.cs: Fixed some compiler errors.\r
2659 \r
2660         * ICloneable.cs: Fixed some compiler errors.\r
2661 \r
2662         * IConvertible.cs: Fixed some compiler errors.\r
2663 \r
2664         * IFormattable.cs: Fixed a compiler error.\r
2665 \r
2666         * IFormatProvider.cs: Fixed a compiler error.\r
2667 \r
2668         * IDisposable.cs: Fixed a compiler error.\r
2669 \r
2670         * IFormatProvider.cs: Added public accesability type to\r
2671         IFormatProvider.\r
2672 \r
2673         * Exception.cs: Added a using statement to remove compile time\r
2674         error.\r
2675 \r
2676         * ApplicationException.cs: Removed a ; that was causing a compiler\r
2677         error.\r
2678 \r
2679         * Int16.cs: Fixed some compiler errors.\r
2680 \r
2681         * Int32.cs: Fixed some compiler errors.\r
2682 \r
2683         * Int64.cs: Fixed some compiler errors.\r
2684 \r
2685         * SystemException.cs: Fixed a compiler error.\r
2686 \r
2687         * UInt16.cs: Fixed some compiler errors.\r
2688 \r
2689         * UInt32.cs: Fixed some compiler errors.\r
2690 \r
2691         * UInt64.cs: Fixed some compiler errors.\r
2692 \r
2693         * Void.cs: Fixed a compiler error.      \r
2694 \r
2695 2001-07-12  Joe Shaw  <joe@ximian.com>\r
2696 \r
2697         * Array.cs: Fix backwards parameters to Array.SetValue()\r
2698         throughout.\r
2699         (BinarySearch): Fix backward logic surrounding whether to call\r
2700         value.CompareTo or comparer.Compare.\r
2701         (LastIndexOf): Stop being stupid. I am so not used to strongly\r
2702         bounded arrays...\r
2703         (Sort): Implement a quicksort.\r
2704 \r
2705 2001-07-11  Joe Shaw  <joe@ximian.com>\r
2706 \r
2707         * Array.cs: Change all instances of trying to access an array with\r
2708         the index operator to calls to GetValue and SetValue, and add\r
2709         InternalGetValue and InternalSetValue which are internal calls\r
2710         into the runtime. Ew.\r
2711 \r
2712 2001-07-10  Joe Shaw  <joe@ximian.com>\r
2713 \r
2714         * Array.cs: Implemented everything but Sort().\r
2715 \r
2716 2001-07-09  Jeffrey Stedfast  <fejj@ximian.com>\r
2717 \r
2718         * Object.cs (Object::Equals): Object variable name is `o'.\r
2719 \r
2720 2001-07-06  Joe Shaw  <joe@ximian.com>\r
2721 \r
2722         * Int16.cs, Int32.cs, Int64.cs, UInt16.cs, UInt32.cs, UInt64.cs:\r
2723         Implement the IComparable and IFormattable interfaces. Fix a typo\r
2724         (publig -> public)\r
2725 \r
2726         * ApplicationException.cs, ArgumentException.cs,\r
2727         ArgumentNullException.cs, ArgumentOutOfRangeException.cs,\r
2728         ArtithmeticException.cs, ArrayTypeMismatchException.cs,\r
2729         DivideByZeroException.cs, DuplicateWaitObjectException.cs,\r
2730         ExecutionEngineException.cs, FormatException.cs,\r
2731         IndexOutOfRangeException.cs, InvalidCastException.cs,\r
2732         InvalidOperationException.cs, InvalidProgramException.cs,\r
2733         MulticateNotSupportedException.cs, NotFiniteNumberException.cs,\r
2734         NotSupportedException.cs, NullReferenceException.cs,\r
2735         OutOfMemoryException.cs, OverflowException.cs, RankException.cs,\r
2736         StackOverflowException.cs, SystemException.cs,\r
2737         TypeInitializationException.cs: Added all of the exceptions\r
2738         specified by the language spec. Mmmm... bloat.\r
2739 \r
2740 2001-07-06  Miguel de Icaza  <miguel@ximian.com>\r
2741 \r
2742         * Int64.cs, Int32.cs: Put.  Parsing and ToString missing.  Should\r
2743         do a generic routine all of these guys use.\r
2744 \r
2745         * Int16.cs: identified missing methods.\r
2746 \r
2747         * UInt16.cs, UInt32.cs, UInt64.cs: Add.\r
2748 \r
2749 2001-06-26  Miguel de Icaza  <miguel@ximian.com>\r
2750 \r
2751         * TypeCode.cs: Implement\r
2752 \r
2753         * Void.cs: Implement.\r
2754 \r
2755         * TODO: Add file to keep track of pending tasks.\r
2756 \r
2757         * Object.cs, ValueType.cs: Implement.\r