Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20534b8aaf6acb1f5af384eecaa8046e333ec35c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
2004-06-17  Lluis Sanchez Gual  <lluis@ximian.com>

	* Activator.cs: In CreateInstance(), use Public|Instance if access binding
	  attributes are omitted.

2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs : GetDateTimeFormats(char, IFormatProvider) should also
	  check if the format character is valid.

2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs : AddDays(double) rounds the input.

2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs : Incorrect maxvalue comparison in ToUniversalTime().
	  Fixed ToLocalTime() as well, but it does check range for MinValue.

2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs : Added overflow check in ToUniversalTime() and
	  ToLocalTime(). Fixed bug #60253.

2004-06-16  Sebastien Pouliot  <sebastien@ximian.com>

	* FloatingPointFormatter.cs: Implemented "R" format using Jon Skeet
	source code (with permission). Fix (biggest) part of bug #60110.
	http://www.yoda.arachsys.com/csharp/floatingpoint.html

2004-06-15  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed scale after Round (a different scale is correct 
	from a math point of view but affect the string representation of the
	value). Note: other operations also have scale problems!
	* DecimalFormatter.cs: Fixed FormatGeneral to match Fx 1.1 output.
	* FloatingPointFormatter.cs: Fixed ToString which doesn't use banker's
	rounding (which is the rounding provided by Math.Round). This fix bug
	#60111. The code (new Round methods) should be moved elsewhere (as it
	may also be required elsewhere) post Mono 1.0.

2004-06-15  Gert Driesen <drieseng@users.sourceforge.net>

	* AppDomainSetup.cs: added TODO for serialization
	* ExecutionEngineException.cs: added missing serialization ctor
	* InvalidProgramException.cs: added missing serialization ctor
	* MulticastNotSupportedException.cs: added missing serialization ctor
	* ObsoleteAttribute.cs: fixed serialization compatibility with MS.NET
	* Random.cs: fixed serialization compatibility with MS.NET

2004-06-15  Paolo Molaro <lupus@ximian.com>

	* Type.cs: removed unused (and non-existing) icall type_is_instance.

2004-06-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: use internalGetHome instead of getting "HOME" as
	that variable may not be defined.

2004-06-14  Sebastien Pouliot  <sebastien@ximian.com>

	* TimeSpan.cs: Fixed timespan with large values for hours or minutes
	(overflow is only checked for days but can also occurs in hours and
	minutes which uses Int32 when multiplying). The new results match MS
	implementation.

2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>

	* FloatingPointFormatter.cs : Recognize '%' and '\u2030' and replace
	  them with matching NumberFormatInfo properties.

2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>

	* Double.cs : Use IFormatProvider.GetFormat() instead of literal '-'.
	* FloatingPointFormatter.cs :
	  Use NumberFormatInfo.NegativeSign. This change saves many XSLT test
	  failures.
	  Format Permille pattern (It is undocumented but actually available,
	  and used in xsl:format-number).

2004-06-14  Raja R Harinath  <rharinath@novell.com>

	* Console.cs (Console.Write, Console.WriteLine): Disable __arglist
	version with BOOTSTRAP_WITH_OLDLIB.
	* String.cs (STring.Concat): Likewise.

2004-06-13  Atsushi Enomoto  <atsushi@ximian.com>

	* FloatingPointFormatter.cs :
	  - Don't format more than 15 fraction digits. Don't report to Pedro
	    directly (removing the error message with his concent).
	  - When format string starts with '.', it means integral part format 
	    is not specified. Ignore '.' characters after the first
	    appearance. Fixed bug #59890.
	  - 0.0 is formatted only before the third ';' appearance.

2004-06-11  Sebastien Pouliot  <sebastien@ximian.com>

	* DateTime.cs: Added a AddRoundedMilliseconds which use the "old Mono"
	rounding logic which worked for FromOADate (while the newer didn't).
	* TimeSpan.cs: Now throw an OverflowException when the timespan is
	over MaxValue or under MinValue.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* Console.cs (Write, WriteLine): Implemented the varargs versions.

2004-06-11  Martin Baulig  <martin@ximian.com>

	* String.cs (Concat): Implemented the varargs version.

2004-06-10  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Hacked the Parse method to allow the runtime C code to
	decode it properly (i.e. matching MS results). Fixed the Round method
	for negative decimal numbers (moved code from Math.cs).
	* Math.cs: Now use Decimal class for Round(Decimal,int). Required to
	fix a bug when rounding a negative decimal.

2004-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: set the _principal to null when changing the policy.
	* Console.cs: remove ClsCompliant attribute from a method marked as
	internal and added comment.

2004-06-10  Gert Driesen <drieseng@users.sourceforge.net>

	* Delegate.cs: marked protected fields private to match public
	API of MS.NET, marked DynamicInvokeImpl and GetMethodImpl
	protected to fix public API
	* Enum.cs: marked ctor protected to match public API of MS.NET
	* MulticastDelegate.cs: marked DynamicInvokeImpl protected to
	match public API of MS.NET

2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs : Added more common patterns.

2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed banker rounding by calling Math.Round. This won't
	be a performance winner (the actual Math code has a note to wait a
	better Decimal implementation) but it returns the correct results
	(without adding new code in corlib or the runtime). Fix #37744.

2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs :
	  - A bunch of fixes (patch by Steven Brown). Fraction seconds are 
	    now represented as double. Strict token check for 'Z'.
	  - Pattern validity check in GetDateTimeFormats(char).
	  - Fixed pattern "yyyy/M/d HH:mm:ss".

2004-06-09  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed remainder (and optimized some cases not to call 
	unmanaged code). Simplified divide. Removed workaround for bug #59793.
	Fixed GetHashCode to return different result for X and -X.

2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>

	* DateTime.cs :
	  - Now re-checked all common format patterns. They should be tried
	    with both current culture and invariant culture. Since '/' covers
	    '-', removed extraneous patterns. Added more common patterns
	    such as "yyyy-MM-dd" and X509Certificate pattern (it is valid
	    only after NET_1_1). Commented out 1 character format patterns.
	  - The format patterns we should try should not be obtained by
	    GetAllDateTimePatterns(). Just use 'd', 'D', 't', 'T', ... (one
	    character patterns), to handle UTC correctly. Examined patterns
	    are changed, to 1) common patterns with specified (or current)
	    culture, 2) common patterns with invariant, 3) The above "one
	    character patterns" with specified (or current) culture.
	  - When trying to parse some kind of patterns such as RFC1123, 
	    always use invariant DateTimeFormatInfo so that they can avoid
	    parsing with culture-dependent calendar.
	  - Check "GMT" only when doing Parse(). Don't it when ParseExact().
	  - Removed extraneous '-' case. It is not special one.
	  - When ParseExact(), allow only '/' for '/' pattern character.
	  - When Parse(), allow any non-letter & non-number characters.
	  - When pattern is not fully parsed, reject that format.
	  - Added "exact" parameter to some ParseExact().
	  - RFC1123 pattern is (again) now parsed in local time. I regressed
	    some problems in previous fix.

2004-06-08  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed cast to integer types to truncate (not round) the
	value.

2004-06-07  Duncan Mak  <duncan@ximian.com>

	* Exception.cs (Source): This can return null.

2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>

	* DateTime.cs: Fixed FromFileTime for negative values. Fixed 
	constructor to limit range of milliseconds from 0,999. Fixed
	ToType method to work for object, string and DateTime.

2004-06-07  Sebastien Pouliot  <sebastien@ximian.com>

	* DateTime.cs: Fixed OLE Automation date conversions: timezone 
	insensitive, wrong exception in FromOADate, handling of Min/Max 
	values, negative doubles where integer part is negative but 
	decimals are positive! Charming format ;-)

2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>

	* String.cs: Fixed Join in case separator parameter is null.
	* TimeSpan.cs: Cache format errors during parsing and throw 
	FormatException only if there was no overflow.

2004-06-06  Gert Driesen <drieseng@users.sourceforge.net>

	* MonoCustomAttrs.cs: fixed issue where an empty array was 
	returned when GetCustomAttributes was invoked with null
	attribute type and there was only one result

2004-06-06  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed ToString(String.Empty) to default ("G").
	* Int16.cs: Fixed ToString(String.Empty) to default ("G").
	* Int32.cs: Fixed ToString(String.Empty) to default ("G").
	* Int64.cs: Fixed ToString(String.Empty) to default ("G").
	* SByte.cs: Fixed ToString(String.Empty) to default ("G").
	* UInt16.cs: Fixed ToString(String.Empty) to default ("G").
	* UInt32.cs: Fixed ToString(String.Empty) to default ("G").
	* UInt64.cs: Fixed ToString(String.Empty) to default ("G").

2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>

	* Convert.cs: Fixed the convertion of negative integers (byte, short, 
	int and long) into string in a specific base (2, 8, 10 or 16).

2004-06-04  Sebastien Pouliot  <sebastien@ximian.com>

	* Math.cs: Fixed IEEERemainder to return -0 (0x8000000000000000) when
	the dividend is negative and the result is 0 (remainder).

2004-06-03  Sebastien Pouliot  <sebastien@ximian.com>

	* Delegate.cs: Fix the NullReferenceException in Combine(Delegate[]).

2004-06-02  Sebastien Pouliot  <sebastien@ximian.com>

	* TimeSpan.cs: Fixed overflow issues when delaing with big (days) time
	spans. Fixed parsing when only days are presents in the string (which
	should be illegal according to the documentation but is supported).

2004-06-01  Sebastien Pouliot  <sebastien@ximian.com>

	* TimeSpan.cs: Fixed exceptions in FromXXX methods as they are 
	somewhat different from the documentation.

2004-06-01  Gert Driesen <drieseng@users.sourceforge.net>

	* Type.cs: added missing attributes on InvokeMember

2004-06-01  Miguel de Icaza  <miguel@ximian.com>

	* String.cs: Flag concat with four arguments internal. 

2004-05-31  Sebastien Pouliot  <sebastien@ximian.com>

	* Array.cs: Fixed legal case where value is null.
	* Byte.cs: Fixed ToString when format is an empty string (use "G").
	* Guid.cs: Renamed private fields (and changed some to signed) to 
	match MS implementation and allow serialization to work. Fix 
	bug #59113.

2004-05-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: adjust milliseconds for fraction specifier ('f').

2004-05-30  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: Remove *again* the version of WriteLine with four
	arguments;  That should *not* be added.  

	Flag it as internal as people migrate their code.

2004-05-29  Sebastien Pouliot  <sebastien@ximian.com>

	* Convert.cs: Fixed ToSByte(string,IFormatProvider) to throw 
	ArgumentNullException (only case, all other returns 0). Fixed exception
	reporting for hex prefix only strings. Fixed ChangeTo where null could
	be misinterpreted between null and Empty.

2004-05-28  Sebastien Pouliot  <sebastien@ximian.com>

	* Convert.cs: Fixed integer parsing for special cases (0x, 0X for base
	16), non-base 10 negative numbers ... see new unit tests. Fixed the 
	case when we parse Int64.MinValue (positive doesn't fit a signed long).

2004-05-28  Jackson Harper  <jackson@ximian.com>

	* Environment.cs: Increment version number.
	
2004-05-28  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs (Load): Try loading from assemblyRef.CodeBase if exists.
	Fixes #59189.

2004-05-28  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : I reverted my fix by accident :(

2004-05-28  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs :
	  - In ToString(), Don't use culture-dependent daynames to format
	    Universal/RFC1123 date/time. Also, use FullDateTimePattern for 'U'.
	  - Fixed GetDateTimeFormats () that generated incorrect 'U' value 
	    (since the format string is the same as 'F').

2004-05-28  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : don't adjust utc value in ToString(). It must output
	  the same time value, just adding 'Z' for UTC.

2004-05-28  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : in 'Z' case, remove the 'Z' char from input before
	  proceeding.

2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: InitAppDomainSetup is not needed now.

2004-05-27  Sebastien Pouliot  <sebastien@ximian.com>

	* Byte.cs: Fixed parsing for "-0" which is valid for unsigned types.
	* Convert.cs: Convert with a base parameter cannot parse negative 
	string numbers, even "-0".
	* UInt16.cs: Fixed parsing for "-0" which is valid for unsigned types.
	* UInt32.cs: Fixed parsing for "-0" which is valid for unsigned types.
	* UInt64.cs: Fixed parsing for "-0" which is valid for unsigned types.

2004-05-27  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : 
	  - Added "yyyy/MM/dd HH:mm:ss 'GMT'" and "yyyy-MM-dd HH:mm:ss 'GMT'"
	    to common formats (yes, I know it is nothing more than hack)
	  - Fixed some GetDateTimeFormats() that just returned patterns.
	  - For InvariantCulture, now try both supported formats and our
	    predefined formats.
	  - It was accepting incorrectly extraneous characters. That caused
	    some UTC/non-UTC bug.
	  - RFC1123 string should return universal time. Uncomment again (the
	    problem should went away because of the extra characters fix above.

	    With some of the changes above, fixed bug #47720.

2004-05-27  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : quick revert 'Z' support for certificate verifications.

2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>

	* Array.cs: Removed duplicate condition if LastIndexOf.

2004-05-26  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs :
	  - Added "yyyy-MM-dd HH:mm:ss" to "compatible patterns".
	    (Fixed bug #58938.)
	  - As a quick remedy to accept more patterns, Parse() now also tries
	    InvariantInfo patterns (this is because we have no more than one
	    pattern for each pattern component.)
	  - In _DoParse(), 'Z' should not be read as timezone specifier. Some
	    culture uses 'Z' as AM/PM designer, and it should be recognized as
	    part of the UTCpattern (if it actually UTC pattern for the culture
	    contains 'Z').

2004-05-26  Gert Driesen (drieseng@users.sourceforge.net)

	* MonoCustomAttrs.cs: Fixed issue with AllowMultiple, as MS
	seems to allow multiple attributes with AllowMultiple at
	runtime.

2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>

	* Byte.cs: Throw an OverflowException for negative numbers.
	* Convert.cs: Accept 0x and 0X as prefix when parsing base16 strings.
	* Environment.cs: Bumped mono_corlib_version to 20 (rng interface).

2004-05-25  Sebastien Pouliot  <sebastien@ximian.com>

	* Array.cs: Fixed possible integer overflow.
	* BitConverter.cs: Fixed a possible integer overflow in ToString.
	* Guid.cs: Added an internal method to create a random Guid without
	using CryptoConfig (which is heavy on first use). This is only used
	in S.R.E.ModuleBuilder to speedup MCS compilation.
	* String.cs: Fixed reported exception for PadLeft|Right. Fixed 
	possible integer overflow in methods that takes index and count
	as parameters.

2004-05-25  Zoltan Varga  <vargaz@freemail.hu>

	* String.cs: Add new Strcpy icalls which take a char array as 
	parameter.

2004-05-25  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : added more invariant format patterns. This should
	  really fix bug #57656.

2004-05-25 14:14 CET Patrik Torstensson	<totte@hiddenpeaks.com>

	* BitConverter.cs (ToBoolean): Return true or false instead
	of unsafe returing byte as bool. Fixes bug #58874.

2004-05-25  Atsushi Enomoto <atsushi@ximian.com>

	* DateTime.cs : In ToString(string, IFormatProvider), use "G" if
	  string format argument is null.

2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>

	* Version.cs: Rename of data fields to match those in Microsoft.NET.
	  Patch by PAF@design.ru.

2004-05-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: allow double quotes in the formats. Don't set
	next_not_digit to true in presence of single or double quotes. Patch by
	Martin Probst.

2004-05-24  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomainSetup.cs (InitAppDomainSetup): This one returns void.

2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>

	* Array.cs: Fixed exception when we try to Clear outside bounds.
	* Boolean.cs: Fixed Equals for True!=True (see bugzilla #58874).
	* BitConverter.cs: Fixed negative index and integer overflow in
	To... methods.
	* Buffer.cs: Fixed integer overflow in BlockCopy.

2004-05-22  Sebastien Pouliot  <sebastien@ximian.com>

	* Array.cs: Clear can now work on multidimentional arrays.
	* IntPtr.cs: We now only accept 32bits values in the long constructor
	unless we're on a 64 bits machine.
	* UIntPtr.cs: We now only accept 32bits unsigned values in the ulong 
	constructor unless we're on a 64 bits machine.

2004-05-22  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: The file was mostly in DOS endings already, for the
	sake of consistency, converted it all to DOS endings.
	(ToType): When value is null, immediately return null and don't
	ever throw a NullReferenceException. When conversionType is null,
	throw an InvalidCastException. Give a better error message when
	attempting to convert to a DBNull as well.

2004-05-21  Sebastien Pouliot  <sebastien@ximian.com>

	* Decimal.cs: Fixed To... methods that needs to trunk the integer part
	of Decimal (and not use the banker's rounding like Convert.To...).
	* Single.cs: Fixed CompareTo and Equals (copied fix from Double) wrt
	to NaN compares (see new unit tests).

2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>

	* Convert.cs: Added checks for integer overflow for From|ToBase64Char.
	Also fixed the case where wide (16 bits) characters were converted to 
	bytes.

2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)

        * ThreadStaticAttribute.cs
        * ContextStaticAttribute.cs
        * FlagsAttribute.cs
        * ObsoleteAttribute.cs : now that Inherited is false by
        default on AttributeUsageAttribute (as it should be) we
        need to explicitly set Inherited to false for those
        attributes should it be be false.

2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)

        * AttributeUsageAttribute.cs: Inherited property should be
        true by defaultrs.cs: respect Inherited property, and

2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)

	* MonoCustomAttrs.cs: respect Inherited property, and
	AllowMultiple property of a CustomAttribute. This fixes
	a major issue we had with respect to custom attributes.

2004-05-19  Gert Driesen (drieseng@users.sourceforge.net)

	* MonoType.cs: throw ArgumentNullException when type parameter in
	GetCustomAttributes(Type, bool) is null

2004-05-18  Sebastien Pouliot  <sebastien@ximian.com>

	* Buffer.cs: Added checks for null source and destination. Fix failing
	CryptoStream unit test.
	* Guid.cs: Fixed thread-safety issue. Simplified implementation to use
	pseudo-random numbers to generate GUIDs (as per section 3.4 of the 
	spec). This removes the TODO to get the computer MAC address and
	the chances to get a duplicate GUID (across different machines).

2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TimeSpan.cs: Only catch expected exceptions, if we get other exceptions
	  than OverflowExceptions then something went wrong internally

2004-05-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Char.cs: Fix long standing bug with ToLower/ToUpper not being
	  culture - sensitive

2004-05-14  Zoltan Varga  <vargaz@freemail.hu>

	* Buffer.cs: Optimize BlockCopy.

	* Environment.cs: Bump corlib version.

2004-05-14  Atsushi Enomoto <atsushi@ximian.com>

	* __ComObject.cs : This class is not regarded as CLSCompliant by csc.
	  See also bug #58478.

2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: don't throw an exception if dynamic_base has not
	been set. Just return null as MS. Fixes bug #58120.

2004-05-14  Marek Safar  <marek.safar@seznam.cz>

	* Boolean.cs, Byte.cs, Char.cs, DBNull.cs, DateTime.cs,
	  Decimal.cs, Double.cs, Enum.cs, Int16.cs, Int32.cs,
	  Int64.cs, IntegerFormatter.cs, SByte.cs, Single.cs,
	  String.cs, UInt16.cs, UInt32.cs, UInt64.cs: Removed
	  useless [CLSCompliant (false)]


2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>

	* __ComObject.cs: To please corcompare (no implementation).

2004-05-13  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump corlib version.

2004-05-13  Sebastien Pouliot  <sebastien@ximian.com>

	* Environement.cs: Removed two security attributes for CurrentDirectory
	that weren't documented (and anyway we don't support them).

2004-05-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Char.cs: Fix exceptions

2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>

	* MissingMemberException.cs: Fix in serialization constructor.

2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: GetGacPath return value is resolved at runtime on
	windows.

2004-05-07  Sebastien Pouliot  <sebastien@ximian.com>
 
	* Convert.cs: ToBase64CharArray method was depending on a bug in 
	S.S.C.ToBase64Transform class to work. Added an internal method to 
	provide the same functionality (multiple block processing).

2004-05-06  Jackson Harper  <jackson@ximian.com>

	* Environment.cs: Make $HOME the personal directory.

2004-05-06  Sebastien Pouliot  <sebastien@ximian.com>
 
	* Convert.cs: ToBase64String method was depending on a bug in 
	S.S.C.ToBase64Transform class to work. Added an internal method to 
	provide the same functionality (multiple block processing).

2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
 
 	* Environment.cs: Completed OSVersion property.
 	* Version.cs: Added internal CreateFromString() to "try" to build the
 	best version number form the specified string.
 
2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TimeSpan.cs: Redid a lot of stuff in TimeSpan from scratch.
	  Fixes several potential bugs and makes things way faster.

2004-05-01  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TimeSpan.cs: Formatting changes

2004-04-29 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Activator.cs: change _flags to a const.
	* IntegerFormatter.cs: make tables readonly.
	* Convert.cs: tables readonly
	* DateTime.cs: ditto.
	* IntPtr.cs: avoid a cctor.

2004-04-29  Jackson Harper  <jackson@ximian.com>

	* MonoType.cs: 
	* Type.cs: NET_2_0 now instead of 1_2. 
	
2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: implemented GetLogicalDrives.

2004-04-28  Miguel de Icaza  <miguel@ximian.com>

	* Applied patch from Atsushi Enomoto that allows Synchronized
	writers to have a `dont close' flag, this fixes 52094

2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>

	* MonoCustomAttrs.cs, MonoType.cs: Property.GetGetMethod() does not
	return the method if it is private (it did until now because of a
	bug). Make sure it works as it worked before the fix.
	* Type.cs: Implemented FilterAttribute delegate.

2004-04-28  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IntegerFormatter.cs: Prevent the use of the explicit static constuctor

2004-04-27  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IntegerFormatter.cs: Made functions internal (needed by other patches)

2004-04-27  Lluis Sanchez Gual  <lluis@ximian.com>

	* DateTime.cs: TODO cleaning.
	* Delegate.cs: GetObjectData should be virtual.
	* IntegerFormatter.cs: Method factorization. I don't want to fix bugs in
	  30 methods almost identical.
	* MulticastDelegate.cs: Implemented GetObjectData.
	
2004-04-26  Jackson Harper  <jackson@ximian.com>

	* Environment.cs: Things going bump in the night.

2004-04-25  Miguel de Icaza  <miguel@ximian.com>

	* Convert.cs (toBase64Transform): Make private.

2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Convert.cs:
	* Decimal.cs:
	* DecimalFormatter.cs:
	* FloatingPointFormatter.cs: Call invariant Char functions
	* Guid.cs: Call invariant Char and String functions
	* String.cs: Call invariant Char functions

2004-04-25  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* String.cs: Refactored the Invariant ToXXX into its own internal methods
	  so they are directly callable within corlib (can prevent early
	  construction of CultureInfo, InvariantCulture and related classes)

2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* String.cs: Managed impl. of Invariant parts of ToLower, ToUpper
	* Char.cs: Managed impl. of Invariant parts of ToLower, ToUpper

2004-04-24  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* String.cs: Check for null values

2004-04-23  Peter Bartok <pbartok@novell.com>

	* Environment.cs: GetLogicalDrives now returns "/" instead of null. Gonzalo
	  will do a better fix in the future, but this way apps can at least use it.

2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>

	* Environment.cs: Better support for GetFolderPath (same results as MS 
	  on Windows).

2004-04-22  Lluis Sanchez Gual  <lluis@ximian.com>

	* Activator.cs: Removed TODOs for finished methods.
	* AppDomainSetup.cs: When setting a relative path to ApplicationBase, it
	  must be relative to the current directory, not the temp directory.
	  Implemented DynamicBase.
	* Convert.cs: No need to create a ToBase64Transform instance at every call
	  to ToBase64CharArray.
	* DateTime.cs: Implemented missing methods FromFileTimeUtc and 
	  ToFileTimeUtc.
	* Decimal.cs: Implemented FromOACurrency and ToOACurrency.
	* Delegate.cs: Removed class TODO.
	* IntegerFormatter.cs: Use Char.IsLetter and Char.IsDigit instead of ad-hoc
	  methods.
	* Type.cs: Removed TODOs for things already implemented.
	
2004-04-21  Lluis Sanchez Gual  <lluis@ximian.com>

	* Char.cs: Implemented culture-dependent ToLower and ToUpper methods.
	* MulticastDelegate.cs: Removed unused code.

2004-04-19  Lluis Sanchez Gual  <lluis@ximian.com>

	* AppDomain.cs: Implemented DynamicDirectory and SetDynamicBase.
	* Array.cs: Removed some TODOs in CreateInstance and IndexOf.
	* BadImageFormatException.cs: TODO reformat.
	* DateTime.cs: Implemented GetDateTimeFormats and GetDateTimeFormats.
	* DelegateSerializationHolder.cs: Made class internal.
	* Enum.cs: Removed TODO for localization, since this is something that has
	  to be done for all classes.
	* Environment.cs: Removed TODO.
	* Exception.cs: Changed ToString to use StringBuilder.
	* MonoDummy.cs: Made class internal.
	* UnitySerializationHolder.cs: Added support for modules.

2004-04-16  David Sheldon <dave-mono@earth.li>

	* DecimalFormatter.cs: Don't append a decimal point after the
	  end of a number. ((decimal)1).ToString("P0") should be "100 %", not
	  "100. %"

2004-04-09  Miguel de Icaza  <miguel@ximian.com>

	* OutOfMemoryException.cs: Removed the call to Locale.GetText from
	  this.

2004-04-10  Gert Driesen (drieseng@users.sourceforge.net)

   	* MonoDummy.cs: added MonoTODO to make sure we remove this class
	  when its no longer needed

2004-04-09  David Sheldon <dave-mono@earth.li>

	* Convert.cs: Allow + signs in strings for ToInt32, and
	  - if it is base 10.

2004-04-08  Atsushi Enomoto  <atsushi@ximian.com>

	* Nullable.cs : usingdecl should also be conditional.

2004-04-07  Martin Baulig  <martin@ximian.com>

	* Nullable.cs: New file.

2004-04-07  Martin Baulig  <martin@ximian.com>

	* Type.cs (Type.GetGenericArguments): Make this abstract.

2004-04-07  Jackson Harper  <jackson@ximian.com>

	* Environment.cs: Increase corlib version number.
	
2004-04-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs:
	(ExpandEnvironmentVariables): on windows, env. vars. are case
	insensitive.

2004-04-06  Sebastien Pouliot  <sebastien@ximian.com>

	* AppDomain.cs: Added static to [ThreadStatic] _principal field. 
	Removed	[ThreadStatic] for _principalPolicy (not required).

2004-04-06  Miguel de Icaza  <miguel@ximian.com>

	* Guid.cs: Flag as Sequential.

2004-04-02  Dick Porter  <dick@ximian.com>

	* String.cs: More sanity checks in Replace().  Fixes bug 55822.

2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>

	* Environment.cs: Implement ExpandEnvironmentVariables static method.
	Now call the runtime to get the username (fix #56144).

2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: AssemblyQualifiedName now displays culture, version...
	Fixes bug #56341.

2004-03-29  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: If we fail to open stdin/stdout/stderr, create
	readers with a NullStream.  This can happen if our caller does not
	setup stdin/stoud/stderr file handles.  #56158 exposed this, but
	it will happen elsewhere.

2004-03-29  Lluis Sanchez Gual <lluis@ximian.com>

	* Convert.cs: In ToSingle(double), removed checks for Single.MaxValue
	and Single.MinValue. MS.NET don't do it. This fixes bug #56005.
	* Guid.cs: Added support for guid strings in the "N" and "P" formats in
	  the constructor. This fixes bug #54019.

2004-03-23  Lluis Sanchez Gual <lluis@ximian.com>

	* FloatingPointFormatter.cs: Made the class thread safe. Had to move some
	  internal variables to structures that are moved around methods.
	  Factorized some common formatting code into FormatNumberInternal.
	  
2004-03-23  Dick Porter  <dick@ximian.com>

	* DateTime.cs: Allow any character for DateSeparator when parsing,
	except TimeSeparator, a digit or a letter.  Fixes bug 54047.  Also
	deleted the previous fix for 54721, because this covers it too.
	
2004-03-23  Dick Porter  <dick@ximian.com>

	* DateTime.cs: Check the date string for too many digits when
	parsing.  Fixes bugs 53023 and 53025.

2004-03-22  Dick Porter  <dick@ximian.com>

	* String.cs: Use the provider when converting strings to other
	types.

	* DateTime.cs: Add MM-dd-yyyy to the list of standard date parsing
	formats.  Fixes bug 54721.

2004-03-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Console.cs: Styled, optimized calls
	* CrossAppDomainDelegate.cs: Small header fix
	* Buffer.cs: Style, improve errors
	* BitConverter.cs: Style, improve errors, remove obsolete comment
	* Attribute.cs: Style, improve errors, small fix
	* Array.cs: Style, improve errors, small fix, added TODOs
	* Activator.cs: Style, localized errors, added error checks
	* Byte.cs: Style, localized errors, fixed wrong exception parameters
	* Char.cs: Style
	* Boolean.cs: Style
	* AppDomainSetup.cs: Style
	* AppDomain.cs: Style, implemented two methods (redirect)

2004-03-21  Jackson Harper  <jackson@ximian.com>

	* FloatingPointFormatter.cs: Set precision from number format info
	when it is not specified. This fixes bug #54983.
	
2004-03-18  Nick Drochak <ndrochak@ieee.org>

	* Math.cs: Use IsNaN() method not "x == NaN".

2004-03-16  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* EntryPointNotFoundException.cs
	* DuplicateWaitObjectException.cs
	* DllNotFoundException.cs
	* DivideByZeroException.cs
	* ContextMarshalException.cs
	* CannotUnloadAppDomainException.cs
	* BadImageFormatException.cs
	* ArrayTypeMismatchException.cs
	* ArithmeticException.cs
	* ArgumentOutOfRangeException.cs
	* ArgumentNullException.cs
	* ArgumentException.cs
	* ApplicationException.cs
	* AppDomainUnloadedException.cs: Added missing HResult overrides

	* BadImageFormatException.cs: Improved/ Fixed implementation

2004-03-15  Sebastien Pouliot  <sebastien@ximian.com>

	* Random.cs: Corrected random value when Next is called with a 
	negative value. Testing indictae that our results aren't exactly the 
	same as MS, we have a +/- 1 (probably rounding errors due to 
	different implementation).

2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: updated corlib version.

2004-03-15  Lluis Sanchez Gual <lluis@ximian.com>

	* Boolean.cs, Byte.cs, Char.cs, Double.cs, Int16.cs, Int32.cs, Int64.cs,
	  SByte.cs, Single.cs, UInt16.cs, UInt32.cs, UInt64.cs: Renamed internal
	  field "value" to "m_value", so it is interoperable with MS.NET when 
	  serializing and deserializing data. Based on the patch from Daniel
	  Keep.

2004-03-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TypeInitializationException.cs
	* SystemException.cs
	* StackOverflowException.cs
	* RankException.cs
	* OverflowExceptionException.cs
	* OutOfMemoryException.cs
	* NullReferenceException.cs
	* NotSupportedException.cs
	* NotFiniteNumberException.cs
	* InvalidOperationException.cs
	* InvalidCastException.cs
	* IndexOutOfRangeException.cs
	* FormatException.cs
	* ExecutionEngineException.cs: improved parameter names

2004-03-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Enum.cs
	* EntryPointNotFoundException.cs
	* DuplicateWaitObjectException.cs
	* DoubleFormatter.cs
	* DllNotFoundException.cs
	* DivideByZeroException.cs
	* DelegateSerializationHolder.cs
	* Delegate.cs
	* DBNull.cs
	* ContextStaticAttribute.cs
	* ContextMarshalException.cs
	* ContextBoundObject.cs
	* CLSCompliantAttribute.cs
	* CharEnumerator.cs
	* CannotUnloadAppDomainException.cs
	* BadImageFormatException.cs
	* AttributeUsageAttribute.cs
	* AttributeTargets.cs
	* AsyncCallback.cs
	* AssemblyLoadEventHandler.cs
	* AssemblyLoadEventArgs.cs
	* ArrayTypeMismatchException.cs
	* ArithmeticException.cs
	* ArgumentOutOfRangeException.cs
	* ArgumentNullException.cs
	* ArgumentException.cs
	* ArgIterator.cs
	* ApplicationException.cs
	* AppDomainUnloadedException.cs
	* AppDomain.cs: Mono styled, fixed exceptions/ locales
	  removed excess usings

2004-03-10  Sebastien Pouliot  <sebastien@ximian.com>

	* Convert.cs: FromBase64 now ignore some characters (tab, LF, CR and
	spaces) which fixed #54939. Changed the way that the length is 
	validated (multiple of 4) because the ignored characters must not be
	included in the count.

2004-03-10  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* String.cs: Monostyled

2004-03-09  Jackson Harper  <jackson@ximian.com>

	* Char.cs: Only use a byte for numeric data.
	
2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TypedReference.cs: Added missing Attributes
	* ParamArrayAttribute.cs: Small style fix
	* OperatingSystem.cs: Added .Net 1.1 member

2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* FieldAccessException.cs
	* FormatException.cs
	* InvalidCastException.cs
	* InvalidOperationException.cs
	* MemberAccessException.cs
	* MethodAccessException.cs
	* MissingFieldException.cs: Locale strings
	* MissingMemberException.cs: Locale strings
	* MissingMethodException.cs: Locale strings
	* NotFiniteNumberException.cs
	* NotImplementedException.cs
	* NotSupportedException.cs
	* NullReferenceException.cs
	* ObjectDisposedException.cs
	* OutOfMemoryException.cs
	* OverflowExceptionException.cs
	* PlatformNotSupportedException.cs
	* RankException.cs: Added missing HResult overrides

2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* RuntimeTypeHandle.cs
	* RuntimeMethodHandle.cs
	* RuntimeFieldHandle.cs: Implemented serialization (partially untested)

2004-03-09  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* EventArgs.cs
	* Exception.cs
	* ExecutionEngineException.cs
	* FieldAccessException.cs
	* FormatException.cs
	* GC.cs
	* Guid.cs
	* IndexOutOfRangeException.cs
	* IntPtr.cs
	* InvalidCastException.cs
	* InvalidOperationException.cs
	* InvalidProgramException.cs
	* IServiceProvider.cs
	* LoaderOptimization.cs
	* LoaderOptimizationAttribute.cs
	* MarshalByRefObject.cs
	* Math.cs
	* MemberAccessException.cs
	* MethodAccessException.cs
	* MissingFieldException.cs
	* MissingMemberException.cs
	* MissingMethodException.cs
	* MultiCastDelegate.cs
	* MulticastNotSupportedException.cs
	* NonSerializedAttribute.cs
	* NotFiniteNumberException.cs
	* NotImplementedException.cs
	* NotSupportedException.cs
	* NullReferenceException.cs
	* ObjectDisposedException.cs
	* ObsoleteAttribute.cs
	* OperatingSystem.cs
	* OutOfMemoryException.cs
	* OverflowExceptionException.cs
	* PlatformID.cs
	* PlatformNotSupportedException.cs
	* Random.cs
	* RankException.cs
	* ResolveEventArgs.cs
	* ResolveEventHandler.cs
	* RuntimeFieldHandle.cs
	* RuntimeMethodHandle.cs
	* RuntimeTypeHandle.cs: Mono styled, fixed exceptions/ locales
	  removed excess usings

2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* SystemException.cs: Exceptions set the HResult
	* TypeLoadException.cs: Exceptions set the HResult, fixed wrong exception usage
	* SByte.cs: Implemented two missing methods, fix wrong parameters for ArgumentNullException

2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* TypedReference.cs
	* TypeLoadException.cs
	* TypeInitializationException.cs
	* TypeCode.cs
	* TimeZone.cs
	* ThreadStaticAttribute.cs
	* SystemException.cs
	* STAThreadAttribute.cs
	* StackOverflowException.cs
	* SingleFormatter.cs
	* Single.cs
	* SerializableAttribute.cs: Mono styled, fixed exceptions/ locales
	  removed excess usings

2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* UnauthorizedAccessException.cs: Exceptions set the HResult
	* UInt64.cs: Implemented two missing methods
	* UInt32.cs: Fix wrong parameters for ArgumentNullException, simpler convert
	* UInt16.cs: Fix wrong parameters for ArgumentNullException, simpler convert

2004-03-08  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* WeakReference.cs
	* Void.cs
	* Version.cs
	* ValueType.cs
	* UnitySerializationHolder.cs
	* UnhandledExceptionEventHandler.cs
	* UnauthorizedAccessException.cs
	* UIntPtr.cs
	* UInt64.cs
	* UInt32.cs
	* UInt16.cs: Mono styled, Locale.GetText fixes, msg fixes

2004-03-04  Lluis Sanchez Gual <lluis@ximian.com>

	* Environment.cs: Bump corlib version.

2004-03-04  Jackson Harper  <jackson@ximian.com>

	* Char.cs: New managed implementation. Modified patch by Andreas Nahr.
	
2004-02-27  Lluis Sanchez Gual <lluis@ximian.com>

	* String.cs: Concat() fixed crash when one of the arguments is an object
	  whose ToString() method returns null.
	* TypeLoadException.cs: Added some serialization fiels, needed for
	  compatibility with MS.NET.

2004-02-23 Ben Maurer  <bmaurer@users.sourceforge.net>

	* String.cs (Equals): Speed up this method by avoiding Array
	 Bounds Checks and by comparing by 32 bit words rather than 16 bit chars.

	This gives between 0x (for 1 char) and >2x (for large strings)
	factor of improvement.

	A big thanks to Miguel, who suggested the integer compares.

2004-02-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: use the binder in GetPropertyImpl.

2004-02-22  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* Math.cs: MonoStyled, replaced space with tabs,
	  speedup of some methods by avoiding method calls

2004-02-18  Atsushi Enomoto  <atsushi@ximian.com>

	* Char.cs : optimized IsSeparator(), IsWhiteSpace() and IsDigit().
	  (Moved from InternalCall to Managed code).

2004-02-17  Martin Baulig  <martin@ximian.com>

	* MonoType.cs (GetConstructors): Renamed the interncall to
	GetConstructors_internal(), made it internal and added a `Type
	reflected_type' argument to it.
	(GetEvents, GetFields): Likewise.
	(GetMethodsByName): Added `Type reflected_type' argument.
	(GetPropertiesByName): Likewise.

2004-02-16  Jackson Harper  <jackson@ximian.com>

	* FloatingPointFormater.cs: Allow precision to be up to the number
	of decimals without rounding.
	
2004-02-14  Zoltan Varga  <vargaz@freemail.hu>

	* Delegate.cs (Equals): Do not compare method_ptr, since it might
	point to a trampoline.

2004-02-12  Jackson Harper  <jackson@ximian.com>

	* AppDomainSetup.cs: If relative paths are used they should be
	rooted in the temp directory.
	
2004-02-11  Marek Safar  <marek.safar@seznam.cz>

        * Type.cs (FilterNameIgnoreCase_impl): Added extra check for speedup.

2004-02-10  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs (Load): Check that assemblyRef.Name is not empty, to
	avoid an assert in the runtime.

2004-02-08  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToType): Always let a Convert.ChangeType call
	succeed if the source object is already of the destination type.

	Patch by Ian MacLean (ianm@activestate.com).

2004-02-05  Sebastien Pouliot  <sebastien@ximian.com>

	* AppDomain.cs: Implemented SetPrincipalPolicy and SetThreadPrincipal.

2004-02-02  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump corlib version.

2004-02-02  Sebastien Pouliot  <sebastien@ximian.ca>

	* DateTime.cs: Corrected support for "Z" in the mask (Parse). This
	fix bug #53461.

2004-01-27  Sebastien Pouliot  <spouliot@videotron.ca>

	* Exception.cs: Changed ToString to remove the \n when no stack trace
	is present (which fixed a unit test for SecurityException). Changed
	all \n to Environment.NewLine.

2004-01-27  Lluis Sanchez Gual <lluis@ximian.com>

	* ContextBoundObject.cs: Removed TODO.

2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TimeSpan.cs: fixed bug #52075. Days (int) don't rely on TotalDays
	(double), which might round up.

2004-01-19  Jackson Harper <jackson@ximian.com>

	* FloatingPointFormatter.cs: Use the default decimal digits count
	if they are not specified. This fixes bug #52927.
	
2004-01-19  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump version number.

2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>

	* Type.cs: Added internal call for IsInstanceOfType. The old implementation
	uses IsAssignableFrom(o.GetType()), which is not always valid for 
	transparent proxies (because GetType will not return the type of the remote
	object if its assembly is not present).

2004-01-18  David Sheldon <dave-mono@earth.li>

  * FloatingPointFormatter.cs: Skip the decimal point if we have an 
    integer mantassa. So: 1E+15, rather than 1.E+15.

2004-01-18  David Sheldon <dave-mono@earth.li>

	* Array.cs (GetValue/SetValue): Throw NullRef exception like .NET 1.1, 
	even though docs say it should be an ArgumentNull. Two test cases now
  pass. See also nickd's commit of 2003-12-24.

2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: increased corlib version.

2004-01-14  Lluis Sanchez Gual <lluis@ximian.com>

	* MonoCustomAttrs.cs: Removed attribute cache. Attribute instances can't
	be reused because they could be modified. This fixes bug #52655.

2004-01-12  Patrik Torstensson

	* Environment.cs: Bump corlib version number due to new StringBuilder
	
	* String.cs: New internal method to support the new StringBuilder that
	uses the string as a buffer (until ToString is called)

2004-01-12  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump corlib version number for real this time.
	
	* AppDomain.cs (LoadAssembly): Pass the assembly name as a string to
	the runtime, so it can take into account the Culture etc.

	* Environment.cs: Bump corlib version number.
	
2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: GetMethods renamed to GetMethodsByName. It takes a
	new parameter with the method name and a boolean for ignoring case.
	Removed some string comparisons no longer needed.

2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: GetProperties renamed to GetPropetiesByName. It takes a
	new parameter with the property name and a boolean for ignoring case.
	Fixes bug #52753.

2004-01-11  David Sheldon <dave-mono@earth.li>

	* DateTime.cs: Correct processing of formats with multiple '-'s, fixing
	bug 52274.

2004-01-10  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Keep track of type resolve and assembly resolve 
	events in progress to prevent infinite recursion.

2004-01-06  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: Test for UTF-8 being present anywhere on the
	string, also do ToUpper instead of ToLower, which will work even
	around the ICU bug with different locales (#52065), and addresses #52101

2004-01-05  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump version.

2003-12-24 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Type.cs (IsNotPublic): One would normally assume that
	IsNotPublic == !IsPublic, but this is not the case (note to MS,
	make better names ;-). Fixes #52547, `Type.IsNotPublic not 
	correct for Nested types'

2003-12-24  Nick Drochak  <ndrochak@ieee.org>

	* Array.cs (CreateInstance): Throw NullRef exception like .NET 1.1, 
	even though docs say it should be an ArgumentNull. Sent email to MS
	about this "bug".

2003-12-23  Lluis Sanchez Gual  <lluis@ximian.com>

	* Exception.cs: Several changes to make it compatible with MS.NET (needed
	for remoting interoperability): set a default value for hresult, added 
	initialization of class_name, serialization field RemoteStackTrace must
	be RemoteStackTraceString, added ser. field ExceptionMethod.

	* IndexOutOfRangeException.cs: Added serialization constructor.

2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>

	* Int32 (Parse):
	  Int64 (Parse): Fix overflow checking for AllowHexSpecifier

2003-12-20  Zoltan Varga  <vargaz@freemail.hu>

	* MonoType.cs (GetMethodImpl): Only call FindMostDerivedMatch if the
	user supplied no parameter info, but not when the user supplied an
	empty parameter list. This fixes IKVM.

	* Environment.cs: Bump corlib version.

2003-12-19  Dick Porter  <dick@ximian.com>

	* String.cs: Added Compare shortcut for length==0.

2003-12-17  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Bump corlib version.

2003-12-17  Dick Porter  <dick@ximian.com>

	* String.cs: Fix StartsWith and EndsWith when the argument is the
	empty string.  Fixes bug 52283.

2003-12-16  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs (HasShutdownStarted): Implement.

2003-12-15  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs (HasShutdownStarted): Make this static under NET 1.1.
	
	* Environment.cs: Bump version number.

2003-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: don't bail out with that year out of range error on
	stuff like "MM/dd/yyyy HH:MM:ss".

2003-12-13  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Make it a const instead.
	
	* Environment.cs: Make version field static.

2003-12-10  Zoltan Varga  <vargaz@freemail.hu>

	* Type.cs: Make DefaultBindingFlags protected.

	* Environment.cs: Applied patch from Todd Berman (tbermann@gentoo.org).
	Add new GacPath property + its associated icall.

2003-12-09 Anirban Bhattacharjee <banirban@novell.com>

	* DateTime.cs : Bugs fixed (41845, 51422)
	* MonoType.cs : Exception message changed 

2003-12-08  Martin Baulig  <martin@ximian.com>

	* Type.cs (MakeByRefType): New public method.

2003-12-08  Zoltan Varga  <vargaz@freemail.hu>

	* Environment.cs: Add a version number for the corlib-runtime interface
	to make it easier to diagnose problems resulting from a mismatch 
	between the two.

2003-12-08  Patrik Torstensson   <p@rxc.se>

	* Type.cs (GetMethod): Check type arguments within array
	* MonoType.cs (GetMethodImpl): Handle methods with a new slot
	(same signature but different classes (derived level)

2003-12-07  Zoltan Varga  <vargaz@freemail.hu>

	* Type.cs (MakeArrayType): Add argument checking.

2003-12-06  Dick Porter  <dick@ximian.com>

	* String.cs: Don't use CompareInfo for non-culture-sensitive
	IndexOf and LastIndexOf methods.

2003-12-06  Ravindra  <rkumar@novell.com>

	* DateTime.cs: Made Parse(string, IFormatProvider) method to
	use second argument. Fixed bug #51464.

2003-12-04  Martin Baulig  <martin@ximian.com>

	* Type.cs (Type.MakeArrayType): New public method.

2003-12-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Buffer.cs:
	(BlockCopy): make the exception thrown helpful.

2003-12-03  Dick Porter  <dick@ximian.com>

	* String.cs: Calling Replace on an empty string returns itself.

2003-12-03  Zoltan Varga  <vargaz@freemail.hu>

	* MonoType.cs: Get rid of get_type_info, use a separate icall for
	each property instead.

2003-12-02  Dick Porter  <dick@ximian.com>

	* Decimal.cs: Fix NumberFormatInfo lookup.  Patch by
	Mohammad DAMT (mdamt@cdl2000.com), fixes bug 51443.

2003-12-01  Dick Porter  <dick@ximian.com>

	* String.cs: Make Compare, IndexOf, LastIndexOf, StartsWith,
	Replace, ToLower, ToUpper and Equals use the correct CultureInfo.

2003-11-28  Dick Porter  <dick@ximian.com>

	* Type.cs: 
	* MonoType.cs: 
	* Enum.cs: 
	* Boolean.cs: Do string compares with the Invariant culture.

2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Array.cs: make the enumerator ICloneable

2003-11-27 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Decimal.cs (ToXXX): Call Convert.ToXXX.

2003-11-26  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Applied patch from ztashev@openlinksw.co.uk (Zdravko Tashev). 
	Implement Load(byte[]) methods.

	* BadImageFormatException.cs: Fix ToString.

2003-11-24  Zoltan Varga  <vargaz@freemail.hu>

	* MonoType.cs: Make Standard|HasThis match Standard in GetMethod and
	GetConstructor, as done by MS.

2003-11-19  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* FloatingPointFormatter.cs: Removed some unused variables to prevent csc compiler warnings

2003-11-18  Lluis Sanchez Gual  <lluis@ximian.com>

	* TypeInitializationException.cs: Added missing serialization constructor.

2003-11-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: Don't add an extra '/' at the end of 
	ApplicationBase. The tests pass now with mono.

2003-11-18  Zoltan Varga  <vargaz@freemail.hu>

	* ValueType.cs: New optimized implementation for Equals and GetHashCode.

2003-11-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: use Directory in CurrentDirectory property.
	We were not throwing any exception when setting the directory to an
	invalid path.

2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs:
	* Delegate.cs: implemented 1.1 stuff.

	* Enum.cs:
	* IntPtr.cs: removed extra attribute.
	* PlatformID.cs: added WinCE.

2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ValueType.cs:
	(Equals): compare the fields of structs too.
	(GetHashCode): combine the hash code of all the fields.
	Fixes bug #50901 (will remove the icall in a couple of days).

2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs: fixed Clear for non-zero bounded arrays. Fixes bug #50968.

2003-11-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: handle century when we try to parse 4-digit years and
	only 2 digits are present. Fixes bug #49394.

2003-11-13  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: On utf-8 consoles, use unmarked output.

2003-11-13  Andreas Nahr <ClassDevelopment@A-SoftTech.com>

	* IAppDomainSetup.cs:
	* _AppDomain.cs: 
	* Object.cs:
	* Type.cs: Added missing attribute

2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>

	* Environment.cs: Added internal method for getting the path to 
	machine.config.
	
2003-11-12 Jackson Harper <jackson@ximian.com>

	* Environment.cs: Add MyMusic and MyPictures to the SpecialFolder
	enum. This fixes the SWF build.
	
2003-11-12  Miguel de Icaza  <miguel@ximian.com>

	* PlatformID.cs: Remove Unix platform, we cant expose constants
	that are not in the framework.

	* OperatingSystem.cs: Adjust for the breakage.

	* RuntimeMethodHandle.cs: Fix signature.

	* Double.cs: Fix signature of TryParse.

	* String.cs (Concat (object, object, object, object)): Add missing method.

	* OperatingSystem.cs: Removed Equals, GetHashCode, they were not
	in the .NET Framework.

	* Enum.cs: Hide constructor.  

	Fix ToUint16 to be explicitly implemented.

	* Console.cs: Add couple of extra missing methods (Write and
	WriteLine overloaded)

2003-11-11  Miguel de Icaza  <miguel@ximian.com>

	* AppDomain.cs, Activator.cs: New unimplmented entry points from
	1.1 (Com activation related).
	
	* Exception.cs: Formatting.
	
	* IServiceProvider.cs: Add ComVisible (true).

	* AppDomainSetup.cs: Add a couple more properties from .NET 1.1 

2003-11-03  Lluis Sanchez Gual <lluis@ximian.com>

	* AppDomain.cs: Added some null checks in Load methods. This fixes bug
	  #50356.

2003-11-01  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Make the SetDomain icalls private + call InternalInvoke
	on MonoMethod instead of Invoke.

2003-11-01  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DateTime.cs: Fixed Add* methods handling. Now it works properly
	with extreme values (there is a bug with Overflow and Underflow in
	long type).

2003-10-31  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DateTime.cs: Fixed a few format bugs.

2003-10-31  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs (InternalPushDomainRef): New icalls.

	* AppDomain.cs (InvokeInDomain): New method to execute code in a 
	different appdomain.

2003-10-27  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Fix prototype of InternalIsFinalizingForUnload.

2003-10-25  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs (IsFinalizingForUnload): Implement.

	* AppDomain.cs (Unload): Move the notification of OnUnload listeners
	to unmanaged code.

2003-10-25  Martin Baulig  <martin@ximian.com>

	* MonoType.cs: Don't make this sealed.

2003-10-24  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Add InternalInvokeInDomain[ByID] icalls.

2003-10-24  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DateTime.cs: When handling '-' as a date separator, MS.NET uses
	the same symbol in the parse (not DateTimeFormatInfo.DateSeparator).

2003-10-22  Dick Porter  <dick@ximian.com>

	* DateTime.cs: Handle '-' as a date separator when parsing formats.

2003-10-20  Duncan Mak  <duncan@ximian.com>

	* Delegate.cs (CreateDelegate): Avoid creating an extra Type array
	and merge the two iterations into one.

2003-10-15  Zoltan Varga  <vargaz@freemail.hu>

	* TypedReference.cs: Add new field used by the runtime.

2003-10-15  Martin Baulig  <martin@ximian.com>

	* Type.cs (Type.DeclaringMethod): For a generic method's type
	parameter, return this method - otherwise, return null.

2003-10-14  Martin Baulig  <martin@ximian.com>

	The generics API has changed in the spec since it was added here;
	these modifications make it match the spec again.

	* Type.cs
	(GetGenericParameters): Renamed to `GetGenericArguments'.
	(HasGenericParameters): Renamed to `HasGenericArguments'.
	(HasUnboundGenericParameters): Renamed to `ContainsGenericParameters'.
	(IsGenericTypeDefinition): New property.
	(IsUnboundGenericParameter): Renamed to `IsGenericParameter'.

	* MonoType.cs (ContainsGenericParameters): Implement this here;
	this is no interncall anymore.

2003-10-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Delegate.cs: add the method name to the exception when it cannot be
	bound.
	* Exception.cs: fix nullref in Source.

2003-10-10  Zoltan Varga  <vargaz@freemail.hu>

	* Array.cs: Add argument checking to GetValue and SetValue.

2003-10-09  Miguel de Icaza  <miguel@ximian.com>

	* DateTime.cs: Patch from Chris Turchin: the DateTime.MaxValue
	should not be TimeSpan.MaxValue, because it overflow.  Set this to
	be MAX_VALUE_TICKS

2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoCustomAttrs.cs: from_cache is now thread-safe. Yeah, I got a
	duplicate entry exception.

2003-10-08 Ben Maurer  <bmaurer@users.sourceforge.net>

	* DateTime.cs (ToString): Total rewrite, fixes #49358.

2003-10-03  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Change accessibility of DoTypeResolve to fix build.

2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs:
	(Equals): check that the object is an Enum before comparing the types.

2003-09-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs: reduced xsp allocated memory by 1/2.

2003-09-25  Martin Baulig  <martin@ximian.com>

	* Type.cs (Type.IsGenericTypeDefinition): Removed this method
	since it was identical to GetGenericTypeDefinition().
	(Type.IsGenericInstance): New property.

2003-09-24  Duncan Mak  <duncan@ximian.com>

	* Math.cs (Abs): Fix double Locale.GetText bug reported by
	davejp@volny.cz. This fixes #48788.

2003-09-14  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Add the necessary castings to char
	conversions.

2003-09-13  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Make the method calls more functional
	for protecting the values from different threads (make it more
	thread safe).

2003-09-13  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fix a bug with the negative value of
	count parameter.

2003-09-12  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Applied a lot of improvements in string
	construction, make use of Append/Insert with the "count" parameter.
    Thanks to Ben Maurer.

2003-09-10  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fix a bug with Custm Format.

	* FloatingPointFormatter.cs: Fix a little bug I've introduced the
	last change.

2003-09-10  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* DoubleFormatter.cs: A few optimizations. Now, only one object
	is created to convert all double numbers.

	* SingleFormatter.cs: A few optimizations. Now, only one object
	is created to convert all float numbers.

	* FloatingPointFormatter.cs: Split the "number type parameters" from
	the "numver value and format parameters". The first ones are in the
	constructor and the others are in a method.

2003-09-09  Zoltan Varga  <vargaz@freemail.hu>

	* Array.cs: Added argument checking to some NET_1_1 methods.

2003-09-04  Martin Baulig  <martin@ximian.com>

	* Type.cs (GetGenericTypeDefinition): Make this method virtual.

2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs: added the new overloaded CreateInstance, GetValue, SetValue
	taking 'longs'. All tests pass.

2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Exception.cs: Add ClassInterface attr. Implement TargetSite and
	Source. Remove MonoTODO attributes (class is 100% done). Also
	passes all Rotor tests for Exception!

2003-08-26 Ben Maurer  <bmaurer@users.sourceforge.net>

	* Enum.cs: Remove [MonoTODO]'s that had been completed.

2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs: fixed bug #47802.

2003-08-21 Ben Maurer  <bmaurer@users.sourceforge.net>

	* String.cs: Created method FormatHelper that does formatting,
	using a StringBuilder.

2003-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs: patch by lb@lb.ods.org that fixes bug #47707.

2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Delegate.cs: CreteDelegate (Type, MethodInfo) only supports static
	methods under MS.

2003-08-11  Duncan Mak  <duncan@ximian.com>

	* Environment.cs (Version): Return the same numbers as the MS
	implementation.

2003-08-10  Miguel de Icaza  <miguel@ximian.com>

	* Array.cs: Applied patch from Thong (Tum) Nguyen;  Removed
	replicated tests, and have a routine that does the heavy lifting.

2003-08-08  Lluis Sanchez Gual <lluis@ximian.com>

	* DateTime.cs: Fixed DoParse. It was calling the wrong constructor
	  of DateTime.
	* Environment.cs: return $HOME for ApplicationData folder.

2003-08-04  Duncan Mak  <duncan@ximian.com>

	* FloatingPointFormatter.cs (Normalize): Apply a patch from Aleksey
	Demakov <avd@openlinksw.com> to fix formatting for Big power of 10
	floating point values. This fixes bug #46175.

	* Convert.cs (ToUInt16): Throw an OverflowException correctly, as
	noted by c5n4kh6u02@sneakemail.com in
	http://bugzilla.ximian.com/show_bug.cgi?id=43098.

Sat Aug  2 13:01:46 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>

	* Double.cs: added icall Double.AssertEndianity.

Fri Aug 1 16:47:17 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Type.cs, MonoType.cs: implemented generic-specific methods.

2003-07-29  Miguel de Icaza  <miguel@ximian.com>

	* Buffer.cs: Add new internal MemCopy call.

	Removed the above.

Tue Jul 29 12:13:16 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Type.cs, MonoType.cs, ArgIterator.cs: pass the handles values
	to icalls, to avoid special cases in some call conventions.

2003-07-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: added Serializable attribute.

2003-07-25  Duncan Mak  <duncan@ximian.com>

	* AppDomain.cs (Equals):
	(GetHashCode): Removed because they do not need to be defined
	here.

2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TypeLoadException.cs: removed unused fields. TypeName returns "" if
	cannot even get the type.

2003-07-24  Miguel de Icaza  <miguel@ximian.com>

	* Type.cs: Added generics stubs.

2003-07-23  Duncan Mak  <duncan@ximian.com>

	* Environment.cs (SpecialFolder): Added 'Desktop' and 'MyComputer'
	as values for NET_1_1.
	(GetFolderPath): Return the empty string ("") for values of
	SpecialFolder that have no corresponding equivalents in
	Linux. Return "$HOME/Desktop" for SpecialFolder.DesktopDirectory
	and "$HOME" for SpecialFolder.Personal.

	* IntPtr.cs (GetObjectData): Mark it as an interface
	implementation, instead of a public method.

	* Guid.cs (NewGuid): Remove MonoTODOAttribute.

	* TypeLoadException.cs (GetObjectData):
	Create stubs for the fields that are being serialized.

	* UIntPtr.cs: Removed erroneous CLSCompliantAttributes.

2003-07-23  Lluis Sanchez Gual <lluis@ximian.com>
	
	* Enum.cs: Fixed enum formatting. For flag enums, if one of
	  the flags is unnamed, ToString() returns the integer value.

2003-07-22  Jerome Laban <jlaban@wanadoo.fr>

	* Guid.cs: Fixed ToString (), was producing incorrect string.

2003-07-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: fixed bug #46609.

Thu Jul 17 17:28:27 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: use an icall for IsPrimitiveImpl ().

Thu Jul 17 15:23:17 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Guid.cs: faster ToString ().

2003-07-15  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Few changes for get working Rotor
	tests.

2003-07-13  Zoltan Varga  <vargaz@freemail.hu>

	* Type.cs (IsAssignableFrom): Implement this as an icall since the
	runtime already includes the neccessary logic.

2003-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: remove the "file://" prefix from ApplicationBase
	if it's present and get the full path for non-Uri paths.

2003-07-2  Lluis Sanchez Gual <lluis@ximian.com>

	* DateTime.cs: Fixed formatting of fractions of second.

2003-06-30  Zoltan Varga  <vargaz@freemail.hu>

	* Console.cs: Turn off buffering for the streams returned by
	OpenStandardOutput () and OpenStandardError () if the buffer size is 0.

2003-06-28  Lluis Sanchez Gual <lluis@ximian.com>

	* Random.cs: Changed behavior of Random to match MS.NET. When Next is
	  called with maxvalue==0 or minvalue==maxvalue, MS.NET internally generates
	  a new random number (although it is not needed), while mono did not. 
	  As a result, the sequence of random numbers could be different for the
	  same seed.

Thu Jun 26 16:06:35 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* FloatingPointFormatter.cs: use dec_len2 as default precision.

2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>

	* DateTime.cs: Modified constructor. Check for valid value of TimeSpan must
	  be done after the correspondig UTC offset has been applied.

2003-06-26  Lluis Sanchez Gual <lluis@ximian.com>

	* Object.cs: Object must have the Serializable attribute.
	* DateTime.cs: Fixed _DoParse() so it correctly applies the utc offset
	  to the resulting date. Also fixed _ToString so now correctly formates the
	  UTC offset.

Wed Jun 18 19:22:22 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Enum.cs: fix race in cache (bug#41841).

Wed Jun 18 18:52:11 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* FloatingPointFormatter.cs: if the precision is not specified, use
	the default precision for the data type.

Wed Jun 18 18:11:30 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Array.cs: throw ArgumentOutOfRangeException in Copy if needed
	(patch by tum@veridicus.com (Thong (Tum) Nguyen)).

2003-06-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: don't throw nullref when the return type for a property
	is specified and the property doesn't have a get accessor.

2003-06-10  Duncan Mak  <duncan@ximian.com>

	* Array.cs (CreateInstance): Fixed a typo. It should throw
	ArgumentNullException instead of ArgumentException.

2003-06-09  Duncan Mak  <duncan@ximian.com>

	* Array.cs: Revert the last revert. I fixed it.
	(Sort): Put a try-catch block around qsort, and wrap whatever
	Exception we get into a InvalidOperationException.

2003-06-08 Jackson Harper <jackson@latitudegeo.com>

	* Array.cs: Revert last patch, it broke some other functionality.
		
2003-06-08  Duncan Mak  <duncan@ximian.com>

	* Array.cs: Throw more exceptions. This fixes the errors we see
	from the Rotor testsuite.

	(CreateInstance): Throw ArgumentNullException when the input are
	null. Throw ArgumentOutOfRangeException when bounds + length is
	greater than Int32.MaxValue.
	(LastIndexOf): Throw ArgumentOutOfRangeException if index is outside
	the valid range of indices of array.
	(Sort): Throw InvalidOperationException when comparer is null and
	none of the elements in keys implements IComparable.

2003-06-08  Duncan Mak  <duncan@ximian.com>

	* Array.cs (CreateInstance): Throw a TypeLoadException if the
	Length of the input array 'lengths' is greater than 255 so that we
	won't see the g_assert that is in mono_array_class_get in class.c.

	This fixes bug #44304.

2003-06-05  Nick Drochak  <ndrochak@gol.com>

	* UnitySerializataionHolder.cs: Cleanups according to class status page

Wed Jun 4 16:59:39 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* ArgIterator.cs, TypedReference.cs, RuntimeArgumentHandle.cs,
	RuntimeTypeHandle.cs: implemented the needed stuff to handle
	vararg calls.

2003-06-02  Sebastien Pouliot  <spouliot@videotron.ca>

	* Random.cs: New implementation based on Knuth ran3 to fix #43597.
	See http://www.library.cornell.edu/nr/bookcpdf/c7-1.pdf. Commited
	for Ben Maurer after review and testing.

2003-05-28  Ben Maurer <bmaurer@users.sourceforge.net>
	
	* Array.cs: Added better argument checking to Array.Sort ()
	* DBNull.cs: Made the conversions throw like they do in MS.

2003-05-24  Philip Van Hoof  <me@freax.org>

	* Math.cs: Add the MS.NET 1.1 methods (BigMul, DivRem, DivRem).

2003-05-21  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Take care with the explicit precision
	and round the number to that precision.

	* DoubleFormatter.cs: Adapt to the two level precision (15 - 17).

	* SingleFormatter.cs: Adapt to the two level precision (7 - 8).

2003-05-20  Philip Van Hoof <me@freax.org>

	* DateTime.cs (FromOADate, GetDateTimeFormats, ToOADate):
	Implemented.

2003-05-20  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomainSetup.cs: Added new field which is used to notify the
	runtime that the search path has changed.

2003-05-18  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fixed NullReferenceException bug I've
	introduced the last change I've done.

2003-05-17  Ben Maurer  <bmaurer@users.sourceforge.net>

	* Array.cs: Fixed SyncRoot to behave like MS (return this). Removed 
	MonoTODO from SyncRoot (because fixed) and IsSynchronized (it was
	behaving correctly).
	
2003-05-17  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fixed little format mismatches.

2003-05-16  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fixed "-0" result emited.

2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: Added null argument check in Load().
	* Activator.cs: fixed bug #39926.

2003-05-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: fixed bugs #41522 and #42879.

2003-05-12  Zoltan Varga  <vargaz@freemail.hu>

	* String.cs: Tweak IndexOf and LastIndexOf to match specification and
	undocumented MS behaviour.

2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Activator.cs: applied patch for bug #39926. Thanks to Jean Marc and
	Jaime.

2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs: fixed bug #41411 and another similar problem in
	LastIndexOf (string).

2003-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs: patch by Jean Marc <jean-marc.andre@polymtl.ca> that fixes
	bug #42695.

2003-05-09  Zoltan Varga  <vargaz@freemail.hu>

	* MulticastDelegate.cs (GetInvocationList): Avoid ArrayList 
	construction if the delegate list only has one element.

2003-05-01  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* Environment.cs: Changed the method GetFolderPath because it must
	return at least a directory name (not null).

	* Convert.cs: In ToType, if the destination type is unknown, try to
	cast the value to object (then, the calling method will downcast it
	to the type it wants).

2003-04-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: fixed bug #41522.

Tue Apr 29 13:58:16 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* Enum.cs: protect with the lock also the lookup (bug #41841).

Tue Apr 29 13:24:32 CEST 2003 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: allow a null name if InvokeMember is called with
	BindingFlags.CreateInstance set.

2003-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: reverted my previous patch.

2003-04-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: fixed bug #41841.

2003-04-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs:
	(GetPropertyImpl): handle BindingFlags.IgnoreCase.

2003-04-22  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Little fixes for get the same results
	as MS.NET and show a message when something goes wrong with the
	parser of Custom Formats.

2003-04-22  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (ToString):
	* Single.cs (ToString): Handle case where param is a CultureInfo.

2003-04-18  Zoltan Varga  <vargaz@freemail.hu>

	* Object.cs ValueType.cs: Make the Object::GetHashCode() and 
	ValueType::Equals() icalls static non-virtual, so they can be called
	by the code in RuntimeHelpers.

2003-04-18  Miguel de Icaza  <miguel@ximian.com>

	* Delegate.cs (operator ==): Do not crash if the second argument
	is null.  Bug fix submitted by Juan Cri.

2003-04-18  Eduardo Garcia Cebollero <kiwnix@yahoo.es>

	* Array.cs: Deleted the exception in Array.Initialize(), it looks
	like the method do nothing for C#, is still a MonoTODO until
	we find a compiler that uses that.

2003-04-14  Miguel de Icaza  <miguel@ximian.com>

	* Delegate.cs (Delegate): Seems like a typo, we were checking the
	a field rather than the argument 

	* MonoType.cs: Make GetNestedType an external method implementation.

2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: fixed bug #41294.

2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: fixes bug #40910, part 2.

2003-04-11  Dietmar Maurer  <dietmar@ximian.com>

	* String.cs (Equals): avoid the internal call, code cleanups

2003-04-11  Alan Tam <Tam@SiuLung.com>

	* Convert.cs: fixed bug #41085.

2003-04-10  Lluis Sanchez Gual <lluis@ideary.com>

	* AppDomain.cs: Added internal method for getting process guid.

2003-04-09  Ville Palo <vi64pa@kolumbus.fi>

	* Array.cs: Little fix to compare () method.
	
2003-04-09  Zoltan Varga  <vargaz@freemail.hu>

	* String.cs (Equals): Add trivial optimization.

2003-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: fixed bug #40910.

2003-04-05  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: Make stderr, stdout and stdin use synchronized
	versions of the their readers/writers.

2003-04-04  Dick Porter  <dick@ximian.com>

	* Version.cs: Make operator== and operator!= cope with null
	objects.  Didn't change operator<, operator<=, operator> or
	operator>= because its not meaningful to use those to compare
	against null, and throwing a NullReferenceException is probably
	the best thing to do there anyway.

	Fixes bug 40720.

2003-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: fixed InvalidCastException.

2003-03-30  Zoltan Varga  <vargaz@freemail.hu>

	* Array.cs (Copy): Call FastCopy() earlier to avoid the expensive
	type checks and let it decide whenever a fast copy is possible.

2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs:
	(GetMethodImpl): support BindingFlags.IgnoreCase flag. Fixes bug #40322.

2003-03-25  Zoltan Varga  <vargaz@freemail.hu>

	* Activator.cs (CreateInstance): Call GetConstructor with the right
	arguments so the nonPublic argument is handled correctly.

2003-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs: fixed bug #40123.

2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Fixed some bugs for get the same
	results than MS.NET. Added simple error recovering, now ToString
	will return a general format if there is any exception in the
	process of formatting. This make the library more robust while the
	formatters are refined.

2003-03-16  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* FloatingPointFormatter.cs: Added support for group separators.

2003-03-16  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* Single.cs:
	* Double.cs: Apply changes of .ToString methods.
	* SingleFormatter.cs:
	* DoubleFormatter.cs: Simple wrappers to FloatingPointFormatter.
	* FloatingPointFormatter.cs: New class. Implementation of double and
	single formatters. It is unified now and parametrized with precission
	values.

2003-03-15  Lluis Sanchez Gual <lluis@ideary.com>

	* AppDomain.cs: fixes bugs #39380 and #39331.

2003-03-06  Nick Drochak  <ndrochak@gol.com>

	* TimeSpan.cs (Negate): Throw exception when value is MinValue.

2003-03-04  Dick Porter  <dick@ximian.com>

	* Single.cs:
	* Double.cs: Temporarily reverted the Double and Single ToString()
	change, because it broke nunit.


2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>

	* Double.cs: Changed ToString method. Added NumberFormatInfo support
	with DoubleFormatter class.
	* Single.cs: Changed ToString method. Added NumberFormatInfo support
	with SingleFormatter class.
	* DoubleFormatter.cs: New class with Double formatting functions.
	* SingleFormatter.cs: New class with Single formatting functions.

2003-03-03  Lluis Sanchez Gual <lluis@ideary.com>

	* Activator.cs: Added support for activation using activation attributes.
	* AppDomain.cs: Added internal method to get the default context from the runtime.

2003-02-28  Elan Feingold  <efeingold@mn.rr.com>

	* DateTime.cs: FileTime is expressed in Universal time, and as such must
	be converted before subtracting the magic offset.
	* DateTime.cs: Strings in the format "2003-02-27T10:05:03-11:00" (note
	the timezone at the end) *must* be parsed by DateTime.Parse() for
	compatibility with Microsoft.

2003-02-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Attribute.cs:
	* MonoCustomAttrs.cs: fix for the regression test failure (see bug
	#38238).

	* IntPtr.cs: added serialization .ctor

2003-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: check for null in Unload and changed method name.

2003-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoCustomAttrs.cs: fixed bug #38238.

2003-02-17  Martin Baulig  <martin@ximian.com>

	* Exception.cs (Exception.ToString): Print a newline between the
	exception message and the stack trace.

2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: implemented GetCurrentThreadId ().

2003-02-14  Patrik Torstensson

	* Exception.cs: Fixed message output formating

2003-02-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	(Parse): ignore everything after a \0 (MS parses: "512\0hola" as 512).

2003-02-12  Miguel de Icaza  <miguel@ximian.com>

	* Type.cs: IsClass should return false for Enumerations

2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoCustomAttrs.cs: return the correct array type in the short case.
	Fixes bug #37818.

2003-02-08  Pedro Martíenz Juliá  <yoros@wanadoo.es>

	* Math.cs: Fix a few methods (like Round) and add with comments the
	new methods: BigMul and DivRem that were in ECMA specs.

2003-02-07  Patrik Torstensson

	* Exception.cs: Fixed formating

2003-02-05  Patrik Torstensson

	* AppDomain.cs: Partly fixed the unload method 
	
2003-02-04  Patrik Torstensson

	* AppDomain.cs: Fixed lease issue with appdomain

2003-02-04  Lluis Sanchez Gual <lluis@ideary.com>

	* MarshalByRefObject.cs: Implemented GetLifetimeService() and 
	  InitializeLifetimeService().

2003-02-03  Patrik Torstensson

	* AppDomain.cs: New internalcalls for handling domain/context switches
	* AppDomain.cs (CreateDomain): Return transparant proxy for appdomain object

2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: implemented AppendPrivatePath, ClearPrivatePath
	and ClearShadowCopyPath and fixed GetType ().

	* Attribute.cs: clean up.

	* Console.cs: removed UnixConsoleEncoding. Use Default.

2003-02-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Attribute.cs: fixed all IsDefined overloads. Gotta fix
	GetCustomAttributes later.

2003-01-31  Patrik Torstensson

	* Buffer.cs: Changed access level of BlockCopyInternal

Thu Jan 30 19:54:30 CET 2003 Paolo Molaro <lupus@ximian.com>

	* String.cs, IntegerFormatter.cs: use const where appropriate.

2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoCustomAttrs.cs: fixed GetBase () for Type. Thanks to Zoltan for
	reporting.

2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoCustomAttrs.cs: fixed shortcut in GetCustomAttributes.
	The argument ICustomAttributeProvider can be of other types different
	from Type. Handle it.

2003-01-28  Zoltan Varga  <vargaz@freemail.hu>

	* DateTime.cs: fix FromFileTime so the time returned by 
	File::GetLastModificationTime etc. is in the correct timezone.

2003-01-28  Patrik Torstensson
	* Exception.cs: reverted formating/endline changes (sorry guys)

2003-01-28  Patrik Torstensson

	* MarshalByRefObject.cs: implemented GetObjectIdentity
	* Exception.cs: added support for remote exceptions

2003-01-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: fixed bug #37225.

2003-01-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: Clone the arrays in GetNames and GetValues. Thanks lupus!

2003-01-27  Zoltan Varga  <vargaz@freemail.hu>

	* AppDomain.cs: Added DoTypeResolve method which will be called by
	the runtime to raise TypeResolve events.

2003-01-27  Duncan Mak  <duncan@ximian.com>

	* Enum.cs (ToType): Implement this using Convert.ToType.

2003-01-21  Miguel de Icaza  <miguel@ximian.com>

	* Math.cs: Remove Pow's implementation body as it was wrong.  The
	C code does the right thing.  The code was trying to handle a
	number of cases, and that was incorrect.

2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CharEnumerator.cs: fix to Current by crainaj@hotmail.com. Closes
	bug #37113.

2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: added caching to GetInfo.

2003-01-23  Dick Porter  <dick@ximian.com>

	* Environment.cs (System): Implemented ExitCode

2003-01-23  Zoltan Varga  <vargaz@freemail.hu>

	* Type.cs (IsInstanceOfType): fixed regression caused by the change
	to IsSubclassOf().

2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: re-added lines that were removed in the previous commit.

2003-01-16  Lluis Sanchez Gual <lsg@ctv.es>

	* Type.cs: corrected property IsSerializable. It should always return
	true for enums and delegates
	* MonoType.cs: added serialization support.
	* Delegate.cs: added serialization support.
	* DBNull.cs: added serialization support.
	* UnitySerializationHolder.cs: supports serialization of Assembly,
	MonoType and DBNull.
	* DelegateSerializationHolder.cs: added.

2003-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Exception.cs: changed default message to match MS one.

2003-01-12  Patrik Torstensson <totte@race-x-change.com>

	* String.cs: Fixed bug with CompareOrdinal

2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: implements IFormattable.

2003-01-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: implemented DoCallBack method.
	* MonoType.cs:
	(GetConstructorImpl): when the flag is BindingFlags.Default, set it to
	Public, Instance.

	NUnit2 tests start moving.

2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Activator.cs: fixed bug #36052. Also added checks to avoid trying to
	instantiate an abstract class.

2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs:
	(IsSubclassOf): return false when null. Use != instead of Equals.

2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs: fixed IsSubclassOf. Patch from Zoltan Varga.

Fri Jan 3 20:18:51 CET 2003 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: fixed Namespace property for nested types.

Fri Jan 3 16:18:27 CET 2003 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: create properly typed arrays when returning
	arrays of attributes of a given type.

Fri Jan 3 11:10:14 CET 2003 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: fixed MemberType property for nested types.

2003-01-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs: fixed bug #36209.

2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>

	* Activator.cs: implemented method GetObject.

2002-12-28  Marcus Urban <mathpup@mylinuxisp.com>

	* Activator.cs: Since the documentation indicates the method
	either succeeds or throws one of the listed exceptions, we weren't
	expecting that CreateInstance might be returning null.

	For more information on the bug, see http://bugs.ximian.com/show_bug.cgi?id=36109

2002-12-20 Lluis Sanchez Gual <lsg@ctv.es>

	* MarshalByRefObject.cs: implemented CreateObjRef.

2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: fixed bug #30076.
	* TimeZone.cs: provide the parameter name in a exception.

2002-12-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DecimalFormatter.cs: fixed bug #35560.

Wed Dec 4 16:04:28 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: implemented GetInterfaceMap (needs an updated runtime).

2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Array.cs: use Object.Equals (obj, obj) to compare objects to avoid
	nulls. Fixes #34909.

2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: DoAssemblyResolve now returns when one of the handlers
	returns a non-null assembly.

2002-12-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MulticastDelegate.cs: make GetInvocationList work for more than 1
	delegate.

2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MulticastDelegate.cs: implemented GetInvocationList. I'll check later
	if this is the correct order of invocation.

2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs: changed the signature of internal_from_name. Modified
	the overloads of GetType to use it and check the typeName argument.
	Implemented FindInterfaces.

2002-11-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MarshalByRefObject.cs: undo latest changes. It breaks the build by
	some obscure reasons (try make -f makefile.gnu using a corlib which has
	the modified version).

2002-11-26  Miguel de Icaza  <miguel@ximian.com>

	* String.cs (Concat): Reduce the number of compares required. 

Mon Nov 18 17:54:22 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Activator.cs: throw a MissingMethodException if the default
	constructor is not found in CreateInstance.

2002-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs:
	(Equals (str, str)): use 'as' instead of casting to object.
	(Equals (obj)): check the length of the strings (until now,
	"Hello".Equals ((object) "Hellow World!) was true!).

2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* MonoType.cs: implemented GetEvent (name, flags).

2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: implemented a couple of methods called from the runtime
	to fire AssemblyLoad and AssemblyResolve events.

2002-10-31  Dick Porter  <dick@ximian.com>

	* Environment.cs: MonoIO methods now have an error parameter

2002-10-29  Zoltan Varga  <vargaz@freemail.hu>

	* Enum.cs: Added support for whitespaces in Enum:Parse().

2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs: fixed GetProperty (string, Type []) and removed get_property
	internal call. Closes bug #32992.

2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Exception.cs: display the inner exception, if any, in ToString ().

2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Environment.cs: fixed StackTrace property.

2002-10-16  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (Parse): Then fix the code so that it works too.

2002-10-15  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (Parse): Use unsigned casts to avoid compiler warnings.

2002-10-12  Nick Drochak  <ndrochak@gol.com>

	* IntegerFormatter.cs: Fix compiler warnings.

2002-10-11  Tim Haynes <thaynes@openlinksw.com>

	* Type.cs (GetConstructors): Use the correct flags.

2002-10-09  Nick Drochak  <ndrochak@gol.com>

	* IntegerFormatter.cs: Suppress insignificant leading zeros

Fri Sep 27 15:06:29 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: applied patch by "Si Jingnan"
	<stonewell@21cn.com> to return also derived types.

2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Activator.cs: little fix in CreateInstance (Type, bool).

2002-09-19  Duncan Mak  <duncan@ximian.com>

	* Array.cs (CopyTo): Revert back to 1.40, this is stopping
	I18N/Common from building right now.

2002-09-19  Nick Drochak  <ndrochak@gol.com>

	* Array.cs (CopyTo): Account for Object type and base (primitive) types
	* Type.cs (IsAssignableFrom): return false for a null parameter

2002-09-19  Nick Drochak <ndrochak@gol.com>

	* Array.cs (CopyTo): Check that source type can be cast automatically
	to the destination type.

2002-09-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs: implemented IsAssignableFrom, DefaultBinder and
	GetDefaultMembers.

2002-09-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Char.cs: implemented ToString (char)
	* IntegerFormatter.cs: made it internal.

2002-09-13  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (Format): handle the "d" format for both signed and unsigned
	underlying types.

2002-09-12  Dick Porter  <dick@ximian.com>

	* UIntPtr.cs: Remove the [StructLayout(LayoutKind.Auto)]
	attribute, as there doesn't appear to be any struct
	layout-depending code here (and corcompare says it should be
	LayoutKind.Sequential)

	* Decimal.cs: Stub out missing methods, add
	[DecimalConstantAttribute] to the constant fields (as shown by
	corcompare).

	* LocalDataStoreSlot.cs: 
	* Environment.cs: 
	* Char.cs: 
	* Array.cs: Stub out missing methods.

	* TypedReference.cs: 
	* ArgIterator.cs: Stub out

	* AppDomainSetup.cs: 
	* AppDomain.cs: Stub out missing methods, add missing
	ClassInterface(ClassInterfaceType.None) attribute.

2002-09-12  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (ToString): Throw exception when "X" format is passed in.

Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: implemented Module property.

Wed Sep 11 12:49:51 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs, Type.cs: implemented InvokeMember.

Wed Sep 11 11:06:43 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Delegate.cs: check the type passed to CreateDelegate is a Delegate
	type. Check the method signature matches.

Sat Sep 7 10:16:52 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* RuntimeMethodHandle.cs: implemented GetFunctionPointer().

2002-09-06  Miguel de Icaza  <miguel@ximian.com>

	* Console.cs: Specify an encoder, otherwise we will get the UTF8
	encoder that by default emits the byte markers.

Fri Sep 6 20:14:04 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Delegate.cs: look also for non-public methods until we have the
	security checks in place.

Fri Sep 6 12:20:06 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: consider also the full name in GetInterface.

Fri Sep 6 12:11:28 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: implemented GetMembers, GetConstructorImpl and
	GetMethodImpl using the binder.
	* Type.cs: GetConstructorImpl/GetConstructor fixes.

2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
	* Enum.cs: Get rid of warning CS0162.

2002-09-04  Miguel de Icaza  <miguel@ximian.com>

	* Double.cs, Single.cs, Char.cs, Boolean.cs: Use internal for the
	actual value instead of public.

	* LocalDataStoreSlot.cs: Make constructor internal.

	* Int16.cs, UInt16.cs, Int32.cs, UInt32.cs, Int64.cs, UInt64.cs,
	SByte.cs, Byte.cs, Char.cs: Use internal for the actual value
	instead of public.

2002-09-03  Jonathan Pryor <jonpryor@vt.edu>
	* Enum.cs: Fixed Enum.Format so that the "x" format specifier would work
	           properly.

2002-08-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DateTime.cs: fixed buglet.

Tue Aug 27 16:39:47 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: speedup access to common data.

2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Double.cs: implemented TryParse.

	* Math.cs: PowImpl is now private.

	* MissingFieldException.cs: implemented Message.

	* RuntimeMethodHandle.cs: stubbed GetFunctionPointer.

	* _AppDomain.cs: Uncommented ToString.

2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Type.cs:
	(IsValueTypeImpl): it's virtual, not abstract. Implemented.

2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ArgumentException.cs: use the field instead of the property for
	param_name.

	* ArgumentOutOfRangeException.cs: modified Message.

	* DateTime.cs: 
	(_DoParse): throw out of range exception for year. Removed check
	for month (it's done in the constructor).

2002-08-21  Miguel de Icaza  <miguel@ximian.com>

	* Environment.cs: Implemented OSVersion property.

2002-08-21  Dietmar Maurer  <dietmar@ximian.com>

	* Exception.cs: set stack_trace to null

Wed Aug 21 13:02:20 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* AppDomain.cs: implemented ToString().

2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: securityInfo can be null in CreateDomain.

2002-08-19  Dick Porter  <dick@ximian.com>

	* MonoType.cs: Add a space before the Assembly name in
	AssemblyQualifiedName (needed for resource files so the MS runtime
	can load types)

2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomain.cs: parameter name when throwing ArgumentNullException.

	* ArgumentException.cs: modified Message to do what MS does.

	* ArgumentNullException.cs: don't use {0} in message.

	* Exception.cs: use Message property in ToString ().

2002-08-14  Cesar Octavio Lopez Nataren <cesar@ciencias.unam.mx>

	* WeakReference.cs: Changed the constructor and GetObjectData
	method needed for ISerializable implementation in order to be
	compatible with SOAP generated by MS.

Wed Aug 14 17:34:07 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs, Type.cs: DeclaringType/ReflectedType fixes.

2002-08-12  Dietmar Maurer  <dietmar@ximian.com>

	* Exception.cs (ToString): changed the ouput format.

2002-08-07  Dietmar Maurer  <dietmar@ximian.com>

	* MonoType.cs: moved get_method icall to this class, we can
	remove it as soon someone provides a full featured GetMethodImpl.

	* Type.cs: use GetMethodImpl everywhere.

	* Delegate.cs: new CreateDelegate implementations.

2002-08-06  Tim Coleman <tim@timcoleman.com>
	* MonoType.cs: 
		Fix bug #28582.  Now checks parameters for properties
		in GetPropertyImpl.

2002-08-04  Nick Drochak  <ndrochak@gol.com>

	* Buffer.cs: Throw correct exception in GetByte() and SetByte().

2002-08-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs:
	(FormatSpecifier): allow white space between the comman and the width
	specifier.

2002-07-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	* Int64.cs:
	* UInt32.cs:
	* UInt64.cs: fixed bug #28050. May be a MS bug?

Thu Jul 18 14:47:03 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: fix IsArrayImpl.

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* String.cs: make ToLower (culture) and ToUpper (culture) use the
	default ToLower and ToUpper and don't throw NotImplemented.

Sat Jul 13 15:09:01 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: make GettTypeCode an icall. Test implementation of
	GetMember().

2002-07-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AppDomainSetup.cs: implemented LoaderOptimization.

2002-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Activator.cs: some more intermediate results checking in
	in CreateInstance and CreateInstanceFrom and use GetConstructor and
	Invoke only with Type [] until the other overloaded versions work.

2002-07-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Activator.cs: reformatted. Implemented CreateInstance* methods
	that return ObjectHandle.

	* AppDomain.cs: implemented CreateInstance*AndUnwrap methods.

2002-07-03  Nick Drochak  <ndrochak@gol.com>

	* Decimal.cs (Divide): Short cut the case where the dividend is 0 (and
	the divisor is not) and avoid the icall, which seems to have a bug.

2002-07-03  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (CompareTo): Correctly handle the case where the instance
	is NaN. Also return 0 if the values are equal.

2002/07/03  Nick Drochak <ndrochak@gol.com>

	* MissingMethodException: Add missing Message property
	* MissingMemberException: Add missing Message property

2002-06-30  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (CompareTo): Just see which is bigger.  Don't use the
	subtraction trick, it doesn't work when the values have a diference of
	less than one.

	* Single.cs (CompareTo): same

2002-06-27  Martin Baulig  <martin@gnome.org>

	* UIntPtr.cs (UIntPtr.Zero): Use an explicit `u' suffix in the
	constructor argument.  [FIXME: The implicit conversion to an
	unsigned integer doesn't work with mcs.]

2002-06-26  Martin Baulig  <martin@gnome.org>

	* DecimalFormatter.cs: Removed MSTEST stuff, use `System',
	not `S = System'.  This file now compiles with mcs.

	* String.cs: Removed the already ifdef-outed __arglist Concat function
	to make it compile with mcs.

2002-06-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IntegerFormatter.cs:
	(FormatParse.FormatNumber): fixed custom format for negative numbers.

2002-06-21  Martin Baulig  <martin@gnome.org>

	* Double.cs: Replace the private `enum State' with constants since this
	will avoid some bigger headaches in mcs.

Thu Jun 20 17:51:44 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* TimeSpan.cs: do not pollute the namespace with the
	System.Parser name.

2002-06-18  Nick Drochak  <ndrochak@gol.com>

	* ArgumentException.cs: Use the message given in the constructor when
	accessing the Message property.  Thanks to Dietmar for the help with 
	"base".

2002-06-17  Dietmar Maurer  <dietmar@ximian.com>

	* MonoType.cs: GetField is now a InternalCall

2002-06-13  Nick Drochak  <ndrochak@gol.com>

	* DateTime.cs: (Parse): Accept dates that have no hour,min,sec. in the
	sortable format(s), e.g. "2002-02-25"

2002/06/12  Nick Drochak <ndrochak@gol.com>

	* Random.cs (Next): Fix math error.  Return a number within the range.

2002-06-12  Nick Drochak  <ndrochak@gol.com>

	* String.cs (IndexOf): Return -1 if start index is equal to string
	length.

2002-06-10  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToDouble): Remove rounding in ToDouble (float).
	(ToType): Added null field in conversionTable to avoid
	IndexOutOfRangeException. Changed what exceptions we throw to match
	the spec.
	
2002-06-11  Nick Drochak  <ndrochak@gol.com>

	* Int64.cs (Parse): Added unique strings to the messages where we throw
	a FormatException. Needed these to debug, so just left them in since
	they might be useful later. Fixed Currency parsing where we weren't
	looking at CurrencyDecimalSeparator, etc.

2002-06-09  Lawrence Pit  <loz@cable.a2000.nl>

	* DateTime.cs: fixes to pass tests M0 to M6:
		if yy pattern then year values >= 30 are in 20th century
		rfc1123 pattern is always in GMT, therefor useutc must be false
	made GetNow() internal static so it can be called from TimeZone.
	* TimeZone.cs: removed dependency on year 2002 from initialization of 
	current timezone.

2002-06-09  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToType): Rearranged what Exceptions we throw to
	match MS behavior.

2002-06-08  Duncan Mak  <duncan@ximian.com>

	* Decimal.cs: Added support for the IConvertible interface.

2002-06-08  Martin Baulig  <martin@gnome.org>

	* Enum.cs (IsDefined): `value' may be of the enum's type itself, it
	doesn't necessarily need to be of the enum's underlying type.

2002/06/07  Nick Drochak <ndrochak@gol.com>

	* String.cs: Add [Serializable] to class
	* SByte.cs (Parse): Add [CLSCompliant(false)] to all the overloads

2002-06-04  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (Parse): Recognize the group separator string, but still we
	don't check the format for the proper number of digits between
	separators. Also throw OverflowException when we get Pos or Neg
	Infinity from runtime.

2002-06-03  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToDouble): Fixed ToDouble (byte value).

Mon Jun 3 12:18:18 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: fixed GetTypeCode.

2002-06-02  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToInt16): use Convert.ToInt16 (int) instead of a direct
	cast from an int so that we throw OverFlowException correctly.
	
	(ToInt64): Use a new 64bit version of ConvertToBase.
	
	(ConvertToBase): Add checks for overflow (checks Int32.MinValue
	and Int32.MaxValue).

	(ConvertFromBase64): New 64-bit version of ConvertFromBase.

2002-06-02  Nick Drochak  <ndrochak@gol.com>

	* Convert.cs (ToSByte): Check for special value.
	* Single.cs (Parse): 
	* UInt16.cs (Parse):
	* UInt32.cs (Parse): Throw OverflowException if negative

2002-06-02  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (DBNull): Point it to DBNull.Value.
	(IsDBNull): Instead of checking typecodes, just check to see if
	it's the same as the DBNull field.

2002-06-02  Nick Drochak  <ndrochak@gol.com>

	* Convert.cs (ConvertFromBase): Detect bad digits correctly.

2002-06-02  Duncan Mak  <duncan@ximian.com>

	* Char.cs (Parse): Simplify the Exception handling.

	* Convert.cs (ToDecimal): Remove call to Math.Round () when
	converting from a float.

2002-05-30  Martin Baulig  <martin@gnome.org>

	* MonoType.cs (GetInterface): Implemented.

Thu May 23 17:17:28 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Activator.cs: implemented CreateInstance ().

2002-05-22  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ConvertToBase): Added new 64bit version.
	(BuildConvertedString64): New 64bit version of
	BuildConvertedString.

	This fixes bug 25068.

	(ConvertFromBase): Added additional test for checking if the
	digits are valid. Thanks to Miguel for coming up with this test.

	This fixes bug 25071.
	
2002-05-21  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToType): Rearranged to fit the new layout of
	conversionTable.

	(conversionTable): Rearranged to fit the layout of the
	System.TypeCode enum.

	This should fix bug 25075.
	
2002-05-21  Duncan Mak  <duncan@ximian.com>

	* Convert.cs (ToString): Fixed the ToString methods. Previously I had
	mixed up the two code paths, one for converting to a specific base
	(this case), another from converting from a foreign base to base10
	(used by ToInt16|32|64 (string, int)). This fixes bug 25068.

	* Convert.cs (ToByte)
	(ToSByte): Fixed bug 25074. Added more bits to ConvertFromBase so
	that we won't confuse FormatException with OverflowException.

2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>

	* Environment.cs: CommandLine missed spaces between arguments.
	Implemented StackTrace. Returning MachineName in UserDomainName
	instead of null.
	
Tue May 21 17:25:49 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: handle inherit argument.

2002-05-21  Nick Drochak  <ndrochak@gol.com>

	* Math.cs (Pow): Change icall method name and insert parameter
	checks in for infinities and NaN.

2002-05-13  Miguel de Icaza  <miguel@ximian.com>

	* Double.cs (Parse): Reimplement by cleaning up the string first,
	and then passing to strtof in the mono runtime.

	* Single.cs (Parse): Use the Double implementation and cast to
	float. 

2002-05-21  Nick Drochak  <ndrochak@gol.com>

	* Math.cs 
		(Ceiling): Check for "special" values
		(Floor): Check for "special" values
		(Round): Fix off-by-one error on decimal shifting

2002-05-20  Lawrence Pit  <loz@cable.a2000.nl>

	* DateTime.cs: ToString () using "G" format specifier 

2002-05-19  Martin Baulig  <martin@gnome.org>

	* Convert.cs (FromBase64CharArray): Do correct exception handling.

2002-05-19  Martin Baulig  <martin@gnome.org>

	* Convert.cs (FromBase64CharArray): Convert the char array using
	System.Text.UTF8Encoding, not UnicodeEncoding (which is UTF-16) to
	a byte array.

2002-05-17  Miguel de Icaza  <miguel@ximian.com>

	* MonoType.cs: Style changes.

	* Type.cs: Style changes.

2002-05-16  Piers Haken <piersh@friksit.com

	* UInt64.cs: fix declaration of IConvertible.To* overrides.

2002-05-16  Nick Drochak  <ndrochak@gol.com>

	* BitConverter.cs (ToString): Add parameter check for invalid start 
	index.

	* Console.cs: Use AutoFlush on the StreamWriter for stdin and stdout
	now that StreamWriter uses buffering

2002-05-14  Miguel de Icaza  <miguel@ximian.com>

	* Double.cs: Oops.  Also handle exponents without finding a dot.

2002-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ChangeLog: removed empty entry at the top of the file.

	* Int32.cs: made static functions used by Parse internal.

	* Int64.cs:
	* UInt32.cs:
	* UInt64.cs: removed static fucntions used by Parse and use the ones
	in Int32.cs

2002-05-12  Daniel Morgan <danmorg@sc.rr.com>

	* IServiceProvider.cs: added using System

2002-05-09  Daniel Morgan <danmorg@sc.rr.com>

	* Single.cs: copied ToString() and Parse() methods from 
	Double to Single and modified a tiny bit for Single.  
	There is still a FIXME for Double and Single about
	passing the format and provider info to the icall too.

2002-05-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	* Int64.cs:
	* UInt32.cs:
	* UInt64.cs (Parse): don't use Char.IsNumber to test for hex digits.
	Don't use a delegate to test for valid digits.

2002-05-01  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: 
	* Math.cs: Added missing CLSCompliant attributes where necessary.
	
2002-04-30  Duncan Mak  <duncan@ximian.com>

	* ArgumentException.cs (Message): 
	* ArgumentOutOfRangeException.cs (Message): Added.

2002-04-30  Nick Drochak  <ndrochak@gol.com>

	* MonoType.cs: Remove unused variable and eliminate a compiler warning.

Mon Apr 29 15:32:02 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Environment.cs: support for Exit(), CommandLine, CommandLineArgs ().

2002-04-28  Duncan Mak  <duncan@ximian.com>

	* DivideByZeroException.cs: Added missing serialization constructor.

	* UnauthorizedAccessException.cs: Added the missing Serializable attribute.

2002-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Math.cs: fix Floor () and Round (). Closes #23960.

2002-04-27  Nick Drochak  <ndrochak@gol.com>

	* Array.cs (IList.Contains): Should throw a RankException if this is 
	called on a Rank > 1 array. Not in the docs, but this is what the 
	MS.NET does.

2002-04-26  Duncan Mak  <duncan@ximian.com>

	* MissingMemberException.cs: Made the message variable 'protected'
	instead of 'private', so that we can see it in
	MissingMethodException and MissingFieldException.

	* MissingFieldException.cs:
	* MissingMethodException.cs: Added missing (string, string)
	constructor, and also the Message property.

2002-04-26  Martin Baulig  <martin@gnome.org>

	* Enum.cs: Implemented the IConvertible methods.

2002-04-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* SByte.cs: little change in Parse (string) to avoid incorrect
	OverflowException thrown (reported by nickd).

2002-04-22  Miguel de Icaza  <miguel@ximian.com>

	* ValueType.cs: Add Serializable attribute.

	* String.cs: ifdef-out out the __arglist Concat function until I
	add support for that to mcs.

2002-04-24	Patrik Torstensson <patrik.torstensson@labs2.com>

	* AppDomain.cs (GetValue): usage of the correct icall (bug)

Wed Apr 24 21:15:44 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* GC.cs: implement most of the methods as icalls.

2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DecimalFormatter.cs (ToString): return correct value when the
	decimal number is 0.

2002-04-24	Patrik Torstensson <patrik.torstensson@labs2.com>
	
	* Type.cs (GetProperty): fixed call syntax (needs an empty array not null)
	* MonoType.cs (GetPropertyImpl) : basic implementation (ignores types, bindingAttr, modifiers)

2002-04-24  Nick Drochak  <ndrochak@gol.com>

	* Double.cs (Parse): Handle case where there are no digits before the 
	decimal point, such as ".1".

2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	* UInt32.cs:
	* Int64.cs:
	* UInt64.cs: fixed bug #23738 (hex numbers parsed wrong).

2002-04-23	Patrik Torstensson <patrik.torstensson@labs2.com>

	* String.cs (Split): fixed invalid split of count 0 and 1.
	
2002-04-23	Patrik Torstensson <patrik.torstensson@labs2.com>
	
	* String.cs (LastIndexOf): fixed argument checking.
	* String.cs (Equals): made internal for performace.

2002-04-23  Nick Drochak  <ndrochak@gol.com>

	* String.cs (Join): check argument and throw exception if needed

2002-04-23  Nick Drochak  <ndrochak@gol.com>

	* String.cs (StartsWith): check argument and throw exception if needed

2002-04-22  Nick Drochak  <ndrochak@gol.com>

	* String.cs (IndexOfAny): check arguments and throw exceptions as
	neccessary.  ALso remove some debug WriteLines.

2002-04-20  Dietmar Maurer  <dietmar@ximian.com>

	* String.cs: use internal constructors
	buf fix in Concat.

Thu Apr 18 17:16:15 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: make GetElementType its own icall.

2002-04-18  Nick Drochak <ndrochak@gol.com>

	* String.cs: Modified file. Re-add methods needed by the unit tests.

Thu Apr 18 12:38:32 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: some code speedups and restored GetTypeCode().

2002-04-17	Patrik Torstensson <patrik.torstensson@labs2.com>

	* String.cs: New implementation using internal calls.
	
2002-04-16  Nick Drochak  <ndrochak@gol.com>

	* DecimalFormatter.cs: Trim off excess null characters from the string
	that decimal2string gives back.

2002-04-16  Nick Drochak  <ndrochak@gol.com>

	* String.cs (SubString): revert my change.  I can't reproduce the
	problem anymore.

2002-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Attribute.cs: added GetHashCode and Equals.

2002-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Enum.cs: little improvements to Format ().

Thu Apr 11 12:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: internalcall GetHashCode().
	* Array.cS: optimize access to elements.

Wed Apr 10 21:20:19 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: make IndexOfAny() use an internalcall.

2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	* UInt32.cs:
	* Int64.cs: 
	* UInt64.cs: fixed error when testing for validity of flags.

2002-04-11  Nick Drochak  <ndrochak@gol.com>

	* Double.cs: Use an internal call for ToString(). This is just a simple
	implementation to get away from throwing a NotImplementedException.

2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Int32.cs:
	* UInt32.cs:
	* Int64.cs: 
	* UInt64.cs: changed Type.GetType () by typeof (), as suggested by
	lupus.

	* Int32.cs:
	* Int64.cs: throw an OverFlowException when parsing a string 
	containing a dot followed by any non '0' number.

2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* Byte.cs:
	* UInt16.cs:
	* UInt32.cs:
	* UInt64.cs: added complex Parse ().

2002-04-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* SByte.cs:
	* Int16.cs:
	* Int32.cs:
	* Int64.cs: added complex Parse ().

2002-04-09  Nick Drochak  <ndrochak@gol.com>

	* Array.cs (BinarySearch): Add checks on paramters before using them
	and throw exceptions as needed.

	* Enum.cs (Format): Check if [Flags] is applied to enum and convert
	"G" format to "F" if so.

Tue Apr 9 13:12:09 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: return arrays of type Attribute[]
	instead of object[].

2002/04/09  Nick Drochak <ndrochak@gol.com>

	* String.cs (Substring): Copy only non-null characters to the new
	string.

2002-04-09  Nick Drochak  <ndrochak@gol.com>

	* IntegerFormatter.cs: Don't use a format character to indicate a
	custom format was passed in. It was using 'z' to indicate a custom
	format, but really it should throw a format exception if the user
	tries to use "z" as the format string. Now it does.

	* Activator.cs: New File.

2002-04-08  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (ToString): Big ugly fix for the case where [Flags] is
	applied to an enum. Need to handle the different possible integer
	types of an enum somehow.  Can anyone say generics?

Mon Apr  8 06:22:42  2002 Piers Haken <piersh@friskit.com>

	* Convert.cs: switched the To*(object) methods to use
	IConvertible directly instead of calling ChangeType

Sat Apr 6 20:08:41 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* ValueType.cs: make Equals() an internalcall.

Fri Apr 5 15:38:54 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: also look for nested types in FindMembers.
	* MonoType.cs: make GetNestedTypes() an internalcall.

2002-04-05  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (Parse): Handle different underlying types.

2002/04/04 Nick Drochak <ndrochak@gol.com>

	* Enum.cs (IsDefined): Throw exception when type of value to look for
	is not the correct one.  Attempt to have it work with string values
	too, but not sure if the unit tests are getting that far yet.

2002-04-04  Nick Drochak  <ndrochak@gol.com>

	* Decimal.cs: Fix a couple of typos.

Wed Apr 3 19:46:00 CEST 2002 Paolo Molaro <lupus@ximian.com>

	* Enum.cs: the values array is of the enum and not of the underlying
	type. Updates and some bug fixes.
	* MonoType.cs: make the internalcall return FullName instead of the
	assembly qualified name.
	* Type.cs: make ToString () simply return FullName.

2002-04-03  Nick Drochak  <ndrochak@gol.com>

	* Type.cs (GetTypeCode): provide some of the implementation for this
	method.  It's still too simplistic to be considered complete.

2002-04-02  Dietmar Maurer  <dietmar@ximian.com>

	* Object.cs: fixed FieldGetter/FieldSetter signature

2002-04-02  Nick Drochak  <ndrochak@gol.com>

	* Environment.cs: add MonoTODO's on parts that should have it.

2002-04-01  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs: added reality checks (check parameters to most methods that
	need them).

2002-03-30  Dietmar Maurer  <dietmar@ximian.com>

	* Object.cs: added FieldGetter/FieldSetter

2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IntegerFormatter.cs: fixed initialization error in static
	constructor.

2002-03-28  Dietmar Maurer  <dietmar@ximian.com>

	* Delegate.cs: added new field to store a trampoline function

2002-03-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IntegerFormatter.cs: added workaround for bug #22668. First patch to
	make custom format strings work (not fully functional yet).

2002/03/28  Nick Drochak <ndrochak@gol.com>

	* IntegerFormatter.cs: Change class from internal to public.  Add
	necessary [CLSCompliant(false)] attributes.

2002-03-27  Duco Fijma  <duco@lorentz.xs4all.nl>
	* _AppDomain.cs, AppDomain.cs: renamed method GetDate to GetData
	(was a typo)

2002-03-28  Nick Drochak  <ndrochak@gol.com>

	* Type.cs: Added MonoTODO tags on members that have FIXME, etc.

2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>

	* Console.cs: Modified to get std handles from MonoIO.
	* Environment.cs: removed PAL dependencies.

2002-03-25  Miguel de Icaza  <miguel@ximian.com>

	* String.cs (System): Removed internal enumeration, because
	bootstrapping the corlib at this point does not support
	enumerations. 

	* IntPtr.cs: Temporary work-around until I fix the assembly
	attributes bug.

2002-03-24  Martin Baulig  <martin@gnome.org>

	* Enum.cs (GetValues): According to the docu this is sorted after
	values, not names.

	* String.cs (System): Removed enumeration, because it is pretty
	hard to support enumerations in /nostdlib mode for the core types.

Tue Mar 19 18:18:49 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Array.cs: move error handling in the catch block.
	* MulticastDelegate.cs: remove == and != operators that were
	removed with the delegate changes (when you add stuff, please do not
	remove existing functionality!).
	* Type.cs: if a property is not found in a type, search for it
	in the parent types, too.

2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
	
	* Math.cs: changed to use icall instead of PAL.

2002-03-18  Dietmar Maurer  <dietmar@ximian.com>

	* Double.cs: added check for NaN (Bug [22082])

2002-03-19  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs (Equals): check for null and throw if it is.
	* Enum.cs (Format): check for null parameters and throw if necessary.
	This method still needs more argument checking.

2002-03-18  Dietmar Maurer  <dietmar@ximian.com>

	* Enum.cs (Equals): check if Enums are of the same type

2002-03-18  Nick Drochak  <ndrochak@gol.com>

	* Double.cs: Explicitly handle comparisons in CompareTo() for
	Positive/Negative Infinity and NaN. Unit Test now passes on Linux.

	* Enum.cs(CompareTo): Check types of values before trying to compare.
	Throw exceptions if types are invalid or don't match.

2002-03-14  Miguel de Icaza  <miguel@ximian.com>

	* Array.cs: Add some extra debugging information.

2002-03-15  Nick Drochak  <ndrochak@gol.com>

	* Array.cs: Added IList and IEnumerable. 

2002-03-14  Miguel de Icaza  <miguel@ximian.com>

	* UInt64.cs, UInt32.cs, UInt16.cs: Mark public parse methods as
	NonCLSCompliant. 

2002-03-14  Dietmar Maurer  <dietmar@ximian.com>

	* Delegate.cs (Equals): also compare method_ptr 
	(GetHashCode): returm method_ptr as hash

2002-03-13  Duco Fijma  <duco@lorentz.xs4all.n>
	* TimeSpan.cs: removed the use of Custom Numeric Format Strings,
	such as 42.ToString("0000000"), as these are (currently) not implemented
	in System.IntegerFormatter. TimeSpan luckely can do with Standard
	Numeric Format Strings, such as 42.ToString("D7").

2002-03-12  Duncan Mak  <duncan@ximian.com>

	* FieldAccessException.cs: 
	* MethodAccessException.cs: 
	* PlatformNotSupportedException.cs: Inherit from
	MemberAccessException, not SystemException.

	* ObsoleteAttribute.cs: Made Message and IsError properties
	instead of fields.

Tue Mar 12 19:21:18 CET 2002 Paolo Molaro <lupus@ximian.com>

	* GC.cs: make SuppressFinalize() a nop.
	* Delegate.cs: fix == operator.

2002-03-13  Nick Drochak  <ndrochak@gol.com>

	* Enum.cs: Add IConvertible methods. Cyclic dependancy fixed in the
	runtime that goes with this patch.

2002-03-10  Martin Baulig  <martin@gnome.org>

	* Int32.cs (Parse): Correctly parse negative numbers.

2002-03-08  Martin Baulig  <martin@gnome.org>

	* String.cs (Split): Really fix it this time. Also adding several new
	testcase to the testsuite.	 

2002-03-08  Martin Baulig  <martin@gnome.org>

	* Array.cs (Copy): Optimized: removed duplicate null check, removed
	two duplicate GetLowerBound() calls and one duplicate IsValueType.

Fri Mar 8 18:49:19 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Object.cs: commit my hacked GetHashCode(): it's good enough for now.
	* String.cs: use the dumb code for IndexOf(string): this is worth
	15-20 % speedup in mcs compile with mint.

Fri Mar 8 12:45:44 CET 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: revert change to Split() that broke the compiler (hi martin!:-).

2002-03-07  Martin Baulig  <martin@gnome.org>

	* String.cs (Join): Throw an ArgumentNullException.
	(LastIndexOf (string,int,int)): This method does a backwards search,
	so startIndex points to the end of value, not to its beginning. Don't
	throw an exception if startIndex equals this.Length. Always return -1
	if startIndex is smaller than the length of value.
	(Replace (string,string)): Replace all occurences of oldValue.
	If newValue is null, all occurences of oldValue are to be removed.
	(Split (char[],int)): Return an empty array if maxCount is zero, throw
	an ArgumentOutOfRangeException if it's less than zero. Return maxValue
	elements, not maxValue+1.

Thu Mar 7 17:16:06 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: make GetEvents() an internal call.
	* MulticastDelegate.cs: copy the passed in array.

2002-03-06  Martin Baulig  <martin@gnome.org>

	* Array.cs (Copy): Use FastCopy when appropriate and do correct
	exception handling.

2002-03-06  Duco Fijma  <duco@lorentz.xs4all.nl>
	* CharEnumerator.cs: fixes to CharEnumertor.MoveNext, fixing 
	some of the failures found be new tests (see ChangeLog in 
	Test/System). Comments added to this method, based on
	the representation invariant of this class, that (try to) explain
	why it now should be correct.

2002-03-06  Dietmar Maurer  <dietmar@ximian.com>

	* Int64.cs (Parse): bug fix for max. negative value. 

2002-03-07  Nick Drochak  <ndrochak@gol.com>

	* RuntimeTypeHandle.cs: Add Serializable attribute as the docs say.
	I need to understand what the difference between the attribute and
	the interface is.

2002-03-06  Martin Baulig  <martin@gnome.org>

	* Array.cs (Copy): Always throw an ArrayTypeMismatchException, not
	an InvalidCastException if the widening conversion failed. See
	testcases #M94-#M96.

	* Array.cs (CopyTo): Bug fix from Ajay Dwivedi, correctly handle
	arrays with non-zero lower bounds. Also adding testcases #F10-#F13
	for this.

	* Array.cs (CopyTo): Reverted my last change, it was incorrect.
	(Copy): Actually allow copying multi-dimensional arrays.

2002-03-05  Duncan Mak  <duncan@ximian.com>

	* Convert.cs:
	(DBNull) Added the missing field.
	(IsDBNull) Fixed typo.
	(ToByte (string, int)) Implemented.
	(ToString (byte, int)) Implemented.
	(ConvertToBase)
	(BuildConvertedString) internal functions used for converting values to
	a specific base.

	* Int16.cs: 
	* Int32.cs:
	* Int64.cs:
	* Single.cs:
	* UInt16.cs: 
	* UInt32.cs: Implemented the IConvertible interface.	

	* CharEnumerator.cs: Renamed to variables to be clearer and
	changed some of the tests to conform to the 1.0 spec.

2002-03-06  Martin Baulig  <martin@gnome.org>

	* Array.cs (Copy): Calculate absolute array position here and use
	GetValueImpl() and SetValueImpl() with that position. We can now
	copy multi-dimensional arrays.
	(CopyTo): Small bug fix.

2002-03-05  Duco Fijma  <duco@lorentz.xs4all.nl>

	* Version.cs: CompareTo changed according the LAMESPEC discovered by 
	Nick (See VersionTest.cs).
	* CharEnumerator.cs: fixed two bugs in MoveNext. It had an off-by-one
	error comparing the current position (idx) against the length of the
	string iterated and it set idx to an unrecognized special value (-2)

Tue Mar 5 17:34:14 CET 2002 Paolo Molaro <lupus@ximian.com>

	* SByte.cs, UInt64.cs: implement IConvertible interface. Nobody wants
	to do this dirty work, but someone has to do it (and I need it to pass
	the "200 sample tests compiled on linux" mark).

2002-03-06  Nick Drochak  <ndrochak@gol.com>

	* Attribute.cs
	* DecimalFormatter.cs
	* Delegate.cs
	* Double.cs
	* GC.cs
	* Int16.cs
	* Int32.cs
	* MonoType.cs
	* RuntimeMethodHandle.cs
	* RuntimeTypeHandle.cs
	* String.cs
	* Type.cs:
		Add [MonoTODO]'s to places where we currently throw a
		NotImplementedException.

2002-03-05  Dietmar Maurer  <dietmar@ximian.com>

	* Int16.cs (Parse): do not overflow on max negative value

	* Int32.cs (Parse): do not overflow on max negative value

Mon Mar 4 20:36:05 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: fixed IsClass.
	* MonoType.cs: fixed MemberType, IsPrimitiveImpl, IsPointerImpl,
	IsByRefImpl. Added GetInterfaces().
	* IServiceProvider.cs: compilation fix.

Mon Mar 4 18:37:03 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Array.cs: allow copying an empty array to an empty array.

Mon Mar 4 17:59:16 CET 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: fixed LastIndexOf (string) to do a bit of argument
	checking.

2002-03-04  Duco Fijma  <duco@lorentz.xs4all.nl>
	* Version.cs: many fixes to failures found by the newly created
	test cases for this class. Specifically, the CompareTo member
	returned wrong values due to the use of Int32.MaxValue as a special
	value indicating an "undefined" version component. Also implemented the
	missing operators (==, <, >, etc.), one missing constructor and
	and some exception throwing.

2002-03-04  Nick Drochak  <ndrochak@gol.com>

	* IServiceProvider.cs: Add missing attribute: ComVisible(false)
	* Attribute.cs: Add missing attributes: Serializable and
	AttributeUsage(AttributeTargets.All)

Mon Mar 4 11:26:49 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: implemented GetConstructors(), GetFields(),
	GetMethods(), GetProperties().
	* Object.cs: added debugging icall obj_address().
	* Type.cs: fixed the binding flags for some Get* methods.
	Implemented FindMembers() as calls to the specific GetMember
	methods.

2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>
	* BitConverter.cs: fixed one little bug: ToString(s, n, 0) 
	should give an exception for n>=s.Length.

2002-03-01  Martin Baulig  <martin@gnome.org>

	* Array.cs: More argument checking and bug fixing.

2002-03-01  Miguel de Icaza  <miguel@ximian.com>

	* BitConverter.cs: Indentation match

	* AppDomain.cs: Added MonoTODOs to this too.

	* Buffer.cs: Added MonoTODOs to this.

2002-03-01  Martin Baulig  <martin@gnome.org>

	* Array.cs: Added argument checking to all methods where it was missing.

2002-03-01  Duco Fijma  <duco@lorentz.xs4all.nl>

	* BitConverter.cs: Fixed bugs in ToString methods

Fri Mar 1 15:20:00 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MulticastDelegate.cs: implement operators so mcs3 can be used on linux.

2002-03-01  Nick Drochak  <ndrochak@gol.com>

	* BitConverter.cs: Throw ArgumentException like mscorlib, instead of
	ArgumentOutOfRangeException like the docs say.

2002-03-01  Martin Baulig  <martin@gnome.org>

	* Enum.cs (CompareTo): Correctly override this method from IComparable.

	* Console.cs (setIn, setOut, setError): It's called SetIn, SetOut, SetError.

2002-02-28  Martin Baulig  <martin@gnome.org>

	* String.cs: This file now passes the testsuite on Linux :-)
	
	* String.cs (Intern, IsInterned): The interncalls are now called _Intern and _IsInterned;
	make them private and provide C# wrappers which do proper argument checking.

	* String.cs (Format): Correctly handle escaped brackets.

	* String.cs (_CompareChar): New internal function which compares two chars.
	(_Compare): Provide an internal compare method which can do all sorts of
	comparision and call it from all the Compare() methods. Also fixed a lot of
	bugs here, this code now actually passes the testsuite.

2002-02-28  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: Added the missing methods. The new class status page
	kicks ass, it even found my typos! Woohoo!
	(ConvertFromBase): Moved the Exception throwing in here and
	removed the other occurances so it's all centralized now.
	(ISDBNull): Implemented.
	(GetTypeCode): Implemented.

2002-02-27  Duco Fijma  <duco@lorentz.xs4all.nl>
	* Guid.cs: Guid.ToString("") and Guid.ToString(null) is now understood as Guid.ToString("D") 
	just as in mscorlib. There is (probably) a documentation bug in the MS FrameWork SDK, which
        states that a lacking format should be interpreted as "N".  
	Also added [Serializable] attribute
	* TimeSpan.cs: some formatting and added the [Serializable] attribute

2002-02-26  Duncan Mak  <duncan@ximian.com>

	* WeakReference.cs: Committed for Ajay Kumar Dwivedi.	

2002-02-26  Martin Baulig  <martin@gnome.org>

	* TimeZone.cs: Use an internal enum rather than magic numbers to access the
	fields of the interncall GetTimeZoneData.

	* DateTime.cs: Implemented Parse and fixed a few bugs.

	* String.cs (TrimStart): Small fix.

2002-02-26  Martin Baulig  <martin@gnome.org>

	* DateTime.cs: ParseExact is now fully functional.

	* String.cs (TrimEnd): Small fix.

2002-02-26  Duco Fijma <duco@lorentz.xs4all.nl>
	* TimeSpan.cs: Added method TimeSpan.FromMilliseconds, mysteriously 
	missing for about six months.

Tue Feb 26 14:21:19 CET 2002 Paolo Molaro <lupus@ximian.com>

	* UInt64.cs: fixed Parse method () to handle some of the NumberStyle flags.

2002-02-26  Martin Baulig  <martin@gnome.org>

	* DateTime.cs: Miguel already committed this, but there was still a
	ChangeLog entry for this missing ....
	We're now reusing functionality from TimeSpan, printing dates is
	fully implemented, currently working on parsing.

	* TimeZone.cs: Fully implemented this. There's a new InternCall in the
	runtime for this.

Fri Feb 22 18:47:08 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: disable constructor.
	* Object.cs: make GetType() an internalcall.
	* Type.cs: added correct bindingflags to GetMethods ().
	All such calls should be reviewed to use the correct flags.

Thu Feb 21 19:23:46 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs, MonoType.cs: type_is_subtype_of () changed to include extra
	argument.

Thu Feb 21 16:56:51 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: implemented IsAssignableFrom.

2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
	* Guid.cs: fixed Guid.Guid(string) ctor. Changed format:
	"{0xdddddddd,0xdddd,0xdddd,{0xdd},{0xdd},{0xdd},{0xdd},{0xdd},{0xdd}}" 
	to "{0xdddddddd,0xdddd,0xdddd,{0xdd,0xdd,0xdd,0xdd,0xdd,0xdd}}" 
	The former is documented by Microsoft. The latter is how they
	actually implemented it in mscorlib:-)

Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: hooks to get the custom attributes from the
	runtime.
	* MonoType.cs: Implemented custom attributes methods.


2002-02-21  Duco Fijma <duco@lorentz.xs4all.nl>
	* Guid.cs: 

Tue Feb 19 20:34:35 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoCustomAttrs.cs: hooks to get the custom attributes from the
	runtime.
	* MonoType.cs: Implemented custom attributes methods.

2002-02-19  Dietmar Maurer  <dietmar@ximian.com>

	* Array.cs (CopyTo): use GetLength() instead of GetUpperBound() 

2002-02-19  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: Finished up the missing methods in Convert. Added a
	new private method ConvertFromBase.

2002-02-19  Dietmar Maurer  <dietmar@ximian.com>

	* String.cs: impl. IConvertible interface

2002-02-18  Duco Fijma <duco@lorentz.xs4all.nl>
	* Guid.cs: actual implementation for Guid.Guid(string) Ctor

2002-02-18  Duncan Mak  <duncan@ximian.com>

        * Convert.cs: Changed from using Type.GetType (string) to just
        typeof (). Probably will speed things up a bit?		

2002-02-18  Ajay Kumar Dwivedi <AjayKumar.Dwivedi@dresdner-bank.com>

	* Array.cs:         
	1. Fix for GetUpperBound to return correct values
        2. made some Properties virtual
        3. Adds IsFixedSize and IsReadOnly properties.
        4. changes CreateInstance(Type,int[],int[]) to throw Exception
	when third arg is null. InternalCall CreateInstance changed to  
	CreateInstanceImpl
        5. Fixed array.GetUpperBound at a couple of places
        6. IndexOf and LastIndexOf now use Object.Equals instead of "=="
        7. Added two FIXME's in BinarySearch functions.

2002-02-17  Duncan Mak  <duncan@ximian.com>

        * TimeZone.cs:	Applied the rest of Ajay's patch for	
        IsDaylightSavingTime. Thanks a lot for the nice explanation of how
        it works!

2002-02-17  Duco Fijma  <duco@lorentz.xs4all.nl>
	* Guid.cs: added stub for Guid(string) ctor

2002-02-17  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: Near-complete implementation of Convert.cs

	Added all the To* methods taking (object) and
	(object, IFormatProvider) as parameters.

	Added [CLSCompliant (false)] attributes to methods dealing with
	unsigned types.

	Added the missing section on converting to and from DateTime. Only
	6 missing methods, all marked with MonoTODOs. Will tackle them later.		

2002-02-16  Duncan Mak  <duncan@ximian.com>

	* TimeZone.cs: patch from Ajay Kumar Dwivedi (adwiv@yahoo.com) to
	make IsDaylightSavingTime (DateTime) call 
	IsDaylightSavingTime (DateTime, DaylightTime).	
	
	Added internal class CurrentTimeZone from Ajay. It needs more work
	to fill in the appropriate internal calls.
	
Sat Feb 16 12:41:41 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Type.cs: fix IsClass.

Sat Feb 16 12:02:02 CET 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: fix Trim().

Fri Feb 15 21:02:46 CET 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: fix more off by one errors.

Thu Feb 14 18:54:09 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: fix IsValueTypeImpl.
	* Type.cs: fix IsEnum. Implement Equals methods.

Wed Feb 13 21:50:13 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Int32.cs: implement IConvertible interface.
	
2002-02-12  Duncan Mak  <duncan@ximian.com>

	* TimeZone.cs: Implemented and added to CVS.

2002-02-11  Duncan Mak  <duncan@ximian.com>

	* Convert.cs: Implemented the ChangeType () methods.

Mon Feb 11 19:48:58 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Array.cs: make Clone() an internal call.

2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
	* Changed Guid.NewGuid so that it can use both System.Random and 
          System.Security.Cryptography.RandomNumberGenerator

2002-02-09  Duco Fijma <duco@lorentz.xs4all.nl>
	* First version of Guid.NewGuid

2002-02-08  Duncan Mak  <duncan@ximian.com>

	* RuntimeArgumentHandle.cs: Added to CVS.

Fri Feb 8 19:14:54 CET 2002 Paolo Molaro <lupus@ximian.com>

	* CrossAppDomainDelegate.cs, AssemblyLoadEventHandler.cs,
	UnhandledExceptionEventHandler.cs: added delegates.

Fri Feb 8 18:06:20 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MarshalByRefObject.cs: add ToString () method
	(apparently needed by nunit).
	* _AppDomain.cs: uncomment ToString(): dietmar fixed the bug triggered
	by it in the runtime.

2002-02-08  Dan Lewis <dihlewis@yahoo.co.uk>
	
	* String.cs (Format): implemented

2002-02-07  Duncan Mak  <duncan@ximian.com>
	
	* DuplicateWaitObjectException:
	* InvalidCastException:
	* NotImplementedException:
	* NotSupportedException:
	* NullReferenceException:
	* OutOfMemoryException:
	* OverflowException:
	* RankException:
	* StackOverflowException.cs:
	* UnauthorizedAccessException: Added missing constructor used for serialization.

2002-02-07  Dietmar Maurer  <dietmar@ximian.com>

	* String.cs (System.Compare): bug fix 

2002-02-06  Dietmar Maurer  <dietmar@ximian.com>

	* Enum.cs (Parse,  GetHashCode): impl. 

2002-02-05  Duncan Mak  <duncan@ximian.com>

	* DBNull.cs: This is my first crack at the DBNull class. I think I
	actually got most of the IConvertible methods right, but I haven't
	done the research to test whether or not this is the correct
	behavior. IConvertible.ToType () is the most iffy of all, IMHO.

	* DllNotFoundException.cs: Inherits from TypeLoadException, not SystemException.

2002-02-05  Dietmar Maurer  <dietmar@ximian.com>

	* Enum.cs: added more functionality (GetName, ToObject, Equals)

2002-01-31  Duncan Mak  <duncan@ximian.com>

	* InvalidOperationException.cs:
	* NotFiniteNumberException.cs:
	* ObjectDisposedException.cs:
	* TypeInitializationException.cs: Added missing bits for serialization/
	
	* AppDomainUnloadedException.cs:
	* ApplicationException.cs:
	* ArgumentOutOfRangeException.cs:
	* ArithmeticException.cs:
	* ArrayTypeMismatchException:
	* BadImageFormatException.cs:
	* Exception.cs:
	* MissingMemberException.cs:
	* TypeLoadException.cs: Added missing bits for serialization.

2002-01-30  Duco Fijma <duco@lorentz.xs4all.nl>
	* Guid.cs: implemented everything but Guid.NewGuid

Tue Jan 29 22:32:36 CET 2002 Paolo Molaro <lupus@ximian.com>

	* _AppDomain.cs: remove ToString() method: it doesn't seem right 
	to have it in this interface and it screws up the method vtable setup.

2002-01-28  Andrei Zmievski <andrei@php.net>

	* Double.cs: implemented IConvertible interface.

2002-01-28  Miguel de Icaza  <miguel@ximian.com>

	* ArgumentException.cs: Implement serialization constructor.
	(GetObjectData): Implement serializer.
	
	* ArgumentNullException.cs: Implement serialization constructor.

	* Exception.cs: Implement serialization constructor.
	(GetObjectData): Implement serializer.

2002-01-23  Miguel de Icaza  <miguel@ximian.com>

	* DateTime.cs (UnixEpoch): The Begining of the Unix epoch.

2002-01-23  Duncan Mak  <duncan@ximian.com>

	* EntryPointNotFoundException.cs:
	* FormatException: Added missing constructor and related bits.

	* TypeLoadException: Added missing constructor, methods and properties.

2002-01-23  Miguel de Icaza  <miguel@ximian.com>

	* AppDomain.cs (GetAssemblies): Use foreach construct instead of
	manually getting the enumerator.

	(AppDomain.AppDomain): Prime the loaded assemblies with the
	assemblies loaded by the runtime in our behalf.

	* AppDomainSetup.cs: Remove private keyword, that is the default.
	Add a new property DisallowPublisherPolicy.

	* AppDomain.cs (AppDomain.GetAssemblies): Implement.

Tue Jan 22 22:51:48 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs, Type.cs: many updates, corrected implementation,
	completed stubs.

2002-01-20  Andrei Zmievski <andrei@php.net>

	* Byte.cs:
	* Char.cs: implemented IConvertible interface.

	* Boolean.cs: use our own ToString() method directly.

2002-01-20  Duncan Mak  <duncan@ximian.com>

	* Files I commited recently: Fixed indentation style.

2002-01-20 Nick Drochak  <ndrochak@gol.com>

	* SerializableAttribute.cs: this attrib can be used on enums, structs, 
	and delegates too. Added the appropriate usage flags.

2002-01-18  Duncan Mak  <duncan@ximian.com>

	* CharEnumerator.cs: Implemented.
	* String.cs (System): Fixed the GetEnumerator () method(s).

	* ObsoleteAttribute.cs:
	* STAThreadAttribute.cs:
	* MTAThreadAttribute.cs:
	* ThreadStaticAttribute.cs:
	* LoaderOptimizationAttribute.cs:
	* PlatformNotSupportedException.cs:
	* LoaderOptimization.cs: Added to CVS.

2002-01-18  Duncan Mak  <duncan@ximian.com>

	* AppDomainUnloadedException.cs:
	* MethodAccessException.cs:
	* ContextMarshalException.cs:
	* CannotUnloadAppDomainException.cs:
	* DllNotFoundException.cs:
	* EntryPointNotFoundException.cs:
	* FieldAccessException.cs:
	* TypeUnloadedException.cs:
	* MissingFieldException.cs: Added to CVS.

	* ApplicationException.cs: 
	* MemberAccessException.cs:
	* MissingMemberException.cs
	* MissingMethodException.cs:
	* SystemException.cs: Added [Serializable] attribute.

	* Exception.cs: Added [Serializable] attribute, made properties
	'Message', 'Source' and 'StackTrace' virtual methods, per 1.0
	spec.

	* ContextStaticAttribute.cs: Added [Serializable] attribute and
	put in the missing constructor.

	* Environment.cs: Commented out references to
	EnvironmentPermissionAttribute, because they're just stubbed out
	right now and has no implementation.

2002-01-16  Andrei Zmievski <andrei@php.net>

	* Boolean.cs: implemented IConvertible interface

2002-01-15  Nick Drochak  <ndrochak@gol.com>

	* ResolveEventArgs.cs: class should derive from EventArgs.

2002-01-14  Miguel de Icaza  <miguel@ximian.com>

	* String.cs (System): Use DefaultMemberName for the String class.

Mon Jan 14 17:06:40 CET 2002 Paolo Molaro <lupus@ximian.com>

	* String.cs: use IndexerName in index char accessor.

Thu Jan 10 21:05:23 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MonoType.cs: add rank to MonoTypeInfo and implement GetArrayRank.
	* String.c: eliminate 64k+ method calls in search.
	* Type.cs: handle byref and array types in ToString ().

2002-01-09  Duco Fijma <duco@lorentz.xs4all.nl>

	* Guid.cs: created first version

2002-01-10  Dietmar Maurer  <dietmar@ximian.com>

	* MonoType.cs: added missing TypeAttributes to MonoTypeInfo 

Wed Jan 9 19:35:07 CET 2002 Paolo Molaro <lupus@ximian.com>

	* MulticastDelegate.cs: add == and != operator stubs.
	* String.cs: check for null in == operator.
	* Type.cs: use a virtual method to get TypeAttributes.

Tue Jan  8 23:30:19 EST 2002 Matt Kimball <matt@kimball.net>
	* String.cs: Fixed several off-by-one errors in LastIndexOf* methods

2002-01-09  Nick Drochak  <ndrochak@gol.com>
	
	* Environment.cs: Comment out Security attribute and put a MonoTODO
	there as a reminder.  We need mcs magic to handle security attributes in
	corlib.

2002-01-07  Duco Fijma <duco@lorentz.xs4all.nl>
	* Created IAppDomainSetup.cs

2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>
	* Created System._AppDomain interface in _AppDomain.cs

2002-01-06  Nick Drochak  <ndrochak@gol.com>

	* ResolveEventArgs.cs: New File, completely implemented! ;)

Sat Jan 5 15:53:50 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Enum.cs: dummy ToString impl.
	* String.cs: dummy format implementations to get compiler errors
	somewhat working.
	* Type.cs: implemented filter delegates. FindMembers runs the filter, now.

2002-01-05  Ravi Pratap  <ravi@ximian.com>

	* TODOAttribute.cs : Augment some more; provide two constructors
	with support for a comment too.

2002-01-05  Nick Drochak  <ndrochak@gol.com>

	* Uncommented those MonoTODO's now that Ravi's got
	the class in there

2001-01-04  Ravi Pratap  <ravi@ximian.com>

	* TODOAttribute.cs : Actually add this time ;-)

	Change name to MonoTODO.

2002-01-04  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs (Trim): Fixed a few logic bugs in the code that
	calculated how much to trim off the end of the string.

2001-01-04  Nick Drochak  <ndrochak@gol.com>
	
	* Commented out the [TODO] attributes for now.  We don't have the
	class written.  Also changed it to [MonoTODO]

2002-01-04  Ravi Pratap  <ravi@ximian.com>

	* TODOAttribute.cs : Add. We use this attribute to tag all bits in
	our class libraries that are incomplete.

	* Array.cs : Apply attribute wherever we find a FIXME which says
	we need something to be implemented there.

	* Int32.cs : Ditto.

	* MulticastDelegate.cs : Ditto.

	* RuntimeFieldHandler.cs, RuntimeMethodHandle.cs,
	RuntimeTypeHandle.cs : Ditto.

	* String.cs : Ditto.

	* Type.cs : Ditto.

	* Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs, Delegate.cs : Ditto.

	* Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs, Single.cs, 
	UInt16.cs, UInt32.cs, ValueType.cs: Ditto.

	* Byte.cs, Char.cs, ContextBoundObject.cs, DateTime.cs,
	Delegate.cs : Ditto.

	* Enum.cs, Environment.cs, Exception.cs, Int64.cs, SByte.cs,
	Single.cs, UInt16.cs, UInt32.cs, ValueType.cs: Ditto.
	
Thu Jan 3 23:24:04 CET 2002 Paolo Molaro <lupus@ximian.com>

	* Delegate.cs: add Remove() stub.
	* Enum.cs: add ToObject().
	* Type.cs: add IsEnum property.

2002-01-03  Kristian Rietveld  <kris@gtk.org>

        * Convert.cs: add non-CLS-compliant ToBoolean methods for char,
        DateTime and object.

2001-12-30  Nick Drochak  <ndrochak@gol.com>

	* Byte.cs (Parse): Add comments to aid in testing.

2001-12-21  Miguel de Icaza  <miguel@ximian.com>

	* Char.cs (Parse): Implement.

	* Byte.cs (Parse): Implement a fast parser.
	
	* SByte.cs (Parse): Implement a fast parser.

	* UInt16.cs (Parse): Implement a fast parser.
	
	* Int16.cs (Parse): Implement a fast parser.

	* UInt32.cs (Parse): Implement a fast parser.

	* Int32.cs (Parse): Implement a fast parser.

Fri Dec 21 15:14:52 CET 2001 Paolo Molaro <lupus@ximian.com>

	* Array.cs: fix null ref in sort code.
	* UInt64.cs: add bare-bones parse.

Thu Dec 20 15:29:52 CET 2001 Paolo Molaro <lupus@ximian.com>
	
	* Byte.cs: removed use of Regexes.

Tue Dec 18 18:39:54 CET 2001 Paolo Molaro <lupus@ximian.com>

	* Enum.cs: implemented GetValues(), GetNames(), GetName(),
	IsDefined(), GetUnderlyingType().
	* String.cs: fix one instance of Compare().
	* Type.cs: implemented GetProperties(), GetProperty().

Thu Dec 13 20:10:57 CET 2001 Paolo Molaro <lupus@ximian.com>

	* Array.cs: implement CopyTo ().
	* Char.cs: implement ToString ().
	* Exception.cs: bugfix.
	* Int32.cs: bare-bones Parse ().
	* MonoType.cs: query the needed info with an internalcall.
	* String.cs: speedups, bugfixes, reduced copies.
	* Type.cs: added missing fields. Implemented many of the Is*
	properties. Implemented GetMethod(), GetConstructor(), GetMethods(),
	GetFields(), FindMembers(), ToString().
	
2001-12-11  Dick Porter  <dick@ximian.com>

	* DateTime.cs: Implemented FromFileTime() and ToFileTime()

	* Console.cs: Use handles rather than casting file descriptors

2001-12-08  Nick Drochak  <ndrochak@gol.com>

	* Byte.cs (Parse): Start implementation. Parse(string) works, but
	now we need to handle other formats

2001-12-06  Dietmar Maurer  <dietmar@ximian.com>

	* DateTime.cs: added an icall to GetNow()

2001-12-04  Dietmar Maurer  <dietmar@ximian.com>

	* Double.cs: added the parse method from Bob Smith

2001-11-28  Miguel de Icaza  <miguel@ximian.com>

	* UInt64.cs: ditto.

	* UInt32.cs: ditto.

	* Int32.cs (Int32.CompareTo): Fix because we can not just
	substract the values.

	Return possitive value if the object is null.

	* Boolean.cs: (Boolean.CompareTo): ditto.

	* Int16.cs (Int16.CompareTo): ditto.

	* Byte.cs (Byte.CompareTo): ditto.

	* SByte.cs (SByte.CompareTo): ditto.

	* Char.cs (Char.CompareTo): ditto.
	
	* Decimal.cs (Decimal.CompareTo): ditto.

	* Int64.cs (Int64.CompareTo): ditto.

	* Single.cs: Ditto.

	* UInt16.cs: Ditto.

2001-11-28  Nick Drochak <ndrochak@gol.com>

	* Byte.cs: Throw NotImplementedException for Parse.

2001-11-27  Derek Holden  <dholden@draper.com>

	* IntegerFormatter.cs: Formatting of type "Number" was not
	using NumberFormatInfo.NumberNegativePattern.

2001-11-26  Dick Porter  <dick@ximian.com>

	* LocalDataStoreSlot.cs: No need to delete a system TLS slot in
	the finalise routine any more

2001-11-21  Miguel de Icaza  <miguel@ximian.com>

	* ApplicationException.cs: internationalize by adding calls to
	Locale.GetText ().  And throw NotImplementedExceptions on calls
	that we have to implement.

	* Version.cs: Ditto.

	* ValueType.cs: ditto.

	* UnauthorizedAccessException.cs: ditto.

	* UInt32.cs: ditto.

	* UInt64.cs: ditto.

	* UInt16.cs: ditto.

	* TypeLoadException.cs: ditto

	* TypeInitializationException.cs: ditto.

	* Type.cs: ditto.

	* TimeSpan.cs: ditto.

	* SystemException.cs: ditto.

	* String.cs: ditto.

	* StackOverflowException.cs: ditto.x

	* Single.cs: ditto.

	* SByte.cs: ditto.

	* RuntimeTypeHandle.cs: ditto.

	* RuntimeMethodHandle.cs: ditto.

	* RuntimeFieldHandle.cs: ditto.

	* Random.cs: ditto.

	* OutOfMemoryException.cs: ditto.

	* OperatingSystem.cs: ditto.

	* ObjectDisposedException.cs: ditto.

	* NullReferenceException.cs: ditto.

	* NotImplementedException.cs: ditto.

	* NotFiniteNumberException.cs: ditto.o

	* MulticastNotSupportedException.cs: ditto.

	* MissingMethodException.cs: ditto.

	* MemberAccessException.cs: ditto.

	* Math.cs: ditto.

	* InvalidCastException.cs: ditto.

	* IntegerFormatter.cs: ditto.

	* Int32.cs: ditto.

	* Int16.cs: ditto.

	* IndexOutOfRangeException.cs: ditto.

	* Environment.cs: ditto

	* Enum.cs: ditto.

	* DuplicateWaitObjectException.cs: ditto.

	* DivideByZeroException.cs: ditto.

	* Delegate.cs: ditto

	* DecimalFormatter.cs: ditto.

	* Decimal.cs: ditto.

	* DateTime.cs: ditto.

	* Convert.cs: ditto.

	* Char.cs: ditto.

	* Byte.cs: ditto.

	* Boolean.cs: ditto.

	* ArrayTypeMismatchException.cs: ditto.

	* ArithmeticException.cs: ditto.

	* ArgumentOutOfRangeException.cs: ditto.

	* ArgumentNullException.cs: ditto.

	* Enum.cs: Make it derive from ValueType, add CompareTo method.

	* Attribute.cs: Reformat.

2001-11-14  Miguel de Icaza  <miguel@ximian.com>

	* Decimal.cs, Double.cs, Byte.cs, Char.cs, Int16, UInt16, Int32,
	UInt32, Int64, UInt64, SByte, Single (CompareTo): Throw the
	exception if the value is null too.

	* Char.cs (CompareTo): ditto.

	* ApplicationException.cs: Added constructor that does serialization.

	* ParamArrayAttribute.cs: Define attribute correctly.

Wed Nov 14 16:31:19 CET 2001 Paolo Molaro <lupus@ximian.com>

	* AppDomain.cs: rename dummy interface _AppDomain to AppDomain_Intf.
	* Array.cs: fix Array.Copy.
	* AssemblyLoadEventArgs.cs: rename field.
	* CLSCompliantAttribute.cs: use correct name for the class.
	* Char.cs: fix IsLetter.
	* Console.cs, DateTime.cs, Decimal.cs, IConvertible.cs, Math.cs,
	SByte.cs, UInt16.cs, UInt32.cs, UInt64.cs, UIntPtr.cs: CLSCompliant updates.
	* Convert.cs: CLSCompliant updates, add ChangeType() methods.
	* Delegate.cs: renamed target field to m_target.
	* Enum.cs: added missing methods.
	* MonoType.cs: add a constructor and some needed properties.
	* Object.cs: implement GetType().
	* String.cs: CLSCompliant updates. Fixes everywhere to remove the
	ending 0 char.
	* Type.cs: add missing methods/properties.

2001-11-10  Sean MacIsaac  <macisaac@ximian.com>

	* AttributeUseage.cs: Should define AttributeUsageAttribute.

	* CLSCompliant.cs: Marked with AttributeUsage attribute.

	* Decimal.cs: Fixed CLSCompliant attributes.

	* Type.cs: changed _impl to internal (needs to be accessable by
	subclasses).

	(TypeHandle): Marked as abstract, implementation removed.

	(IsNotPublic, IsPublic, GetMethods, GetPropery, GetConstructor,
	GetMethod): Added stub implementations so NUnit would link against
	corlib

Tue Nov 6 09:11:43 CET 2001 Paolo Molaro <lupus@ximian.com>

	* AppDomain.cs: use an internal constructor for AssemblyBuilder.

2001-11-05  Miguel de Icaza  <miguel@ximian.com>

	* NonSerializedAttribute.cs: Add AttributeUsage rules for this
	attribute. 

Fri Nov 2 18:23:15 CET 2001 Paolo Molaro <lupus@ximian.com>

	* String.cs: fix a couple of bugs.
	* AppDomain.cs: use new AppBuilder constructor.
	* Buffer.cs, GC.cs, NonSerializedAttribute.cs,
	NotImplementedException.cs, ObjectDisposedException.cs,
	UnauthorizedAccessException.cs: add implementation.
	* OverflowException.cs: fix class name.

2001-10-28  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs: Don't use a terminating nil char for our internal
	array.

2001-10-27  Miguel de Icaza  <miguel@ximian.com>

	* Delegate.cs (Delegate.CombineImpl): Implement.
	(Delegate.Combine): Implement.

	* MulticastDelegate.cs (MulticastDelegate.Equals): Implement.

	(MulticastDelegate.CombineImpl): This was not as trivial as I
	thought. 

	* ContextStaticAttribute.cs: Added AttributeUsage to
	ContextStaticAttribute. 

	* FlagsAttribute.cs: Add AttributeUsage to FlagsAttribute

2001-10-15  Martin Weindel <martin.weindel@t-online.de>

        * added Decimal.cs * added DecimalFormatter.cs (internal class
	used from System.Decimal)

2001-10-11  Thomas Neidhart <tome@sbox.tugraz.at>

	* Convert.cs: Added methods for Base64 transforming just used the
	  existing System.Security.Cryptography.ToBase64Transform, should
	  be changed to use a stand-alone class, e.g. Base64Encoder
	  
2001-10-10  Derek Holden  <dholden@draper.com>

	* IntegerFormatter.cs: Added. Implements ToString for all the
	integer data types for all the format types.

	* Byte.cs: Using IntegerFormatter for ToString's.

	* SByte.cs: Using IntegerFormatter for ToString's.

	* Int16.cs: Using IntegerFormatter for ToString's.

	* Int32.cs: Using IntegerFormatter for ToString's.

	* Int64.cs: Using IntegerFormatter for ToString's.

	* UInt16.cs: Using IntegerFormatter for ToString's.

	* UInt32.cs: Using IntegerFormatter for ToString's.

	* UInt64.cs: Using IntegerFormatter for ToString's.

2001-10-07  Miguel de Icaza  <miguel@ximian.com>

	* Exception.cs: Implement bits of serialization.

	* RuntimeFieldHandle.cs: Implement Serialization features.

	* Type.cs: Implement TypeHandle property.

2001-09-28  Dick Porter  <dick@ximian.com>

	* LocalDataStoreSlot.cs: Implemented

Tue Sep 25 19:58:14 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* String.cs: fix off-by-one error in Trim().

Tue Sep 25 18:52:14 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* Type.cs: added GetType () method.

Tue Sep 25 17:29:02 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* MissingMethodException.cs, MissingMemberException.cs,
	MemberAccessException.cs: added.

Tue Sep 25 16:46:43 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* String.cs: don't access the string array out of bounds in
	LastIndexOf.  * Type.cs: fix return type of the Assembly property.

Mon Sep 24 20:35:24 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* String.cs: make Intern and IsIntern internalcalls.

2001-09-13  Dick Porter  <dick@ximian.com>

	* Type.cs: Added a stub for the IsValueType property.

	* SystemException.cs (System): Added the other constructor, so
	that System.Threading exceptions can inherit it.

2001-09-08  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs (TrimStart): Don't keep looping through the trimchars
	once we've found a match.
	(TrimEnd): Same here.
	(Trim): And finally here.

2001-09-07  Ravi Pratap  <ravi@ximian.com>

	* Char.cs (IsLetterOrDigit): Implement.
	(IsLower): Implement, but we need to be Unicode aware.
	(IsNumber): Implement.
	(IsPunctuation): Implement.
	(IsWhiteSpace): Implement.
	(ToUpper): Fix to subtract 32 from the ASCII value, not 33 :)
	(ToLower): Same here.

2001-09-04  Miguel de Icaza  <miguel@ximian.com>

	* Object.cs: Shortcut, if (a == b) then return true.

Fri Sep 7 18:34:48 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* Delegate.cs: we need a pointer to the method thunk in
	the delegate object.

Fri Sep 7 12:28:01 CEST 2001 Paolo Molaro <lupus@ximian.com>

	* AsyncCallback.cs, common.src: add AsyncCallback delegate.

2001-09-06  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs (System): Don't mix uint and int.

2001-09-04  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs (BoyerMoore): Modified to not use pointers and to instead
	use indexes.
	(IndexOf): Use BoyerMoore.

2001-09-02  Miguel de Icaza  <miguel@ximian.com>

	* All over: Use the autogenerated enumerations from the ECMA
	documentation that Sergey wrote.
	
	* PlatformID.cs: Add Unix definition.

	* OperatingSystem.cs: Use Unix instead of Linux here.

	* MarshalByRefObject.cs: Mark class as [Serializable].

2001-08-28  Dietmar Maurer  <dietmar@ximian.com>

	* Console.cs: impl. (write only)
	implemented the stdin stuff

	* Int32.cs: impl. real op_Equal

2001-08-24  Miguel de Icaza  <miguel@ximian.com>

	* (common.src): Removed IAsyncResult as it is not on CVS yet.

	* UIntPtr.cs: Removed CLSCompliant attribute before the namespace,
	as it breaks the build.

2001-08-23  Michael Lambert <michaellambert@email.com>

	* IntPtr.cs: Optimized unsafe declaration, implemented GetObjectData, 
	added CLSCompliant attribute

	* IAsyncResult.cs: Added

	* common.src: Added IAsyncResult.cs

2001-08-23  Michael Lambert <michaellambert@email.com>

	* UIntPtr.cs: Added

	* common.src: Added UIntPtr.cs

2001-08-20  Dietmar Maurer  <dietmar@ximian.com>

	* Attribute.cs: uncomment some code to make it compile again

	* mono.src: removed duplicated Attribute.cs

2001-08-16  Nick Drochak <ndrochak@gol.com>

	* Attribute.cs: implemented all methods except GetHashCode()

	* common.src: added Attribute.cs so it would compile in

2001-08-10  Dietmar Maurer  <dietmar@ximian.com>

	* Object.cs: changed MemberWiseClone to MemberwiseClone, and
	marked it as InternalCall
	
	* common.src: removed UriFormatException.cs because the file is
	not there.

	* RuntimeTypeHandle.cs: replaced IntrPtr with IntPtr
	* Char.cs: replaced byte with char

	* Array.cs: make it work with the mono interpreter

2001-08-06  Miguel de Icaza  <miguel@ximian.com>

	* Version.cs: Make the class sealed

2001-08-08  Bob Smith  <bob@thestuff.net>

        * Random.cs: Many compile fixes.
        * Random.cs: I read a bad spec. Class updated to match real spec.

2001-08-06  Miguel de Icaza  <miguel@ximian.com>

	* IntPtr.cs: Added and Completed implementation.

	* Uri.cs: Add a note.

2001-08-06  Bob Smith  <bob@thestuff.net>

        * Random.cs: Compile fix. Needs more testing.

2001-08-06 Garrett Rooney <rooneg@electricjellyfish.net>

	* Uri.cs: Initial Implementation.  Parsing needs to be fixed to take 
	into account IPv6 addresses, url encoding needs to be implemented, and 
	various minor methods need to be written, but this is a decent start.

2001-08-06  Dietmar Maurer  <dietmar@ximian.com>

	* common.src: added Object.cs

	* mono.src: added ValueType.cs

2001-08-02  Dietmar Maurer  <dietmar@ximian.com>

	* Math.cs: replaced libc with libm

2001-08-02  Bob Smith  <bob@thestuff.net>

        * Random.cs: Implemented. Needs testing.

2001-08-02  Miguel de Icaza  <miguel@ximian.com>

	* IServiceProvider.cs, EventHandler.cs: New files.

2001-08-02  Marcel Narings  <marcel@narings.nl>
	
	* DateTime.cs: Cleaned up a bit. Added the Add* family members.
	Added exceptions. Added IConvertible. Still needs some platform 
	dependend stuff, the Parse and ToString members

2001-08-01  Dietmar Maurer  <dietmar@ximian.com>

	* Type.cs (GetTypeFromHandle): added placeholder 

2001-07-24  Derek Holden  <dholden@draper.com>

	* Boolean.cs: Formatted to code style standard. Added GetTypeCode
	which is really an IConvertible defined method.

	* Byte.cs: Added a missing Parse method. Put in Parse and ToString
	behavior, still need to do the main Parse and ToString.

	* Char.cs: Added a bunch of missing ECMA methods. Commented a
	specification discrepency. Still didn't any unicode stuff, though
	every IsFoo(char c) method has an IsFoo(string, index)
	counterpart, added wrappers for those.
	
	* Convert.cs: Fixed NaN/Inf checking and double/float
	rounding. Added ToType for IConvertible classes

	* Double.cs: Fixed ECMA min and max values. Added IsInfinity /
	IsNaN methods. Changed Inf/NaN internals.

	* IConvertible.cs: Added comments for using
	Convert.ToType. Changed return values to draft base values.

	* Int16.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.

	* Int32.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.

	* Int64.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.
	
	* Single.cs: Put in ECMA epsilon value. Added IsInfinity / IsNaN
	methods. Changed Inf/NaN internals.

	* SByte.cs: Added a missing Parse method. Put in Parse and
	ToString behavior, still need to do the main Parse and ToString.

	* UInt16.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.

	* UInt32.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.

	* UInt64.cs: Added a missing Parse statement. Put in behavior for
	overloaded ToString and Parse methods.
	
2001-07-20  Miguel de Icaza  <miguel@ximian.com>

	* MulticastDelegate.cs: New File.

	* Delegate.cs: New file.

	* Enum.cs: New file.

	* Attribute.cs: New file.

	* Type.cs: New file.

	* ParamArrayAttribute.cs: New file.

	* RuntimeTypeHandle.cs: New file.

	* MulticastDelegate.cs: Added.

	* DateTime.cs: Added

	* Delegate.cs: Added

2001-07-18  Michael Lambert <michaellambert@email.com>

        * AttributeTargets.cs: Add.

2001-07-19  Jeffrey Stedfast  <fejj@ximian.com>

	* Char.cs: Made ToUpper and ToLower public methods.

	* String.cs: Lots and lots of compile fixes - just need to write
	DateTime.cs and this should build completely now.

2001-07-19  Bob Smith (bob@thestuff.net)

	* Math.cs: Implemented. 

2001-07-19  Miguel de Icaza  <miguel@ximian.com>

	* String.cs: Removed tolower and toupper.

	* Char.cs: Moved ToLower and ToUpper from string to here. 

	* Convert.cs ToByte (float value), ToByte (double value) Use IsNan
	instead of comparing the value to Nan.

2001-07-19  Duco Fijma (duco@lorentz.xs4all.nl)

	* TimeSpan.cs: New implementation.

2001-07-18  Scott Sanders <scott@stonecobra.com>

         * UriFormatExcpetion.cs: Add - 85% complete

2001-07-17  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs (IndexOf): Slight optimization that allows skipping
	over a few chars here and there. This isn't as good as using my
	Boyer-Moore implementation, however, Boyer-Moore is only really
	good for long strings (I plan on making the code decide which
	string search algorithm it should use on-the-fly at some point).
	(LastIndexOf): Fix to work correctly.
	(BoyerMoore): Took out some unneeded code and fixed an edge-case.

2001-07-16  Michael Lambert <michaellambert@email.com>

	* EventArgs.cs: Add.
	
2001-07-16  Miguel de Icaza  <miguel@ximian.com>

	* Version.cs: Remove my buggy comment.

2001-07-15  Sean MacIsaac  <macisaac@ximian.com>

	* String.cs: Spelling error of IComparable, object's
	MemberwiseClone cannot be overridden.  Made indexer valid for now,
	but not sure what to do about this in the long run.  Seems to be a
	couple bugs in csc.exe having to do with multiple pointer defs in
	the same statement, and returning subclasses of a class in the
	return type of an interface function implementation.  Also moved
	operators inside of class definition.

2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs: A tom of compile fixes, although we still don't compile.

	* IConvertible.cs: The To*Int64() methods return *Int64's, not
	*Int32's. Also, it's ToDateTime() not ToDateType().

2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs: Apparently I needed to at least write stubs for the
	IConvertible interfaces. *sigh*

2001-07-14  Jeffrey Stedfast  <fejj@ximian.com>

	* String.cs: Many logic/other fixes and better usage of the
	features of c#
	(tolower): New convenience method to help condense code.
	(toupper): Another new helper method.
	(Compare): Use the new helper methods.
	(ToLower): use tolower().
	(ToUpper): use toupper().
	(LastIndexOfAny): Implemented.
	(BoyerMoore): New private helper method that implements a modified
	version of the Boyer-Moore search algorithm. Noothing uses it yet
	as I'm not 100% sure it even works properly with unicode strings
	not to mention it uses a huge lookup-table :-)
	(Split): Implemented.

2001-07-13  Jeffrey Stedfast  <fejj@ximian.com>

	* TODO: Added things that need to be finished in System.String

	* String.cs: New source file implementing the System.String class

2001-07-12  Sean MacIsaac  <macisaac@ximian.com>

	* TypeCode.cs: UInt64 was UInt63.

	* Object.cs: Fixed a numer of compiler errors.

	* Array.cs: Fixed some compiler errors.

	* IComparable.cs: Fixed some compiler errors.

	* ICloneable.cs: Fixed some compiler errors.

	* IConvertible.cs: Fixed some compiler errors.

	* IFormattable.cs: Fixed a compiler error.

	* IFormatProvider.cs: Fixed a compiler error.

	* IDisposable.cs: Fixed a compiler error.

	* IFormatProvider.cs: Added public accesability type to
	IFormatProvider.

	* Exception.cs: Added a using statement to remove compile time
	error.

	* ApplicationException.cs: Removed a ; that was causing a compiler
	error.

	* Int16.cs: Fixed some compiler errors.

	* Int32.cs: Fixed some compiler errors.

	* Int64.cs: Fixed some compiler errors.

	* SystemException.cs: Fixed a compiler error.

	* UInt16.cs: Fixed some compiler errors.

	* UInt32.cs: Fixed some compiler errors.

	* UInt64.cs: Fixed some compiler errors.

	* Void.cs: Fixed a compiler error.	

2001-07-12  Joe Shaw  <joe@ximian.com>

	* Array.cs: Fix backwards parameters to Array.SetValue()
	throughout.
	(BinarySearch): Fix backward logic surrounding whether to call
	value.CompareTo or comparer.Compare.
	(LastIndexOf): Stop being stupid. I am so not used to strongly
	bounded arrays...
	(Sort): Implement a quicksort.

2001-07-11  Joe Shaw  <joe@ximian.com>

	* Array.cs: Change all instances of trying to access an array with
	the index operator to calls to GetValue and SetValue, and add
	InternalGetValue and InternalSetValue which are internal calls
	into the runtime. Ew.

2001-07-10  Joe Shaw  <joe@ximian.com>

	* Array.cs: Implemented everything but Sort().

2001-07-09  Jeffrey Stedfast  <fejj@ximian.com>

	* Object.cs (Object::Equals): Object variable name is `o'.

2001-07-06  Joe Shaw  <joe@ximian.com>

	* Int16.cs, Int32.cs, Int64.cs, UInt16.cs, UInt32.cs, UInt64.cs:
	Implement the IComparable and IFormattable interfaces. Fix a typo
	(publig -> public)

	* ApplicationException.cs, ArgumentException.cs,
	ArgumentNullException.cs, ArgumentOutOfRangeException.cs,
	ArtithmeticException.cs, ArrayTypeMismatchException.cs,
	DivideByZeroException.cs, DuplicateWaitObjectException.cs,
	ExecutionEngineException.cs, FormatException.cs,
	IndexOutOfRangeException.cs, InvalidCastException.cs,
	InvalidOperationException.cs, InvalidProgramException.cs,
	MulticateNotSupportedException.cs, NotFiniteNumberException.cs,
	NotSupportedException.cs, NullReferenceException.cs,
	OutOfMemoryException.cs, OverflowException.cs, RankException.cs,
	StackOverflowException.cs, SystemException.cs,
	TypeInitializationException.cs: Added all of the exceptions
	specified by the language spec. Mmmm... bloat.

2001-07-06  Miguel de Icaza  <miguel@ximian.com>

	* Int64.cs, Int32.cs: Put.  Parsing and ToString missing.  Should
	do a generic routine all of these guys use.

	* Int16.cs: identified missing methods.

	* UInt16.cs, UInt32.cs, UInt64.cs: Add.

2001-06-26  Miguel de Icaza  <miguel@ximian.com>

	* TypeCode.cs: Implement

	* Void.cs: Implement.

	* TODO: Add file to keep track of pending tasks.

	* Object.cs, ValueType.cs: Implement.