File: XmlValueConverter.cs

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (3368 lines) | stat: -rw-r--r-- 176,295 bytes parent folder | download | duplicates (6)
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
//------------------------------------------------------------------------------
// <copyright file="XmlValueConverter.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
//------------------------------------------------------------------------------
using System;
using System.Xml;
using System.Xml.XPath;
using System.Globalization;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.Xml.Schema;
using System.IO;
using System.Text;
using System.Runtime.InteropServices;

namespace System.Xml.Schema {

    //
    // NOTE!!! LARGE PORTIONS OF THIS FILE ARE AUTOGENERATED BY GENERATECONVERTER.CS.  DO NOT MANUALLY CHANGE ANY CODE
    //         WITHIN #REGION.  INSTEAD, MODIFY GENERATECONVERTER.CS.
    //

    // SUMMARY
    // =======
    // For each Xml type, there is a set of Clr types that can represent it.  Some of these mappings involve
    // loss of fidelity.  For example, xsd:dateTime can be represented as System.DateTime, but only at the expense
    // of normalizing the time zone.  And xs:duration can be represented as System.TimeSpan, but only at the expense
    // of discarding variations such as "P50H", "P1D26H", "P2D2H", all of which are normalized as "P2D2H".
    //
    // Implementations of this class convert between the various Clr representations of Xml types.  Note that
    // in *no* case is the Xml type ever modified.  Only the Clr type is changed.  This means that in cases where
    // the Xml type is part of the representation (such as XmlAtomicValue), the destination value is guaranteed
    // to have the same Xml type.
    //
    // For all converters, converting to typeof(object) is identical to converting to XmlSchemaType.Datatype.ValueType.
    //
    //
    // ATOMIC MAPPINGS
    // ===============
    //
    // -----------------------------------------------------------------------------------------------------------
    // Source/Destination   System.String                       Other Clr Type
    // -----------------------------------------------------------------------------------------------------------
    // System.String        No-op conversion.                   Use Xsd rules to convert from the string
    //                                                          to primitive, full-fidelity Clr type (use
    //                                                          XmlConvert where possible).  Use Clr rules
    //                                                          to convert to destination type.
    // -----------------------------------------------------------------------------------------------------------
    // Other Clr Type       Use Clr rules to convert from       Use Clr rules to convert from source to
    //                      source type to primitive, full-     destination type.
    //                      fidelity Clr type.  Use Xsd rules
    //                      to convert to a string (use
    //                      XmlConvert where possible).         
    // -----------------------------------------------------------------------------------------------------------
    //
    //
    // LIST MAPPINGS
    // =============
    // The following Clr types can be used to represent Xsd list types: IList, ICollection, IEnumerable, Type[],
    // String.
    //
    // -----------------------------------------------------------------------------------------------------------
    // Source/Destination   System.String                           Clr List Type
    // -----------------------------------------------------------------------------------------------------------
    // System.String        No-op conversion                        Tokenize the string by whitespace, create a
    //                                                              String[] from tokens, and follow List => List 
    //                                                              rules.
    // -----------------------------------------------------------------------------------------------------------
    // Clr List Type        Follow List => String[] rules,          Create destination list having the same length
    //                      then concatenate strings from array,    as the source list.  For each item in the
    //                      separating adjacent strings with a      source list, call the atomic converter to
    //                      single space character.                 convert to the destination type.  The destination
    //                                                              item type for IList, ICollection, IEnumerable
    //                                                              is typeof(object).  The destination item type
    //                                                              for Type[] is Type.
    // -----------------------------------------------------------------------------------------------------------
    //
    //
    // UNION MAPPINGS
    // ==============
    // Union types may only be represented using System.Xml.Schema.XmlAtomicValue or System.String.  Either the
    // source type or the destination type must therefore always be either System.String or
    // System.Xml.Schema.XmlAtomicValue.
    //
    // -----------------------------------------------------------------------------------------------------------
    // Source/Destination   System.String           XmlAtomicValue          Other Clr Type
    // -----------------------------------------------------------------------------------------------------------
    // System.String        No-op conversion        Follow System.String=>  Call ParseValue in order to determine
    //                                              Other Clr Type rules.   the member type.  Call ChangeType on
    //                                                                      the member type's converter to convert
    //                                                                      to desired Clr type.
    // -----------------------------------------------------------------------------------------------------------
    // XmlAtomicValue       Follow XmlAtomicValue   No-op conversion.       Call ReadValueAs, where destinationType
    //                      => Other Clr Type                               is the desired Clr type.
    //                      rules.
    // -----------------------------------------------------------------------------------------------------------
    // Other Clr Type       InvalidCastException   InvalidCastException     InvalidCastException
    // -----------------------------------------------------------------------------------------------------------
    //
    //
    // EXAMPLES
    // ========
    //
    // -----------------------------------------------------------------------------------------------------------
    //            Source    Destination
    // Xml Type   Value     Type             Conversion Steps                  Explanation
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     "10"      Byte             "10" => 10M => (byte) 10          Primitive, full-fidelity for xs:int
    //                                                                         is a truncated decimal
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     "10.10"   Byte             FormatException                   xs:integer parsing rules do not
    //                                                                         allow fractional parts
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     10.10M    Byte             10.10M => (byte) 10               Default Clr rules truncate when
    //                                                                         converting from Decimal to Byte
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     10.10M    Decimal          10.10M => 10.10M                  Decimal => Decimal is no-op
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     10.10M    String           10.10M => 10M => "10"
    // -----------------------------------------------------------------------------------------------------------
    // xs:int     "hello"   String           "hello" => "hello"                String => String is no-op
    // -----------------------------------------------------------------------------------------------------------
    // xs:byte    "300"     Int32            "300" => 300M => (int) 300
    // -----------------------------------------------------------------------------------------------------------
    // xs:byte    300       Byte             300 => 300M => OverflowException  Clr overflows when converting from
    //                                                                         Decimal to Byte
    // -----------------------------------------------------------------------------------------------------------
    // xs:byte    300       XmlAtomicValue   new XmlAtomicValue(xs:byte, 300)  Invalid atomic value created
    // -----------------------------------------------------------------------------------------------------------
    // xs:double  1.234f    String          1.234f => 1.2339999675750732d =>   Converting a Single value to a Double
    //                                      "1.2339999675750732"               value zero-extends it in base-2, so
    //                                                                         "garbage" digits appear when it's
    //                                                                         converted to base-10.
    // -----------------------------------------------------------------------------------------------------------
    // xs:int*    {1, "2",  String          {1, "2", 3.1M} =>                  Delegate to xs:int converter to
    //            3.1M}                     {"1", "2", "3"} => "1 2 3"         convert each item to a string.
    // -----------------------------------------------------------------------------------------------------------
    // xs:int*    "1 2 3"   Int32[]         "1 2 3" => {"1", "2", "3"} =>
    //                                      {1, 2, 3}
    // -----------------------------------------------------------------------------------------------------------
    // xs:int*    {1, "2",  Object[]        {1, "2", 3.1M} =>                  xs:int converter uses Int32 by default,
    //            3.1M}                     {(object)1, (object)2, (object)3}  so returns boxed Int32 values.
    // -----------------------------------------------------------------------------------------------------------
    // (xs:int |  "1 2001"  XmlAtomicValue[]  "1 2001" => {(xs:int) 1,
    // xs:gYear)*                             (xs:gYear) 2001}
    // -----------------------------------------------------------------------------------------------------------
    // (xs:int* | "1 2001"  String          "1 2001"                           No-op conversion even though
    // xs:gYear*)                                                              ParseValue would fail if it were called.
    // -----------------------------------------------------------------------------------------------------------
    // (xs:int* | "1 2001"  Int[]           XmlSchemaException                 ParseValue fails.
    // xs:gYear*)
    // -----------------------------------------------------------------------------------------------------------
    //
    internal abstract class XmlValueConverter {
        public abstract bool ToBoolean(bool value);
        public abstract bool ToBoolean(long value);
        public abstract bool ToBoolean(int value);
        public abstract bool ToBoolean(decimal value);
        public abstract bool ToBoolean(float value);
        public abstract bool ToBoolean(double value);
        public abstract bool ToBoolean(DateTime value);
        public abstract bool ToBoolean(DateTimeOffset value);
        public abstract bool ToBoolean(string value);
        public abstract bool ToBoolean(object value);

        public abstract int ToInt32(bool value);
        public abstract int ToInt32(int value);
        public abstract int ToInt32(long value);
        public abstract int ToInt32(decimal value);
        public abstract int ToInt32(float value);
        public abstract int ToInt32(double value);
        public abstract int ToInt32(DateTime value);
        public abstract int ToInt32(DateTimeOffset value);
        public abstract int ToInt32(string value);
        public abstract int ToInt32(object value);

        public abstract long ToInt64(bool value);
        public abstract long ToInt64(int value);
        public abstract long ToInt64(long value);
        public abstract long ToInt64(decimal value);
        public abstract long ToInt64(float value);
        public abstract long ToInt64(double value);
        public abstract long ToInt64(DateTime value);
        public abstract long ToInt64(DateTimeOffset value);
        public abstract long ToInt64(string value);
        public abstract long ToInt64(object value);

        public abstract decimal ToDecimal(bool value);
        public abstract decimal ToDecimal(int value);
        public abstract decimal ToDecimal(long value);
        public abstract decimal ToDecimal(decimal value);
        public abstract decimal ToDecimal(float value);
        public abstract decimal ToDecimal(double value);
        public abstract decimal ToDecimal(DateTime value);
        public abstract decimal ToDecimal(DateTimeOffset value);
        public abstract decimal ToDecimal(string value);
        public abstract decimal ToDecimal(object value);

        public abstract double ToDouble(bool value);
        public abstract double ToDouble(int value);
        public abstract double ToDouble(long value);
        public abstract double ToDouble(decimal value);
        public abstract double ToDouble(float value);
        public abstract double ToDouble(double value);
        public abstract double ToDouble(DateTime value);
        public abstract double ToDouble(DateTimeOffset value);
        public abstract double ToDouble(string value);
        public abstract double ToDouble(object value);

        public abstract float ToSingle(bool value);
        public abstract float ToSingle(int value);
        public abstract float ToSingle(long value);
        public abstract float ToSingle(decimal value);
        public abstract float ToSingle(float value);
        public abstract float ToSingle(double value);
        public abstract float ToSingle(DateTime value);
        public abstract float ToSingle(DateTimeOffset value);
        public abstract float ToSingle(string value);
        public abstract float ToSingle(object value);

        public abstract DateTime ToDateTime(bool value);
        public abstract DateTime ToDateTime(int value);
        public abstract DateTime ToDateTime(long value);
        public abstract DateTime ToDateTime(decimal value);
        public abstract DateTime ToDateTime(float value);
        public abstract DateTime ToDateTime(double value);
        public abstract DateTime ToDateTime(DateTime value);
        public abstract DateTime ToDateTime(DateTimeOffset value);
        public abstract DateTime ToDateTime(string value);
        public abstract DateTime ToDateTime(object value);

        public abstract DateTimeOffset ToDateTimeOffset(bool value);
        public abstract DateTimeOffset ToDateTimeOffset(int value);
        public abstract DateTimeOffset ToDateTimeOffset(long value);
        public abstract DateTimeOffset ToDateTimeOffset(decimal value);
        public abstract DateTimeOffset ToDateTimeOffset(float value);
        public abstract DateTimeOffset ToDateTimeOffset(double value);
        public abstract DateTimeOffset ToDateTimeOffset(DateTime value);
        public abstract DateTimeOffset ToDateTimeOffset(DateTimeOffset value);
        public abstract DateTimeOffset ToDateTimeOffset(string value);
        public abstract DateTimeOffset ToDateTimeOffset(object value);

        public abstract string ToString(bool value);
        public abstract string ToString(int value);
        public abstract string ToString(long value);
        public abstract string ToString(decimal value);
        public abstract string ToString(float value);
        public abstract string ToString(double value);
        public abstract string ToString(DateTime value);
        public abstract string ToString(DateTimeOffset value);
        public abstract string ToString(string value);
        public abstract string ToString(string value, IXmlNamespaceResolver nsResolver);
        public abstract string ToString(object value);
        public abstract string ToString(object value, IXmlNamespaceResolver nsResolver);

        public abstract object ChangeType(bool value, Type destinationType);
        public abstract object ChangeType(int value, Type destinationType);
        public abstract object ChangeType(long value, Type destinationType);
        public abstract object ChangeType(decimal value, Type destinationType);
        public abstract object ChangeType(float value, Type destinationType);
        public abstract object ChangeType(double value, Type destinationType);
        public abstract object ChangeType(DateTime value, Type destinationType);
        public abstract object ChangeType(DateTimeOffset value, Type destinationType);
        public abstract object ChangeType(string value, Type destinationType);
        public abstract object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver);
        public abstract object ChangeType(object value, Type destinationType);
        public abstract object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver);
    }

    internal abstract class XmlBaseConverter : XmlValueConverter {
        private XmlSchemaType schemaType;
        private XmlTypeCode typeCode;
        private Type clrTypeDefault;

        protected XmlBaseConverter(XmlSchemaType schemaType) {

            // XmlValueConverter is defined only on types with simple content
            XmlSchemaDatatype datatype = schemaType.Datatype;
            Debug.Assert(schemaType != null && datatype != null, "schemaType or schemaType.Datatype may not be null");

            while (schemaType != null && !(schemaType is XmlSchemaSimpleType)) {
                schemaType = schemaType.BaseXmlSchemaType;
            }
            if (schemaType == null) { //Did not find any simple type in the parent chain
                schemaType = XmlSchemaType.GetBuiltInSimpleType(datatype.TypeCode); 
            }
            Debug.Assert(schemaType.Datatype.Variety != XmlSchemaDatatypeVariety.List, "schemaType must be list's item type, not list itself");

            this.schemaType = schemaType;
            this.typeCode = schemaType.TypeCode;
            this.clrTypeDefault = schemaType.Datatype.ValueType;
        }

        protected XmlBaseConverter(XmlTypeCode typeCode) {
            switch (typeCode) {
                case XmlTypeCode.Item:
                    this.clrTypeDefault = XPathItemType;
                    break;

                case XmlTypeCode.Node:
                    this.clrTypeDefault = XPathNavigatorType;
                    break;

                case XmlTypeCode.AnyAtomicType:
                    this.clrTypeDefault = XmlAtomicValueType;
                    break;

                default:
                    Debug.Assert(false, "Type code " + typeCode + " is not supported.");
                    break;
            }

            this.typeCode = typeCode;
        }

        protected XmlBaseConverter(XmlBaseConverter converterAtomic) {
            this.schemaType = converterAtomic.schemaType;
            this.typeCode = converterAtomic.typeCode;
            this.clrTypeDefault = Array.CreateInstance(converterAtomic.DefaultClrType, 0).GetType();
        }

        protected XmlBaseConverter(XmlBaseConverter converterAtomic, Type clrTypeDefault) {
            this.schemaType = converterAtomic.schemaType;
            this.typeCode = converterAtomic.typeCode;
            this.clrTypeDefault = clrTypeDefault;
        }

        protected static readonly Type ICollectionType = typeof(ICollection);
        protected static readonly Type IEnumerableType = typeof(IEnumerable);
        protected static readonly Type IListType = typeof(IList);
        protected static readonly Type ObjectArrayType = typeof(object[]);
        protected static readonly Type StringArrayType = typeof(string[]);
        protected static readonly Type XmlAtomicValueArrayType = typeof(XmlAtomicValue[]);

        #region AUTOGENERATED_XMLBASECONVERTER
        protected static readonly Type DecimalType = typeof(decimal);
        protected static readonly Type Int32Type = typeof(int);
        protected static readonly Type Int64Type = typeof(long);
        protected static readonly Type StringType = typeof(string);
        protected static readonly Type XmlAtomicValueType = typeof(XmlAtomicValue);
        protected static readonly Type ObjectType = typeof(object);
        protected static readonly Type ByteType = typeof(byte);
        protected static readonly Type Int16Type = typeof(short);
        protected static readonly Type SByteType = typeof(sbyte);
        protected static readonly Type UInt16Type = typeof(ushort);
        protected static readonly Type UInt32Type = typeof(uint);
        protected static readonly Type UInt64Type = typeof(ulong);
        protected static readonly Type XPathItemType = typeof(XPathItem);
        protected static readonly Type DoubleType = typeof(double);
        protected static readonly Type SingleType = typeof(float);
        protected static readonly Type DateTimeType = typeof(DateTime);
        protected static readonly Type DateTimeOffsetType = typeof(DateTimeOffset);
        protected static readonly Type BooleanType = typeof(bool);
        protected static readonly Type ByteArrayType = typeof(Byte[]);
        protected static readonly Type XmlQualifiedNameType = typeof(XmlQualifiedName);
        protected static readonly Type UriType = typeof(Uri);
        protected static readonly Type TimeSpanType = typeof(TimeSpan);
        protected static readonly Type XPathNavigatorType = typeof(XPathNavigator);
        
        public override bool ToBoolean(bool value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(DateTime value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(DateTimeOffset value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(decimal value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(double value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(int value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(long value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(float value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(string value) {return (bool) ChangeType((object) value, BooleanType, null); }
        public override bool ToBoolean(object value) {return (bool) ChangeType((object) value, BooleanType, null); }
        
        public override DateTime ToDateTime(bool value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(DateTime value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(DateTimeOffset value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(decimal value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(double value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(int value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(long value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(float value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(string value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        public override DateTime ToDateTime(object value) {return (DateTime) ChangeType((object) value, DateTimeType, null); }
        
        public override DateTimeOffset ToDateTimeOffset(bool value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(DateTime value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(DateTimeOffset value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(decimal value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(double value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(int value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(long value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(float value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(string value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        public override DateTimeOffset ToDateTimeOffset(object value) {return (DateTimeOffset) ChangeType((object) value, DateTimeOffsetType, null); }
        
        public override decimal ToDecimal(bool value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(DateTime value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(DateTimeOffset value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(decimal value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(double value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(int value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(long value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(float value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(string value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        public override decimal ToDecimal(object value) {return (decimal) ChangeType((object) value, DecimalType, null); }
        
        public override double ToDouble(bool value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(DateTime value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(DateTimeOffset value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(decimal value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(double value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(int value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(long value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(float value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(string value) {return (double) ChangeType((object) value, DoubleType, null); }
        public override double ToDouble(object value) {return (double) ChangeType((object) value, DoubleType, null); }
        
        public override int ToInt32(bool value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(DateTime value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(DateTimeOffset value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(decimal value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(double value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(int value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(long value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(float value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(string value) {return (int) ChangeType((object) value, Int32Type, null); }
        public override int ToInt32(object value) {return (int) ChangeType((object) value, Int32Type, null); }
        
        public override long ToInt64(bool value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(DateTime value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(DateTimeOffset value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(decimal value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(double value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(int value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(long value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(float value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(string value) {return (long) ChangeType((object) value, Int64Type, null); }
        public override long ToInt64(object value) {return (long) ChangeType((object) value, Int64Type, null); }
        
        public override float ToSingle(bool value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(DateTime value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(DateTimeOffset value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(decimal value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(double value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(int value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(long value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(float value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(string value) {return (float) ChangeType((object) value, SingleType, null); }
        public override float ToSingle(object value) {return (float) ChangeType((object) value, SingleType, null); }
        
        public override string ToString(bool value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(DateTime value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(DateTimeOffset value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(decimal value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(double value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(int value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(long value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(float value) {return (string) ChangeType((object) value, StringType, null); }
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {return (string) ChangeType((object) value, StringType, nsResolver); }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {return (string) ChangeType((object) value, StringType, nsResolver); }
        public override string ToString(string value) {return this.ToString(value, null); }
        public override string ToString(object value) {return this.ToString(value, null); }
        
        public override object ChangeType(bool value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(DateTime value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(DateTimeOffset value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(decimal value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(double value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(int value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(long value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(float value, Type destinationType) {return (object) ChangeType((object) value, destinationType, null); }
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {return (object) ChangeType((object) value, destinationType, nsResolver); }
        public override object ChangeType(string value, Type destinationType) {return this.ChangeType(value, destinationType, null); }
        public override object ChangeType(object value, Type destinationType) {return this.ChangeType(value, destinationType, null); }
        
        #endregion

        /// <summary>
        /// Return this converter's prime schema type (may be null in case of Node, Item, etc).
        /// </summary>
        protected XmlSchemaType SchemaType {
            get { return this.schemaType; }
        }

        /// <summary>
        /// Return the XmlTypeCode of this converter's prime schema type.
        /// </summary>
        protected XmlTypeCode TypeCode {
            get { return this.typeCode; }
        }

        /// <summary>
        /// Return a string representation of this converter's prime schema type.
        /// </summary>
        protected string XmlTypeName {
            get {
                XmlSchemaType type = this.schemaType;

                if (type != null) {
                    while (type.QualifiedName.IsEmpty) {
                        // Walk base classes until one with a name is found (in worst case, all simple types derive from xs:anySimpleType)
                        type = type.BaseXmlSchemaType;
                    }

                    return QNameToString(type.QualifiedName);
                }

                // SchemaType is null in the case of item, node, and xdt:anyAtomicType
                if (this.typeCode == XmlTypeCode.Node) return "node";
                if (this.typeCode == XmlTypeCode.AnyAtomicType) return "xdt:anyAtomicType";

                Debug.Assert(this.typeCode == XmlTypeCode.Item, "If SchemaType is null, then TypeCode may only be Item, Node, or AnyAtomicType");
                return "item";
            }
        }

        /// <summary>
        /// Return default V1 Clr mapping of this converter's type.
        /// </summary>
        protected Type DefaultClrType {
            get { return this.clrTypeDefault; }
        }

        /// <summary>
        /// Type.IsSubtypeOf does not return true if types are equal, this method does.
        /// </summary>
        protected static bool IsDerivedFrom(Type derivedType, Type baseType) {
            while (derivedType != null) {
                if (derivedType == baseType)
                    return true;

                derivedType = derivedType.BaseType;
            }
            return false;
        }

        /// <summary>
        /// Create an InvalidCastException for cases where either "destinationType" or "sourceType" is not a supported CLR representation
        /// for this Xml type.
        /// </summary>
        protected Exception CreateInvalidClrMappingException(Type sourceType, Type destinationType) {
            if (sourceType == destinationType)
                return new InvalidCastException(Res.GetString(Res.XmlConvert_TypeBadMapping, XmlTypeName, sourceType.Name));

            return new InvalidCastException(Res.GetString(Res.XmlConvert_TypeBadMapping2, XmlTypeName, sourceType.Name, destinationType.Name));
        }

        /// <summary>
        /// Convert an XmlQualifiedName to a string, using somewhat different rules than XmlQualifiedName.ToString():
        ///   1. Recognize the built-in xs: and xdt: namespaces and print the short prefix rather than the long namespace
        ///   2. Use brace characters "{", "}" around the namespace portion of the QName
        /// </summary>
        protected static string QNameToString(XmlQualifiedName name) {
            if (name.Namespace.Length == 0) {
                return name.Name;
            }
            else if (name.Namespace == XmlReservedNs.NsXs) {
                return "xs:" + name.Name;
            }
            else if (name.Namespace == XmlReservedNs.NsXQueryDataType) {
                return "xdt:" + name.Name;
            }
            else {
                return "{" + name.Namespace + "}" + name.Name;
            }
        }

        /// <summary>
        /// This method is called when a valid conversion cannot be found.  By default, this method throws an error.  It can
        /// be overriden in derived classes to support list conversions.
        /// </summary>
        protected virtual object ChangeListType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            throw CreateInvalidClrMappingException(value.GetType(), destinationType);
        }


        //------------------------------------------------------------------------
        // From String Conversion Helpers
        //------------------------------------------------------------------------

        protected static byte[] StringToBase64Binary(string value) {
            return Convert.FromBase64String(XmlConvert.TrimString(value));
        }

        protected static DateTime StringToDate(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.Date));
        }

        protected static DateTime StringToDateTime(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.DateTime));
        }

        protected static TimeSpan StringToDayTimeDuration(string value) {
            // Parse string as DayTimeDuration and convert it to a DayTimeDuration TimeSpan (it is an error to have year and month parts)
            return new XsdDuration(value, XsdDuration.DurationType.DayTimeDuration).ToTimeSpan(XsdDuration.DurationType.DayTimeDuration);
        }

        protected static TimeSpan StringToDuration(string value) {
            return new XsdDuration(value, XsdDuration.DurationType.Duration).ToTimeSpan(XsdDuration.DurationType.Duration);
        }

        protected static DateTime StringToGDay(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.GDay));
        }

        protected static DateTime StringToGMonth(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.GMonth));
        }

        protected static DateTime StringToGMonthDay(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.GMonthDay));
        }

        protected static DateTime StringToGYear(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.GYear));
        }

        protected static DateTime StringToGYearMonth(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.GYearMonth));
        }

        protected static DateTimeOffset StringToDateOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.Date));
        }

        protected static DateTimeOffset StringToDateTimeOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.DateTime));
        }

        protected static DateTimeOffset StringToGDayOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.GDay));
        }

        protected static DateTimeOffset StringToGMonthOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.GMonth));
        }

        protected static DateTimeOffset StringToGMonthDayOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.GMonthDay));
        }

        protected static DateTimeOffset StringToGYearOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.GYear));
        }

        protected static DateTimeOffset StringToGYearMonthOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.GYearMonth));
        }

        protected static byte[] StringToHexBinary(string value) {
            try {
                return XmlConvert.FromBinHexString(XmlConvert.TrimString(value), false);
            }
            catch (XmlException e) {
                throw new FormatException(e.Message);
            }
        }

        protected static XmlQualifiedName StringToQName(string value, IXmlNamespaceResolver nsResolver) {
            string prefix, localName, ns;

            value = value.Trim();

            // Parse prefix:localName
            try {
                ValidateNames.ParseQNameThrow(value, out prefix, out localName);
            }
            catch (XmlException e) {
                throw new FormatException(e.Message);
            }

            // Throw error if no namespaces are in scope
            if (nsResolver == null)
                throw new InvalidCastException(Res.GetString(Res.XmlConvert_TypeNoNamespace, value, prefix));

            // Lookup namespace
            ns = nsResolver.LookupNamespace(prefix);
            if (ns == null)
                throw new InvalidCastException(Res.GetString(Res.XmlConvert_TypeNoNamespace, value, prefix));

            // Create XmlQualfiedName
            return new XmlQualifiedName(localName, ns);
        }
 
        protected static DateTime StringToTime(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.Time));
        }

        protected static DateTimeOffset StringToTimeOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.Time));
        }

        protected static TimeSpan StringToYearMonthDuration(string value) {
            // Parse string as YearMonthDuration and convert it to a YearMonthDuration TimeSpan (it is an error to have day and time parts)
            return new XsdDuration(value, XsdDuration.DurationType.YearMonthDuration).ToTimeSpan(XsdDuration.DurationType.YearMonthDuration);
        }


        //------------------------------------------------------------------------
        // To String Conversion Helpers
        //------------------------------------------------------------------------

        protected static string AnyUriToString(Uri value) {
            return value.OriginalString;
        }

        protected static string Base64BinaryToString(byte[] value) {
            return Convert.ToBase64String(value);
        }

        protected static string DateToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.Date)).ToString();
        }

        protected static string DateTimeToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.DateTime)).ToString();
        }

        protected static string DayTimeDurationToString(TimeSpan value) {
            return new XsdDuration(value, XsdDuration.DurationType.DayTimeDuration).ToString(XsdDuration.DurationType.DayTimeDuration);
        }

        protected static string DurationToString(TimeSpan value) {
            return new XsdDuration(value, XsdDuration.DurationType.Duration).ToString(XsdDuration.DurationType.Duration);
        }

        protected static string GDayToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GDay)).ToString();
        }

        protected static string GMonthToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GMonth)).ToString();
        }

        protected static string GMonthDayToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GMonthDay)).ToString();
        }

        protected static string GYearToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GYear)).ToString();
        }

        protected static string GYearMonthToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GYearMonth)).ToString();
        }

        protected static string DateOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.Date)).ToString();
        }

        protected static string DateTimeOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.DateTime)).ToString();
        }

        protected static string GDayOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GDay)).ToString();
        }

        protected static string GMonthOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GMonth)).ToString();
        }

        protected static string GMonthDayOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GMonthDay)).ToString();
        }

        protected static string GYearOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GYear)).ToString();
        }

        protected static string GYearMonthOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.GYearMonth)).ToString();
        }

        protected static string QNameToString(XmlQualifiedName qname, IXmlNamespaceResolver nsResolver) {
            string prefix;

            if (nsResolver == null)
                return string.Concat("{", qname.Namespace, "}", qname.Name);

            prefix = nsResolver.LookupPrefix(qname.Namespace);
            if (prefix == null)
                throw new InvalidCastException(Res.GetString(Res.XmlConvert_TypeNoPrefix, qname.ToString(), qname.Namespace));

            return (prefix.Length != 0) ? string.Concat(prefix, ":", qname.Name) : qname.Name;
        }
 
        protected static string TimeToString(DateTime value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.Time)).ToString();
        }

        protected static string TimeOffsetToString(DateTimeOffset value) {
            return (new XsdDateTime(value, XsdDateTimeFlags.Time)).ToString();
        }

        protected static string YearMonthDurationToString(TimeSpan value) {
            return new XsdDuration(value, XsdDuration.DurationType.YearMonthDuration).ToString(XsdDuration.DurationType.YearMonthDuration);
        }


        //------------------------------------------------------------------------
        // Other Conversion Helpers
        //------------------------------------------------------------------------

        internal static DateTime DateTimeOffsetToDateTime(DateTimeOffset value) {
            return value.LocalDateTime;
        }

        internal static int DecimalToInt32(decimal value) {
            if (value < (decimal) Int32.MinValue || value > (decimal) Int32.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Int32" }));

            return (int) value;
        }

        protected static long DecimalToInt64(decimal value) {
            if (value < (decimal) Int64.MinValue || value > (decimal) Int64.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Int64" }));

            return (long) value;
        }

        protected static ulong DecimalToUInt64(decimal value) {
            if (value < (decimal) UInt64.MinValue || value > (decimal) UInt64.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt64" }));

            return (ulong) value;
        }

        protected static byte Int32ToByte(int value) {
            if (value < (int) Byte.MinValue || value > (int) Byte.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Byte" }));

            return (byte) value;
        }

        protected static short Int32ToInt16(int value) {
            if (value < (int) Int16.MinValue || value > (int) Int16.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Int16" }));

            return (short) value;
        }

        protected static sbyte Int32ToSByte(int value) {
            if (value < (int) SByte.MinValue || value > (int) SByte.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "SByte" }));

            return (sbyte) value;
        }

        protected static ushort Int32ToUInt16(int value) {
            if (value < (int) UInt16.MinValue || value > (int) UInt16.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt16" }));

            return (ushort) value;
        }

        protected static int Int64ToInt32(long value) {
            if (value < (long) Int32.MinValue || value > (long) Int32.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Int32" }));

            return (int) value;
        }

        protected static uint Int64ToUInt32(long value) {
            if (value < (long) UInt32.MinValue || value > (long) UInt32.MaxValue)
                throw new OverflowException(Res.GetString(Res.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt32" }));

            return (uint) value;
        }

        protected static DateTime UntypedAtomicToDateTime(string value) {
            return (DateTime)(new XsdDateTime(value, XsdDateTimeFlags.AllXsd));
        }

        protected static DateTimeOffset UntypedAtomicToDateTimeOffset(string value) {
            return (DateTimeOffset)(new XsdDateTime(value, XsdDateTimeFlags.AllXsd));
        }
    }

    internal class XmlNumeric10Converter : XmlBaseConverter {
        protected XmlNumeric10Converter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlNumeric10Converter(schemaType);
        }

        #region AUTOGENERATED_XMLNUMERIC10CONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        public override decimal ToDecimal(decimal value) {
            return ((decimal) value);
        }
        public override decimal ToDecimal(int value) {
            return ((decimal) (int) value);
        }
        public override decimal ToDecimal(long value) {
            return ((decimal) (long) value);
        }
        public override decimal ToDecimal(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            if (TypeCode == XmlTypeCode.Decimal) return XmlConvert.ToDecimal((string) value);
            return XmlConvert.ToInteger((string) value);
        }
        public override decimal ToDecimal(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DecimalType) return ((decimal) value);
            if (sourceType == Int32Type) return ((decimal) (int) value);
            if (sourceType == Int64Type) return ((decimal) (long) value);
            if (sourceType == StringType) return this.ToDecimal((string) value);
            if (sourceType == XmlAtomicValueType) return ((decimal) ((XmlAtomicValue) value).ValueAs(DecimalType));
            
            return (decimal) ChangeTypeWildcardDestination(value, DecimalType, null);
        }
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        public override int ToInt32(decimal value) {
            return DecimalToInt32((decimal) value);
        }
        public override int ToInt32(int value) {
            return ((int) value);
        }
        public override int ToInt32(long value) {
            return Int64ToInt32((long) value);
        }
        public override int ToInt32(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            if (TypeCode == XmlTypeCode.Decimal) return DecimalToInt32(XmlConvert.ToDecimal((string) value));
            return XmlConvert.ToInt32((string) value);
        }
        public override int ToInt32(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DecimalType) return DecimalToInt32((decimal) value);
            if (sourceType == Int32Type) return ((int) value);
            if (sourceType == Int64Type) return Int64ToInt32((long) value);
            if (sourceType == StringType) return this.ToInt32((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsInt;
            
            return (int) ChangeTypeWildcardDestination(value, Int32Type, null);
        }
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        public override long ToInt64(decimal value) {
            return DecimalToInt64((decimal) value);
        }
        public override long ToInt64(int value) {
            return ((long) (int) value);
        }
        public override long ToInt64(long value) {
            return ((long) value);
        }
        public override long ToInt64(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            if (TypeCode == XmlTypeCode.Decimal) return DecimalToInt64(XmlConvert.ToDecimal((string) value));
            return XmlConvert.ToInt64((string) value);
        }
        public override long ToInt64(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DecimalType) return DecimalToInt64((decimal) value);
            if (sourceType == Int32Type) return ((long) (int) value);
            if (sourceType == Int64Type) return ((long) value);
            if (sourceType == StringType) return this.ToInt64((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsLong;
            
            return (long) ChangeTypeWildcardDestination(value, Int64Type, null);
        }
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(decimal value) {
            if (TypeCode == XmlTypeCode.Decimal) return XmlConvert.ToString((decimal) value);
            return XmlConvert.ToString(decimal.Truncate((decimal) value));
        }
        public override string ToString(int value) {
            return XmlConvert.ToString((int) value);
        }
        public override string ToString(long value) {
            return XmlConvert.ToString((long) value);
        }
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DecimalType) return this.ToString((decimal) value);
            if (sourceType == Int32Type) return XmlConvert.ToString((int) value);
            if (sourceType == Int64Type) return XmlConvert.ToString((long) value);
            if (sourceType == StringType) return ((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).Value;
            
            return (string) ChangeTypeWildcardDestination(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(decimal value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DecimalType) return ((decimal) value);
            if (destinationType == Int32Type) return DecimalToInt32((decimal) value);
            if (destinationType == Int64Type) return DecimalToInt64((decimal) value);
            if (destinationType == StringType) return this.ToString((decimal) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(int value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DecimalType) return ((decimal) (int) value);
            if (destinationType == Int32Type) return ((int) value);
            if (destinationType == Int64Type) return ((long) (int) value);
            if (destinationType == StringType) return XmlConvert.ToString((int) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (int) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (int) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(long value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DecimalType) return ((decimal) (long) value);
            if (destinationType == Int32Type) return Int64ToInt32((long) value);
            if (destinationType == Int64Type) return ((long) value);
            if (destinationType == StringType) return XmlConvert.ToString((long) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (long) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (long) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DecimalType) return this.ToDecimal((string) value);
            if (destinationType == Int32Type) return this.ToInt32((string) value);
            if (destinationType == Int64Type) return this.ToInt64((string) value);
            if (destinationType == StringType) return ((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            
            return ChangeTypeWildcardSource(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DecimalType) return this.ToDecimal(value);
            if (destinationType == Int32Type) return this.ToInt32(value);
            if (destinationType == Int64Type) return this.ToInt64(value);
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == DecimalType) return (new XmlAtomicValue(SchemaType, value));
                if (sourceType == Int32Type) return (new XmlAtomicValue(SchemaType, (int) value));
                if (sourceType == Int64Type) return (new XmlAtomicValue(SchemaType, (long) value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == DecimalType) return (new XmlAtomicValue(SchemaType, value));
                if (sourceType == Int32Type) return (new XmlAtomicValue(SchemaType, (int) value));
                if (sourceType == Int64Type) return (new XmlAtomicValue(SchemaType, (long) value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == ByteType) return Int32ToByte(this.ToInt32(value));
            if (destinationType == Int16Type) return Int32ToInt16(this.ToInt32(value));
            if (destinationType == SByteType) return Int32ToSByte(this.ToInt32(value));
            if (destinationType == UInt16Type) return Int32ToUInt16(this.ToInt32(value));
            if (destinationType == UInt32Type) return Int64ToUInt32(this.ToInt64(value));
            if (destinationType == UInt64Type) return DecimalToUInt64(this.ToDecimal(value));
            if (sourceType == ByteType) return this.ChangeType((int) (byte) value, destinationType);
            if (sourceType == Int16Type) return this.ChangeType((int) (short) value, destinationType);
            if (sourceType == SByteType) return this.ChangeType((int) (sbyte) value, destinationType);
            if (sourceType == UInt16Type) return this.ChangeType((int) (ushort) value, destinationType);
            if (sourceType == UInt32Type) return this.ChangeType((long) (uint) value, destinationType);
            if (sourceType == UInt64Type) return this.ChangeType((decimal) (ulong) value, destinationType);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // Helpers
        //-----------------------------------------------
        
        private object ChangeTypeWildcardDestination(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();
            
            if (sourceType == ByteType) return this.ChangeType((int) (byte) value, destinationType);
            if (sourceType == Int16Type) return this.ChangeType((int) (short) value, destinationType);
            if (sourceType == SByteType) return this.ChangeType((int) (sbyte) value, destinationType);
            if (sourceType == UInt16Type) return this.ChangeType((int) (ushort) value, destinationType);
            if (sourceType == UInt32Type) return this.ChangeType((long) (uint) value, destinationType);
            if (sourceType == UInt64Type) return this.ChangeType((decimal) (ulong) value, destinationType);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        private object ChangeTypeWildcardSource(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (destinationType == ByteType) return Int32ToByte(this.ToInt32(value));
            if (destinationType == Int16Type) return Int32ToInt16(this.ToInt32(value));
            if (destinationType == SByteType) return Int32ToSByte(this.ToInt32(value));
            if (destinationType == UInt16Type) return Int32ToUInt16(this.ToInt32(value));
            if (destinationType == UInt32Type) return Int64ToUInt32(this.ToInt64(value));
            if (destinationType == UInt64Type) return DecimalToUInt64(this.ToDecimal(value));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlNumeric2Converter : XmlBaseConverter {
        protected XmlNumeric2Converter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlNumeric2Converter(schemaType);
        }

        #region AUTOGENERATED_XMLNUMERIC2CONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        public override double ToDouble(double value) {
            return ((double) value);
        }
        public override double ToDouble(float value) {
            return ((double) (float) value);
        }
        public override double ToDouble(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            if (TypeCode == XmlTypeCode.Float) return ((double) XmlConvert.ToSingle((string) value));
            return XmlConvert.ToDouble((string) value);
        }
        public override double ToDouble(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DoubleType) return ((double) value);
            if (sourceType == SingleType) return ((double) (float) value);
            if (sourceType == StringType) return this.ToDouble((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDouble;
            
            return (double) ChangeListType(value, DoubleType, null);
        }
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        public override float ToSingle(double value) {
            return ((float) (double) value);
        }
        public override float ToSingle(float value) {
            return ((float) value);
        }
        public override float ToSingle(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            if (TypeCode == XmlTypeCode.Float) return XmlConvert.ToSingle((string) value);
            return ((float) XmlConvert.ToDouble((string) value));
        }
        public override float ToSingle(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DoubleType) return ((float) (double) value);
            if (sourceType == SingleType) return ((float) value);
            if (sourceType == StringType) return this.ToSingle((string) value);
            if (sourceType == XmlAtomicValueType) return ((float) ((XmlAtomicValue) value).ValueAs(SingleType));
            
            return (float) ChangeListType(value, SingleType, null);
        }
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(double value) {
            if (TypeCode == XmlTypeCode.Float) return XmlConvert.ToString(ToSingle((double) value));
            return XmlConvert.ToString((double) value);
        }
        public override string ToString(float value) {
            if (TypeCode == XmlTypeCode.Float) return XmlConvert.ToString((float) value);
            return XmlConvert.ToString((double) (float) value);
        }
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DoubleType) return this.ToString((double) value);
            if (sourceType == SingleType) return this.ToString((float) value);
            if (sourceType == StringType) return ((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).Value;
            
            return (string) ChangeListType(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(double value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DoubleType) return ((double) value);
            if (destinationType == SingleType) return ((float) (double) value);
            if (destinationType == StringType) return this.ToString((double) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (double) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (double) value));
            
            return ChangeListType(value, destinationType, null);
        }
        
        public override object ChangeType(float value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DoubleType) return ((double) (float) value);
            if (destinationType == SingleType) return ((float) value);
            if (destinationType == StringType) return this.ToString((float) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, value));
            
            return ChangeListType(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DoubleType) return this.ToDouble((string) value);
            if (destinationType == SingleType) return this.ToSingle((string) value);
            if (destinationType == StringType) return ((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DoubleType) return this.ToDouble(value);
            if (destinationType == SingleType) return this.ToSingle(value);
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == DoubleType) return (new XmlAtomicValue(SchemaType, (double) value));
                if (sourceType == SingleType) return (new XmlAtomicValue(SchemaType, value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == DoubleType) return (new XmlAtomicValue(SchemaType, (double) value));
                if (sourceType == SingleType) return (new XmlAtomicValue(SchemaType, value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlDateTimeConverter : XmlBaseConverter {
        protected XmlDateTimeConverter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlDateTimeConverter(schemaType);
        }

        #region AUTOGENERATED_XMLDATETIMECONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        public override DateTime ToDateTime(DateTime value) {
            return ((DateTime) value);
        }

        public override DateTime ToDateTime(DateTimeOffset value) {
            return DateTimeOffsetToDateTime(value);
        }

        public override DateTime ToDateTime(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            switch (TypeCode) {
                case XmlTypeCode.Date: return StringToDate((string) value);
                case XmlTypeCode.Time: return StringToTime((string) value);
                case XmlTypeCode.GDay: return StringToGDay((string) value);
                case XmlTypeCode.GMonth: return StringToGMonth((string) value);
                case XmlTypeCode.GMonthDay: return StringToGMonthDay((string) value);
                case XmlTypeCode.GYear: return StringToGYear((string) value);
                case XmlTypeCode.GYearMonth: return StringToGYearMonth((string) value);
            }
            return StringToDateTime((string) value);
        }
        public override DateTime ToDateTime(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DateTimeType) return ((DateTime) value);
            if (sourceType == DateTimeOffsetType) return this.ToDateTime((DateTimeOffset) value);
            if (sourceType == StringType) return this.ToDateTime((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDateTime;
            
            return (DateTime) ChangeListType(value, DateTimeType, null);
        }
        
        //-----------------------------------------------
        // ToDateTimeOffset
        //-----------------------------------------------
        
        public override DateTimeOffset ToDateTimeOffset(DateTime value) {
            return new DateTimeOffset(value);
        }

        public override DateTimeOffset ToDateTimeOffset(DateTimeOffset value) {
            return ((DateTimeOffset) value);
        }

        public override DateTimeOffset ToDateTimeOffset(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            switch (TypeCode) {
                case XmlTypeCode.Date: return StringToDateOffset((string) value);
                case XmlTypeCode.Time: return StringToTimeOffset((string) value);
                case XmlTypeCode.GDay: return StringToGDayOffset((string) value);
                case XmlTypeCode.GMonth: return StringToGMonthOffset((string) value);
                case XmlTypeCode.GMonthDay: return StringToGMonthDayOffset((string) value);
                case XmlTypeCode.GYear: return StringToGYearOffset((string) value);
                case XmlTypeCode.GYearMonth: return StringToGYearMonthOffset((string) value);
            }
            return StringToDateTimeOffset((string) value);
        }

        public override DateTimeOffset ToDateTimeOffset(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DateTimeType) return ToDateTimeOffset((DateTime)value);
            if (sourceType == DateTimeOffsetType) return ((DateTimeOffset) value);
            if (sourceType == StringType) return this.ToDateTimeOffset((string) value);
            if (sourceType == XmlAtomicValueType) return (DateTimeOffset)((XmlAtomicValue) value).ValueAsDateTime;

            return (DateTimeOffset)ChangeListType(value, DateTimeOffsetType, null);
        }
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(DateTime value) {
            switch (TypeCode) {
                case XmlTypeCode.Date: return DateToString((DateTime) value);
                case XmlTypeCode.Time: return TimeToString((DateTime) value);
                case XmlTypeCode.GDay: return GDayToString((DateTime) value);
                case XmlTypeCode.GMonth: return GMonthToString((DateTime) value);
                case XmlTypeCode.GMonthDay: return GMonthDayToString((DateTime) value);
                case XmlTypeCode.GYear: return GYearToString((DateTime) value);
                case XmlTypeCode.GYearMonth: return GYearMonthToString((DateTime) value);
            }
            return DateTimeToString((DateTime) value);
        }

        public override string ToString(DateTimeOffset value) {
            switch (TypeCode) {
                case XmlTypeCode.Date: return DateOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.Time: return TimeOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.GDay: return GDayOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.GMonth: return GMonthOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.GMonthDay: return GMonthDayOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.GYear: return GYearOffsetToString((DateTimeOffset) value);
                case XmlTypeCode.GYearMonth: return GYearMonthOffsetToString((DateTimeOffset) value);
            }
            return DateTimeOffsetToString((DateTimeOffset) value);
        }

        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == DateTimeType) return this.ToString((DateTime) value);
            if (sourceType == DateTimeOffsetType) return this.ToString((DateTimeOffset)value);
            if (sourceType == StringType) return ((string)value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).Value;
            
            return (string) ChangeListType(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(DateTime value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DateTimeType) return ((DateTime) value);
            if (destinationType == DateTimeOffsetType) return this.ToDateTimeOffset((DateTime) value);
            if (destinationType == StringType) return this.ToString((DateTime) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (DateTime) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (DateTime) value));
            
            return ChangeListType(value, destinationType, null);
        }
        
        public override object ChangeType(DateTimeOffset value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DateTimeType) return this.ToDateTime((DateTimeOffset) value);
            if (destinationType == DateTimeOffsetType) return ((DateTimeOffset) value);
            if (destinationType == StringType) return this.ToString((DateTimeOffset) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (DateTimeOffset) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (DateTimeOffset) value));
            
            return ChangeListType(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DateTimeType) return this.ToDateTime((string) value);
            if (destinationType == DateTimeOffsetType) return this.ToDateTimeOffset((string) value);
            if (destinationType == StringType) return ((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == DateTimeType) return this.ToDateTime(value);
            if (destinationType == DateTimeOffsetType) return this.ToDateTimeOffset(value);
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == DateTimeType) return (new XmlAtomicValue(SchemaType, (DateTime) value));
                if (sourceType == DateTimeOffsetType) return (new XmlAtomicValue(SchemaType, (DateTimeOffset)value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string)value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == DateTimeType) return (new XmlAtomicValue(SchemaType, (DateTime) value));
                if (sourceType == DateTimeOffsetType) return (new XmlAtomicValue(SchemaType, (DateTimeOffset)value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string)value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlBooleanConverter : XmlBaseConverter {
        protected XmlBooleanConverter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlBooleanConverter(schemaType);
        }

        #region AUTOGENERATED_XMLBOOLEANCONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        public override bool ToBoolean(bool value) {
            return ((bool) value);
        }
        public override bool ToBoolean(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToBoolean((string) value);
        }
        public override bool ToBoolean(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == BooleanType) return ((bool) value);
            if (sourceType == StringType) return XmlConvert.ToBoolean((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsBoolean;
            
            return (bool) ChangeListType(value, BooleanType, null);
        }
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(bool value) {
            return XmlConvert.ToString((bool) value);
        }
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == BooleanType) return XmlConvert.ToString((bool) value);
            if (sourceType == StringType) return ((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).Value;
            
            return (string) ChangeListType(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(bool value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) return ((bool) value);
            if (destinationType == StringType) return XmlConvert.ToString((bool) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (bool) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (bool) value));
            
            return ChangeListType(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) return XmlConvert.ToBoolean((string) value);
            if (destinationType == StringType) return ((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) return this.ToBoolean(value);
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == BooleanType) return (new XmlAtomicValue(SchemaType, (bool) value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == BooleanType) return (new XmlAtomicValue(SchemaType, (bool) value));
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlMiscConverter : XmlBaseConverter {
        protected XmlMiscConverter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlMiscConverter(schemaType);
        }

        #region AUTOGENERATED_XMLMISCCONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return (string) value;
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == ByteArrayType) {
                switch (TypeCode) {
                    case XmlTypeCode.Base64Binary: return Base64BinaryToString((byte[]) value);
                    case XmlTypeCode.HexBinary: return XmlConvert.ToBinHexString((byte[]) value);
                }
            }
            if (sourceType == StringType) return (string) value;
            if (IsDerivedFrom(sourceType, UriType)) if (TypeCode == XmlTypeCode.AnyUri) return AnyUriToString((Uri) value);
            if (sourceType == TimeSpanType) {
                switch (TypeCode) {
                    case XmlTypeCode.DayTimeDuration: return DayTimeDurationToString((TimeSpan) value);
                    case XmlTypeCode.Duration: return DurationToString((TimeSpan) value);
                    case XmlTypeCode.YearMonthDuration: return YearMonthDurationToString((TimeSpan) value);
                }
            }
            if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) {
                switch (TypeCode) {
                    case XmlTypeCode.Notation: return QNameToString((XmlQualifiedName) value, nsResolver);
                    case XmlTypeCode.QName: return QNameToString((XmlQualifiedName) value, nsResolver);
                }
            }
            
            return (string) ChangeTypeWildcardDestination(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == ByteArrayType) {
                switch (TypeCode) {
                    case XmlTypeCode.Base64Binary: return StringToBase64Binary((string) value);
                    case XmlTypeCode.HexBinary: return StringToHexBinary((string) value);
                }
            }
            if (destinationType == XmlQualifiedNameType) {
                switch (TypeCode) {
                    case XmlTypeCode.Notation: return StringToQName((string) value, nsResolver);
                    case XmlTypeCode.QName: return StringToQName((string) value, nsResolver);
                }
            }
            if (destinationType == StringType) return (string) value;
            if (destinationType == TimeSpanType) {
                switch (TypeCode) {
                    case XmlTypeCode.DayTimeDuration: return StringToDayTimeDuration((string) value);
                    case XmlTypeCode.Duration: return StringToDuration((string) value);
                    case XmlTypeCode.YearMonthDuration: return StringToYearMonthDuration((string) value);
                }
            }
            if (destinationType == UriType) if (TypeCode == XmlTypeCode.AnyUri) return XmlConvert.ToUri((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string)value, nsResolver));
            
            return ChangeTypeWildcardSource(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == ByteArrayType) {
                if (sourceType == ByteArrayType) {
                    switch (TypeCode) {
                        case XmlTypeCode.Base64Binary: return ((byte[]) value);
                        case XmlTypeCode.HexBinary: return ((byte[]) value);
                    }
                }
                if (sourceType == StringType) {
                    switch (TypeCode) {
                        case XmlTypeCode.Base64Binary: return StringToBase64Binary((string) value);
                        case XmlTypeCode.HexBinary: return StringToHexBinary((string) value);
                    }
                }
            }
            if (destinationType == XmlQualifiedNameType) {
                if (sourceType == StringType) {
                    switch (TypeCode) {
                        case XmlTypeCode.Notation: return StringToQName((string) value, nsResolver);
                        case XmlTypeCode.QName: return StringToQName((string) value, nsResolver);
                    }
                }
                if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) {
                    switch (TypeCode) {
                        case XmlTypeCode.Notation: return ((XmlQualifiedName) value);
                        case XmlTypeCode.QName: return ((XmlQualifiedName) value);
                    }
                }
            }
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == TimeSpanType) {
                if (sourceType == StringType) {
                    switch (TypeCode) {
                        case XmlTypeCode.DayTimeDuration: return StringToDayTimeDuration((string) value);
                        case XmlTypeCode.Duration: return StringToDuration((string) value);
                        case XmlTypeCode.YearMonthDuration: return StringToYearMonthDuration((string) value);
                    }
                }
                if (sourceType == TimeSpanType) {
                    switch (TypeCode) {
                        case XmlTypeCode.DayTimeDuration: return ((TimeSpan) value);
                        case XmlTypeCode.Duration: return ((TimeSpan) value);
                        case XmlTypeCode.YearMonthDuration: return ((TimeSpan) value);
                    }
                }
            }
            if (destinationType == UriType) {
                if (sourceType == StringType) if (TypeCode == XmlTypeCode.AnyUri) return XmlConvert.ToUri((string) value);
                if (IsDerivedFrom(sourceType, UriType)) if (TypeCode == XmlTypeCode.AnyUri) return ((Uri) value);
            }
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == ByteArrayType) {
                    switch (TypeCode) {
                        case XmlTypeCode.Base64Binary: return (new XmlAtomicValue(SchemaType, value));
                        case XmlTypeCode.HexBinary: return (new XmlAtomicValue(SchemaType, value));
                    }
                }
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string)value, nsResolver));
                if (sourceType == TimeSpanType) {
                    switch (TypeCode) {
                        case XmlTypeCode.DayTimeDuration: return (new XmlAtomicValue(SchemaType, value));
                        case XmlTypeCode.Duration: return (new XmlAtomicValue(SchemaType, value));
                        case XmlTypeCode.YearMonthDuration: return (new XmlAtomicValue(SchemaType, value));
                    }
                }
                if (IsDerivedFrom(sourceType, UriType)) if (TypeCode == XmlTypeCode.AnyUri) return (new XmlAtomicValue(SchemaType, value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
                if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) {
                    switch (TypeCode) {
                        case XmlTypeCode.Notation: return (new XmlAtomicValue(SchemaType, value, nsResolver));
                        case XmlTypeCode.QName: return (new XmlAtomicValue(SchemaType, value, nsResolver));
                    }
                }
            }
            if (destinationType == XPathItemType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) return ((XPathItem) this.ChangeType(value, XmlAtomicValueType, nsResolver));
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // Helpers
        //-----------------------------------------------
        
        private object ChangeTypeWildcardDestination(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        private object ChangeTypeWildcardSource(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (destinationType == XPathItemType) return ((XPathItem) this.ChangeType(value, XmlAtomicValueType, nsResolver));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlStringConverter : XmlBaseConverter {
        protected XmlStringConverter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlStringConverter(schemaType);
        }

        #region AUTOGENERATED_XMLSTRINGCONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return ((string) value);
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).Value;
            
            return (string) ChangeListType(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return ((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlUntypedConverter : XmlListConverter {
        private bool allowListToList;

        protected XmlUntypedConverter() : base(DatatypeImplementation.UntypedAtomicType) {
        }

        protected XmlUntypedConverter(XmlUntypedConverter atomicConverter, bool allowListToList)
            : base(atomicConverter, allowListToList ? StringArrayType : StringType) {
            this.allowListToList = allowListToList;
        }

        public static readonly XmlValueConverter Untyped = new XmlUntypedConverter(new XmlUntypedConverter(), false);
        public static readonly XmlValueConverter UntypedList = new XmlUntypedConverter(new XmlUntypedConverter(), true);

        #region AUTOGENERATED_XMLUNTYPEDCONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        public override bool ToBoolean(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToBoolean((string) value);
        }
        public override bool ToBoolean(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToBoolean((string) value);
            
            return (bool) ChangeTypeWildcardDestination(value, BooleanType, null);
        }
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        public override DateTime ToDateTime(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return UntypedAtomicToDateTime((string) value);
        }
        public override DateTime ToDateTime(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return UntypedAtomicToDateTime((string) value);
            
            return (DateTime) ChangeTypeWildcardDestination(value, DateTimeType, null);
        }
        
        //-----------------------------------------------
        // ToDateTimeOffset
        //-----------------------------------------------
        
        public override DateTimeOffset ToDateTimeOffset(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return UntypedAtomicToDateTimeOffset((string) value);
        }

        public override DateTimeOffset ToDateTimeOffset(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return UntypedAtomicToDateTimeOffset((string) value);
            
            return (DateTimeOffset) ChangeTypeWildcardDestination(value, DateTimeOffsetType, null);
        }
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        public override decimal ToDecimal(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToDecimal((string) value);
        }
        public override decimal ToDecimal(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToDecimal((string) value);
            
            return (decimal) ChangeTypeWildcardDestination(value, DecimalType, null);
        }
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        public override double ToDouble(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToDouble((string) value);
        }
        public override double ToDouble(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToDouble((string) value);
            
            return (double) ChangeTypeWildcardDestination(value, DoubleType, null);
        }
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        public override int ToInt32(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToInt32((string) value);
        }
        public override int ToInt32(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToInt32((string) value);
            
            return (int) ChangeTypeWildcardDestination(value, Int32Type, null);
        }
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        public override long ToInt64(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToInt64((string) value);
        }
        public override long ToInt64(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToInt64((string) value);
            
            return (long) ChangeTypeWildcardDestination(value, Int64Type, null);
        }
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        public override float ToSingle(string value) {
            if (value == null) throw new ArgumentNullException("value");
            
            return XmlConvert.ToSingle((string) value);
        }
        public override float ToSingle(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == StringType) return XmlConvert.ToSingle((string) value);
            
            return (float) ChangeTypeWildcardDestination(value, SingleType, null);
        }
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        public override string ToString(bool value) {
            return XmlConvert.ToString((bool) value);
        }
        public override string ToString(DateTime value) {
            return DateTimeToString((DateTime) value);
        }
        public override string ToString(DateTimeOffset value) {
            return DateTimeOffsetToString((DateTimeOffset) value);
        }
        public override string ToString(decimal value) {
            return XmlConvert.ToString((decimal) value);
        }
        public override string ToString(double value) {
            return XmlConvert.ToString((double) value);
        }
        public override string ToString(int value) {
            return XmlConvert.ToString((int) value);
        }
        public override string ToString(long value) {
            return XmlConvert.ToString((long) value);
        }
        public override string ToString(float value) {
            return XmlConvert.ToString((float) value);
        }
        public override string ToString(string value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            return ((string) value);
        }
        public override string ToString(object value, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == BooleanType) return XmlConvert.ToString((bool) value);
            if (sourceType == ByteType) return XmlConvert.ToString((byte) value);
            if (sourceType == ByteArrayType) return Base64BinaryToString((byte[]) value);
            if (sourceType == DateTimeType) return DateTimeToString((DateTime) value);
            if (sourceType == DateTimeOffsetType) return DateTimeOffsetToString((DateTimeOffset) value);
            if (sourceType == DecimalType) return XmlConvert.ToString((decimal) value);
            if (sourceType == DoubleType) return XmlConvert.ToString((double) value);
            if (sourceType == Int16Type) return XmlConvert.ToString((short) value);
            if (sourceType == Int32Type) return XmlConvert.ToString((int) value);
            if (sourceType == Int64Type) return XmlConvert.ToString((long) value);
            if (sourceType == SByteType) return XmlConvert.ToString((sbyte) value);
            if (sourceType == SingleType) return XmlConvert.ToString((float) value);
            if (sourceType == StringType) return ((string) value);
            if (sourceType == TimeSpanType) return DurationToString((TimeSpan) value);
            if (sourceType == UInt16Type) return XmlConvert.ToString((ushort) value);
            if (sourceType == UInt32Type) return XmlConvert.ToString((uint) value);
            if (sourceType == UInt64Type) return XmlConvert.ToString((ulong) value);
            if (IsDerivedFrom(sourceType, UriType)) return AnyUriToString((Uri) value);
            if (sourceType == XmlAtomicValueType) return ((string) ((XmlAtomicValue) value).ValueAs(StringType, nsResolver));
            if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) return QNameToString((XmlQualifiedName) value, nsResolver);
            
            return (string) ChangeTypeWildcardDestination(value, StringType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(bool value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((bool) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(DateTime value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return DateTimeToString((DateTime) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(DateTimeOffset value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return DateTimeOffsetToString((DateTimeOffset) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(decimal value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((decimal) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(double value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((double) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(int value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((int) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(long value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((long) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(float value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == StringType) return XmlConvert.ToString((float) value);
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) return XmlConvert.ToBoolean((string) value);
            if (destinationType == ByteType) return Int32ToByte(XmlConvert.ToInt32((string) value));
            if (destinationType == ByteArrayType) return StringToBase64Binary((string) value);
            if (destinationType == DateTimeType) return UntypedAtomicToDateTime((string) value);
            if (destinationType == DateTimeOffsetType ) return UntypedAtomicToDateTimeOffset((string)value);
            if (destinationType == DecimalType) return XmlConvert.ToDecimal((string) value);
            if (destinationType == DoubleType) return XmlConvert.ToDouble((string) value);
            if (destinationType == Int16Type) return Int32ToInt16(XmlConvert.ToInt32((string) value));
            if (destinationType == Int32Type) return XmlConvert.ToInt32((string) value);
            if (destinationType == Int64Type) return XmlConvert.ToInt64((string) value);
            if (destinationType == SByteType) return Int32ToSByte(XmlConvert.ToInt32((string) value));
            if (destinationType == SingleType) return XmlConvert.ToSingle((string) value);
            if (destinationType == TimeSpanType) return StringToDuration((string) value);
            if (destinationType == UInt16Type) return Int32ToUInt16(XmlConvert.ToInt32((string) value));
            if (destinationType == UInt32Type) return Int64ToUInt32(XmlConvert.ToInt64((string) value));
            if (destinationType == UInt64Type) return DecimalToUInt64(XmlConvert.ToDecimal((string) value));
            if (destinationType == UriType) return XmlConvert.ToUri((string) value);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == XmlQualifiedNameType) return StringToQName((string) value, nsResolver);
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, (string) value));
            if (destinationType == StringType) return ((string) value);
            
            return ChangeTypeWildcardSource(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) {
                if (sourceType == StringType) return XmlConvert.ToBoolean((string) value);
            }
            if (destinationType == ByteType) {
                if (sourceType == StringType) return Int32ToByte(XmlConvert.ToInt32((string) value));
            }
            if (destinationType == ByteArrayType) {
                if (sourceType == StringType) return StringToBase64Binary((string) value);
            }
            if (destinationType == DateTimeType) {
                if (sourceType == StringType) return UntypedAtomicToDateTime((string) value);
            }
            if (destinationType == DateTimeOffsetType) {
                if (sourceType == StringType) return UntypedAtomicToDateTimeOffset((string) value);
            }
            if (destinationType == DecimalType) {
                if (sourceType == StringType) return XmlConvert.ToDecimal((string) value);
            }
            if (destinationType == DoubleType) {
                if (sourceType == StringType) return XmlConvert.ToDouble((string) value);
            }
            if (destinationType == Int16Type) {
                if (sourceType == StringType) return Int32ToInt16(XmlConvert.ToInt32((string) value));
            }
            if (destinationType == Int32Type) {
                if (sourceType == StringType) return XmlConvert.ToInt32((string) value);
            }
            if (destinationType == Int64Type) {
                if (sourceType == StringType) return XmlConvert.ToInt64((string) value);
            }
            if (destinationType == SByteType) {
                if (sourceType == StringType) return Int32ToSByte(XmlConvert.ToInt32((string) value));
            }
            if (destinationType == SingleType) {
                if (sourceType == StringType) return XmlConvert.ToSingle((string) value);
            }
            if (destinationType == TimeSpanType) {
                if (sourceType == StringType) return StringToDuration((string) value);
            }
            if (destinationType == UInt16Type) {
                if (sourceType == StringType) return Int32ToUInt16(XmlConvert.ToInt32((string) value));
            }
            if (destinationType == UInt32Type) {
                if (sourceType == StringType) return Int64ToUInt32(XmlConvert.ToInt64((string) value));
            }
            if (destinationType == UInt64Type) {
                if (sourceType == StringType) return DecimalToUInt64(XmlConvert.ToDecimal((string) value));
            }
            if (destinationType == UriType) {
                if (sourceType == StringType) return XmlConvert.ToUri((string) value);
            }
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == XmlQualifiedNameType) {
                if (sourceType == StringType) return StringToQName((string) value, nsResolver);
            }
            if (destinationType == XPathItemType) {
                if (sourceType == StringType) return (new XmlAtomicValue(SchemaType, (string) value));
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
            }
            if (destinationType == StringType) return this.ToString(value, nsResolver);
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, this.ToString(value, nsResolver)));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, this.ToString(value, nsResolver)));
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // Helpers
        //-----------------------------------------------
        
        private object ChangeTypeWildcardDestination(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        private object ChangeTypeWildcardSource(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(SchemaType, this.ToString(value, nsResolver)));
            if (destinationType == XPathItemType) return (new XmlAtomicValue(SchemaType, this.ToString(value, nsResolver)));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion


        //-----------------------------------------------
        // Helpers
        //-----------------------------------------------

        protected override object ChangeListType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();

            // 1. If there is no nested atomic converter, then do not support lists at all
            // 2. If list to list conversions are not allowed, only allow string => list and list => string
            if ((this.atomicConverter == null) || (!this.allowListToList && sourceType != StringType && destinationType != StringType)) {
                if (SupportsType(sourceType))
                    throw new InvalidCastException(Res.GetString(Res.XmlConvert_TypeToString, XmlTypeName, sourceType.Name));

                if (SupportsType(destinationType))
                    throw new InvalidCastException(Res.GetString(Res.XmlConvert_TypeFromString, XmlTypeName, destinationType.Name));

                throw CreateInvalidClrMappingException(sourceType, destinationType);
            }

            return base.ChangeListType(value, destinationType, nsResolver);
        }

        private bool SupportsType(Type clrType) {
            if (clrType == BooleanType) return true;
            if (clrType == ByteType) return true;
            if (clrType == ByteArrayType) return true;
            if (clrType == DateTimeType) return true;
            if (clrType == DateTimeOffsetType) return true;
            if (clrType == DecimalType) return true;
            if (clrType == DoubleType) return true;
            if (clrType == Int16Type) return true;
            if (clrType == Int32Type) return true;
            if (clrType == Int64Type) return true;
            if (clrType == SByteType) return true;
            if (clrType == SingleType) return true;
            if (clrType == TimeSpanType) return true;
            if (clrType == UInt16Type) return true;
            if (clrType == UInt32Type) return true;
            if (clrType == UInt64Type) return true;
            if (clrType == UriType) return true;
            if (clrType == XmlQualifiedNameType) return true;

            return false;
        }
    }

    internal class XmlNodeConverter : XmlBaseConverter {
        protected XmlNodeConverter() : base(XmlTypeCode.Node) {
        }

        public static readonly XmlValueConverter Node = new XmlNodeConverter();

        #region AUTOGENERATED_XMLNODECONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        // This converter does not support conversions to Boolean.
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        // This converter does not support conversions to DateTime.
        
        
        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        // This converter does not support conversions to Decimal.
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        // This converter does not support conversions to Double.
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        // This converter does not support conversions to Int32.
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        // This converter does not support conversions to Int64.
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        // This converter does not support conversions to Single.
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        // This converter does not support conversions to String.
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XPathNavigatorType) {
                if (IsDerivedFrom(sourceType, XPathNavigatorType)) return ((XPathNavigator) value);
            }
            if (destinationType == XPathItemType) {
                if (IsDerivedFrom(sourceType, XPathNavigatorType)) return ((XPathItem) value);
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion
    }

    internal class XmlAnyConverter : XmlBaseConverter {
        protected XmlAnyConverter(XmlTypeCode typeCode) : base(typeCode) {
        }

        public static readonly XmlValueConverter Item = new XmlAnyConverter(XmlTypeCode.Item);
        public static readonly XmlValueConverter AnyAtomic = new XmlAnyConverter(XmlTypeCode.AnyAtomicType);

        #region AUTOGENERATED_XMLANYCONVERTER
        
        //-----------------------------------------------
        // ToBoolean
        //-----------------------------------------------
        
        public override bool ToBoolean(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsBoolean;
            
            return (bool) ChangeTypeWildcardDestination(value, BooleanType, null);
        }
        
        
        //-----------------------------------------------
        // ToDateTime
        //-----------------------------------------------
        
        public override DateTime ToDateTime(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDateTime;
            
            return (DateTime) ChangeTypeWildcardDestination(value, DateTimeType, null);
        }
        
        //-----------------------------------------------
        // ToDateTimeOffset
        //-----------------------------------------------
        
        public override DateTimeOffset ToDateTimeOffset(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return (DateTimeOffset)((XmlAtomicValue) value).ValueAs(DateTimeOffsetType);
            
            return (DateTimeOffset) ChangeTypeWildcardDestination(value, DateTimeOffsetType, null);
        }
        

        //-----------------------------------------------
        // ToDecimal
        //-----------------------------------------------
        
        public override decimal ToDecimal(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((decimal) ((XmlAtomicValue) value).ValueAs(DecimalType));
            
            return (decimal) ChangeTypeWildcardDestination(value, DecimalType, null);
        }
        
        
        //-----------------------------------------------
        // ToDouble
        //-----------------------------------------------
        
        public override double ToDouble(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDouble;
            
            return (double) ChangeTypeWildcardDestination(value, DoubleType, null);
        }
        
        
        //-----------------------------------------------
        // ToInt32
        //-----------------------------------------------
        
        public override int ToInt32(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsInt;
            
            return (int) ChangeTypeWildcardDestination(value, Int32Type, null);
        }
        
        
        //-----------------------------------------------
        // ToInt64
        //-----------------------------------------------
        
        public override long ToInt64(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsLong;
            
            return (long) ChangeTypeWildcardDestination(value, Int64Type, null);
        }
        
        
        //-----------------------------------------------
        // ToSingle
        //-----------------------------------------------
        
        public override float ToSingle(object value) {
            if (value == null) throw new ArgumentNullException("value");
            
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((float) ((XmlAtomicValue) value).ValueAs(SingleType));
            
            return (float) ChangeTypeWildcardDestination(value, SingleType, null);
        }
        
        
        //-----------------------------------------------
        // ToString
        //-----------------------------------------------
        
        // This converter does not support conversions to String.
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(bool value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Boolean), (bool) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(DateTime value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTime) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(DateTimeOffset value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTimeOffset) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }

        public override object ChangeType(decimal value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Decimal), value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(double value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Double), (double) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(int value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Int), (int) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(long value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long) value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(float value, Type destinationType) {
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Float), value));
            
            return ChangeTypeWildcardSource(value, destinationType, null);
        }
        
        public override object ChangeType(string value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == XmlAtomicValueType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), (string) value));
            
            return ChangeTypeWildcardSource(value, destinationType, nsResolver);
        }
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");
            
            Type sourceType = value.GetType();
            
            if (destinationType == ObjectType) destinationType = DefaultClrType;
            if (destinationType == BooleanType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsBoolean;
            }
            if (destinationType == DateTimeType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDateTime;
            }
            if (destinationType == DateTimeOffsetType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(DateTimeOffsetType);
            }
            if (destinationType == DecimalType) {
                if (sourceType == XmlAtomicValueType) return ((decimal) ((XmlAtomicValue) value).ValueAs(DecimalType));
            }
            if (destinationType == DoubleType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsDouble;
            }
            if (destinationType == Int32Type) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsInt;
            }
            if (destinationType == Int64Type) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAsLong;
            }
            if (destinationType == SingleType) {
                if (sourceType == XmlAtomicValueType) return ((float) ((XmlAtomicValue) value).ValueAs(SingleType));
            }
            if (destinationType == XmlAtomicValueType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
                if (sourceType == BooleanType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Boolean), (bool) value));
                if (sourceType == ByteType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedByte), value));
                if (sourceType == ByteArrayType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Base64Binary), value));
                if (sourceType == DateTimeType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTime) value));
                if (sourceType == DateTimeOffsetType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.DateTime), (DateTimeOffset) value));
                if (sourceType == DecimalType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Decimal), value));
                if (sourceType == DoubleType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Double), (double) value));
                if (sourceType == Int16Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Short), value));
                if (sourceType == Int32Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Int), (int) value));
                if (sourceType == Int64Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Long), (long) value));
                if (sourceType == SByteType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Byte), value));
                if (sourceType == SingleType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Float), value));
                if (sourceType == StringType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.String), (string) value));
                if (sourceType == TimeSpanType) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Duration), value));
                if (sourceType == UInt16Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedShort), value));
                if (sourceType == UInt32Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedInt), value));
                if (sourceType == UInt64Type) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.UnsignedLong), value));
                if (IsDerivedFrom(sourceType, UriType)) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.AnyUri), value));
                if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) return (new XmlAtomicValue(XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.QName), value, nsResolver));
            }
            if (destinationType == XPathItemType) {
                if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value);
                if (IsDerivedFrom(sourceType, XPathNavigatorType)) return ((XPathNavigator) value);
            }
            if (destinationType == XPathNavigatorType) {
                if (IsDerivedFrom(sourceType, XPathNavigatorType)) return ToNavigator((XPathNavigator) value);
            }
            if (destinationType == XPathItemType) return ((XPathItem) this.ChangeType(value, XmlAtomicValueType, nsResolver));
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        
        
        //-----------------------------------------------
        // Helpers
        //-----------------------------------------------
        
        private object ChangeTypeWildcardDestination(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();
            
            if (sourceType == XmlAtomicValueType) return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        private object ChangeTypeWildcardSource(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (destinationType == XPathItemType) return ((XPathItem) this.ChangeType(value, XmlAtomicValueType, nsResolver));
            
            return ChangeListType(value, destinationType, nsResolver);
        }
        #endregion

        /// <summary>
        /// Throw an exception if nodes are not allowed by this converter.
        /// </summary>
        private XPathNavigator ToNavigator(XPathNavigator nav) {
            if (TypeCode != XmlTypeCode.Item)
                throw CreateInvalidClrMappingException(XPathNavigatorType, XPathNavigatorType);

            return nav;
        }
    }

    internal class XmlAnyListConverter : XmlListConverter {
        protected XmlAnyListConverter(XmlBaseConverter atomicConverter) : base(atomicConverter) {
        }

        public static readonly XmlValueConverter ItemList = new XmlAnyListConverter((XmlBaseConverter) XmlAnyConverter.Item);
        public static readonly XmlValueConverter AnyAtomicList = new XmlAnyListConverter((XmlBaseConverter) XmlAnyConverter.AnyAtomic);

        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");

            // If source value does not implement IEnumerable, or it is a string or byte[],
            if (!(value is IEnumerable) || value.GetType() == StringType || value.GetType() == ByteArrayType) {
                // Then create a list from it
                value = new object[] {value};
            }
            
            return ChangeListType(value, destinationType, nsResolver);
        }
    }

    internal class XmlListConverter : XmlBaseConverter {
        protected XmlValueConverter atomicConverter;

        protected XmlListConverter(XmlBaseConverter atomicConverter) : base(atomicConverter) {
            this.atomicConverter = atomicConverter;
        }

        protected XmlListConverter(XmlBaseConverter atomicConverter, Type clrTypeDefault) : base(atomicConverter, clrTypeDefault) {
            this.atomicConverter = atomicConverter;
        }

        protected XmlListConverter(XmlSchemaType schemaType) : base(schemaType) {
        }

        public static XmlValueConverter Create(XmlValueConverter atomicConverter) {
            if (atomicConverter == XmlUntypedConverter.Untyped)
                return XmlUntypedConverter.UntypedList;

            if (atomicConverter == XmlAnyConverter.Item)
                return XmlAnyListConverter.ItemList;

            if (atomicConverter == XmlAnyConverter.AnyAtomic)
                return XmlAnyListConverter.AnyAtomicList;

            Debug.Assert(!(atomicConverter is XmlListConverter) || ((XmlListConverter) atomicConverter).atomicConverter == null,
                         "List converters should not be nested within one another.");

            return new XmlListConverter((XmlBaseConverter) atomicConverter);
        }


        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------

        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");

            return ChangeListType(value, destinationType, nsResolver);
        }


        //------------------------------------------------------------------------
        // Helpers
        //------------------------------------------------------------------------

        protected override object ChangeListType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            Type sourceType = value.GetType();

            if (destinationType == ObjectType) destinationType = DefaultClrType;

            // Input value must support IEnumerable and destination type should be IEnumerable, ICollection, IList, Type[], or String
            if (!(value is IEnumerable) || !IsListType(destinationType))
                throw CreateInvalidClrMappingException(sourceType, destinationType);

            // Handle case where destination type is a string
            if (destinationType == StringType) {
                // Conversion from string to string is a no-op
                if (sourceType == StringType)
                    return value;

                // Convert from list to string
                return ListAsString((IEnumerable) value, nsResolver);
            }

            // Handle case where source type is a string
            // Tokenize string and create a list out of resulting string tokens
            if (sourceType == StringType)
                value = StringAsList((string) value);
            
            if (destinationType.IsArray) {
                // Convert from source value to strongly-typed array; special-case each possible item type for performance
                Type itemTypeDst = destinationType.GetElementType();

                // Converting from object[] to object[] is not necessarily a no-op (i.e. xs:int* stored as an object[]
                // containing String values will need to be converted to an object[] containing Int32 values).
                if (itemTypeDst == ObjectType) return ToArray<object>(value, nsResolver);

                // For all types except object[], sourceType = destinationType is a no-op conversion
                if (sourceType == destinationType) return value;

                // Otherwise, iterate over values in source list, convert them to output item type, and store them in result array
                if (itemTypeDst == BooleanType) return ToArray<bool>(value, nsResolver);
                if (itemTypeDst == ByteType) return ToArray<byte>(value, nsResolver);
                if (itemTypeDst == ByteArrayType) return ToArray<byte[]>(value, nsResolver);
                if (itemTypeDst == DateTimeType) return ToArray<DateTime>(value, nsResolver);
                if (itemTypeDst == DateTimeOffsetType) return ToArray<DateTimeOffset>(value, nsResolver);
                if (itemTypeDst == DecimalType) return ToArray<decimal>(value, nsResolver);
                if (itemTypeDst == DoubleType) return ToArray<double>(value, nsResolver);
                if (itemTypeDst == Int16Type) return ToArray<short>(value, nsResolver);
                if (itemTypeDst == Int32Type) return ToArray<int>(value, nsResolver);
                if (itemTypeDst == Int64Type) return ToArray<long>(value, nsResolver);
                if (itemTypeDst == SByteType) return ToArray<sbyte>(value, nsResolver);
                if (itemTypeDst == SingleType) return ToArray<float>(value, nsResolver);
                if (itemTypeDst == StringType) return ToArray<string>(value, nsResolver);
                if (itemTypeDst == TimeSpanType) return ToArray<TimeSpan>(value, nsResolver);
                if (itemTypeDst == UInt16Type) return ToArray<ushort>(value, nsResolver);
                if (itemTypeDst == UInt32Type) return ToArray<uint>(value, nsResolver);
                if (itemTypeDst == UInt64Type) return ToArray<ulong>(value, nsResolver);
                if (itemTypeDst == UriType) return ToArray<Uri>(value, nsResolver);
                if (itemTypeDst == XmlAtomicValueType) return ToArray<XmlAtomicValue>(value, nsResolver);
                if (itemTypeDst == XmlQualifiedNameType) return ToArray<XmlQualifiedName>(value, nsResolver);
                if (itemTypeDst == XPathItemType) return ToArray<XPathItem>(value, nsResolver);
                if (itemTypeDst == XPathNavigatorType) return ToArray<XPathNavigator>(value, nsResolver);

                throw CreateInvalidClrMappingException(sourceType, destinationType);
            }

            // Destination type is IList, ICollection or IEnumerable
            // If source value is an array of values having the default representation, then conversion is a no-op
            if (sourceType == DefaultClrType && sourceType != ObjectArrayType)
                return value;

            return ToList(value, nsResolver);
        }

        /// <summary>
        /// Return true if "type" is one of the following:
        ///   1. IList, ICollection, IEnumerable
        ///   2. A strongly-typed array
        ///   3. A string
        /// </summary>
        private bool IsListType(Type type) {
            // IsClrListType returns true if "type" is one of the list interfaces
            if (type == IListType || type == ICollectionType || type == IEnumerableType || type == StringType)
                return true;

            return type.IsArray;
        }

        /// <summary>
        /// Convert "list" to an array of type T by iterating over each item in "list" and converting it to type "T"
        /// by invoking the atomic converter.
        /// </summary>
        private T[] ToArray<T>(object list, IXmlNamespaceResolver nsResolver) {
            // IList --> Array<T>
            IList listSrc = list as IList;
            if (listSrc != null) {
                T[] arrDst = new T[listSrc.Count];

                for (int i = 0; i < listSrc.Count; i++)
                    arrDst[i] = (T) this.atomicConverter.ChangeType(listSrc[i], typeof(T), nsResolver);

                return arrDst;
            }

            // IEnumerable --> Array<T>
            IEnumerable enumSrc = list as IEnumerable;
            Debug.Assert(enumSrc != null, "Value passed to ToArray must implement IEnumerable");

            List<T> listDst = new List<T>();
            foreach (object value in enumSrc)
                listDst.Add((T) this.atomicConverter.ChangeType(value, typeof(T), nsResolver));

            return listDst.ToArray();
        }

        /// <summary>
        /// Convert "list" to an IList containing items in the atomic type's default representation.
        /// </summary>
        private IList ToList(object list, IXmlNamespaceResolver nsResolver) {
            // IList --> object[]
            IList listSrc = list as IList;
            if (listSrc != null) {
                object[] arrDst = new object[listSrc.Count];

                for (int i = 0; i < listSrc.Count; i++)
                    arrDst[i] = this.atomicConverter.ChangeType(listSrc[i], ObjectType, nsResolver);

                return arrDst;
            }

            // IEnumerable --> List<object>
            IEnumerable enumSrc = list as IEnumerable;
            Debug.Assert(enumSrc != null, "Value passed to ToArray must implement IEnumerable");

            List<object> listDst = new List<object>();
            foreach (object value in enumSrc)
                listDst.Add(this.atomicConverter.ChangeType(value, ObjectType, nsResolver));

            return listDst;
        }

        /// <summary>
        /// Tokenize "value" by splitting it on whitespace characters.  Insert tokens into an ArrayList and return the list.
        /// </summary>
        private List<string> StringAsList(string value) {
            return new List<string>(XmlConvert.SplitString(value));
        }

        /// <summary>
        /// Convert a list to a corresponding list of strings.  Then concatenate the strings, which adjacent values delimited
        /// by a space character.
        /// </summary>
        private string ListAsString(IEnumerable list, IXmlNamespaceResolver nsResolver) {
            StringBuilder bldr = new StringBuilder();

            foreach (object value in list) {
                // skip null values
                if (value != null) {
                    // Separate values by single space character
                    if (bldr.Length != 0)
                        bldr.Append(' ');

                    // Append string value of next item in the list
                    bldr.Append(this.atomicConverter.ToString(value, nsResolver));
                }
            }

            return bldr.ToString();
        }

        /// <summary>
        /// Create an InvalidCastException for cases where either "destinationType" or "sourceType" is not a supported CLR representation
        /// for this Xml type.
        /// </summary>
        private new Exception CreateInvalidClrMappingException(Type sourceType, Type destinationType) {
            if (sourceType == destinationType)
                return new InvalidCastException(Res.GetString(Res.XmlConvert_TypeListBadMapping, XmlTypeName, sourceType.Name));

            return new InvalidCastException(Res.GetString(Res.XmlConvert_TypeListBadMapping2, XmlTypeName, sourceType.Name, destinationType.Name));
        }
    }

    internal class XmlUnionConverter : XmlBaseConverter {
        private XmlValueConverter[] converters;
        private bool hasAtomicMember, hasListMember;
 
        protected XmlUnionConverter(XmlSchemaType schemaType) : base(schemaType) {
            // Skip restrictions. It is safe to do that because this is a union, so it's not a built-in type 
            while (schemaType.DerivedBy == XmlSchemaDerivationMethod.Restriction)
                schemaType = schemaType.BaseXmlSchemaType;

            // Get a converter for each member type in the union
            Debug.Assert(schemaType.DerivedBy == XmlSchemaDerivationMethod.Union);
            XmlSchemaSimpleType[] memberTypes = ((XmlSchemaSimpleTypeUnion) ((XmlSchemaSimpleType) schemaType).Content).BaseMemberTypes;

            this.converters = new XmlValueConverter[memberTypes.Length];
            for (int i = 0; i < memberTypes.Length; i++) {
                this.converters[i] = memberTypes[i].ValueConverter;

                // Track whether this union's member types include a list type
                if (memberTypes[i].Datatype.Variety == XmlSchemaDatatypeVariety.List)
                    this.hasListMember = true;
                else if (memberTypes[i].Datatype.Variety == XmlSchemaDatatypeVariety.Atomic)
                    this.hasAtomicMember = true;
            }
        }

        public static XmlValueConverter Create(XmlSchemaType schemaType) {
            return new XmlUnionConverter(schemaType);
        }
        
        
        //-----------------------------------------------
        // ChangeType
        //-----------------------------------------------
        
        public override object ChangeType(object value, Type destinationType, IXmlNamespaceResolver nsResolver) {
            if (value == null) throw new ArgumentNullException("value");
            if (destinationType == null) throw new ArgumentNullException("destinationType");

            Type sourceType = value.GetType();

            // If source value is an XmlAtomicValue, then allow it to perform the conversion
            if (sourceType == XmlAtomicValueType && hasAtomicMember)
                return ((XmlAtomicValue) value).ValueAs(destinationType, nsResolver);

            // If source value is an XmlAtomicValue[], then use item* converter
            if (sourceType == XmlAtomicValueArrayType && hasListMember)
                return XmlAnyListConverter.ItemList.ChangeType(value, destinationType, nsResolver);

            // If source value is a string, then validate the string in order to determine the member type
            if (sourceType == StringType) {
                if (destinationType == StringType) return value;

                XsdSimpleValue simpleValue = (XsdSimpleValue) SchemaType.Datatype.ParseValue((string) value, new NameTable(), nsResolver, true);

                // Allow the member type to perform the conversion
                return simpleValue.XmlType.ValueConverter.ChangeType((string) value, destinationType, nsResolver);
            }

            throw CreateInvalidClrMappingException(sourceType, destinationType);
        }
    }
}