summaryrefslogtreecommitdiff
path: root/src/mscorlib/Resources/Strings.resx
blob: 791d1ca04d65910879d74ce38821e02185f0b4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
<?xml version="1.0" encoding="utf-8"?>
<root>
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <data name="Acc_CreateAbst" xml:space="preserve">
    <value>Cannot create an abstract class.</value>
  </data>
  <data name="Acc_CreateAbstEx" xml:space="preserve">
    <value>Cannot create an instance of {0} because it is an abstract class.</value>
  </data>
  <data name="Acc_CreateArgIterator" xml:space="preserve">
    <value>Cannot dynamically create an instance of ArgIterator.</value>
  </data>
  <data name="Acc_CreateGeneric" xml:space="preserve">
    <value>Cannot create a type for which Type.ContainsGenericParameters is true.</value>
  </data>
  <data name="Acc_CreateGenericEx" xml:space="preserve">
    <value>Cannot create an instance of {0} because Type.ContainsGenericParameters is true.</value>
  </data>
  <data name="Acc_CreateInterface" xml:space="preserve">
    <value>Cannot create an instance of an interface.</value>
  </data>
  <data name="Acc_CreateInterfaceEx" xml:space="preserve">
    <value>Cannot create an instance of {0} because it is an interface.</value>
  </data>
  <data name="Acc_CreateVoid" xml:space="preserve">
    <value>Cannot dynamically create an instance of System.Void.</value>
  </data>
  <data name="Acc_NotClassInit" xml:space="preserve">
    <value>Type initializer was not callable.</value>
  </data>
  <data name="Acc_ReadOnly" xml:space="preserve">
    <value>Cannot set a constant field.</value>
  </data>
  <data name="Acc_RvaStatic" xml:space="preserve">
    <value>SkipVerification permission is needed to modify an image-based (RVA) static field.</value>
  </data>
  <data name="Access_Void" xml:space="preserve">
    <value>Cannot create an instance of void.</value>
  </data>
  <data name="AggregateException_ctor_DefaultMessage" xml:space="preserve">
    <value>One or more errors occurred.</value>
  </data>
  <data name="AggregateException_ctor_InnerExceptionNull" xml:space="preserve">
    <value>An element of innerExceptions was null.</value>
  </data>
  <data name="AggregateException_DeserializationFailure" xml:space="preserve">
    <value>The serialization stream contains no inner exceptions.</value>
  </data>
  <data name="AggregateException_ToString" xml:space="preserve">
    <value>{0}{1}---&gt; (Inner Exception #{2}) {3}{4}{5}</value>
  </data>
  <data name="AppDomain_AppBaseNotSet" xml:space="preserve">
    <value>The ApplicationBase must be set before retrieving this property.</value>
  </data>
  <data name="Arg_AccessException" xml:space="preserve">
    <value>Cannot access member.</value>
  </data>
  <data name="Arg_AccessViolationException" xml:space="preserve">
    <value>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</value>
  </data>
  <data name="Arg_AmbiguousMatchException" xml:space="preserve">
    <value>Ambiguous match found.</value>
  </data>
  <data name="Arg_AppDomainUnloadedException" xml:space="preserve">
    <value>Attempted to access an unloaded AppDomain.</value>
  </data>
  <data name="Arg_ApplicationException" xml:space="preserve">
    <value>Error in the application.</value>
  </data>
  <data name="Arg_ArgumentException" xml:space="preserve">
    <value>Value does not fall within the expected range.</value>
  </data>
  <data name="Arg_ArgumentOutOfRangeException" xml:space="preserve">
    <value>Specified argument was out of the range of valid values.</value>
  </data>
  <data name="Arg_ArithmeticException" xml:space="preserve">
    <value>Overflow or underflow in the arithmetic operation.</value>
  </data>
  <data name="Arg_ArrayLengthsDiffer" xml:space="preserve">
    <value>Array lengths must be the same.</value>
  </data>
  <data name="Arg_ArrayPlusOffTooSmall" xml:space="preserve">
    <value>Destination array is not long enough to copy all the items in the collection. Check array index and length.</value>
  </data>
  <data name="Arg_ArrayTypeMismatchException" xml:space="preserve">
    <value>Attempted to access an element as a type incompatible with the array.</value>
  </data>
  <data name="Arg_ArrayZeroError" xml:space="preserve">
    <value>Array must not be of length zero.</value>
  </data>
  <data name="Arg_BadDecimal" xml:space="preserve">
    <value>Read an invalid decimal value from the buffer.</value>
  </data>
  <data name="Arg_BadImageFormatException" xml:space="preserve">
    <value>Format of the executable (.exe) or library (.dll) is invalid.</value>
  </data>
  <data name="Arg_BadLiteralFormat" xml:space="preserve">
    <value>Encountered an invalid type for a default value.</value>
  </data>
  <data name="Arg_BogusIComparer" xml:space="preserve">
    <value>Unable to sort because the IComparer.Compare() method returns inconsistent results. Either a value does not compare equal to itself, or one value repeatedly compared to another value yields different results. IComparer: '{0}'.</value>
  </data>
  <data name="Arg_BufferTooSmall" xml:space="preserve">
    <value>Not enough space available in the buffer.</value>
  </data>
  <data name="Arg_CannotBeNaN" xml:space="preserve">
    <value>TimeSpan does not accept floating point Not-a-Number values.</value>
  </data>
  <data name="Arg_CannotHaveNegativeValue" xml:space="preserve">
    <value>String cannot contain a minus sign if the base is not 10.</value>
  </data>
  <data name="Arg_CATypeResolutionFailed" xml:space="preserve">
    <value>Failed to resolve type from string "{0}" which was embedded in custom attribute blob.</value>
  </data>
  <data name="Arg_COMAccess" xml:space="preserve">
    <value>Must specify property Set or Get or method call for a COM Object.</value>
  </data>
  <data name="Arg_COMException" xml:space="preserve">
    <value>Error HRESULT E_FAIL has been returned from a call to a COM component.</value>
  </data>
  <data name="Arg_COMPropSetPut" xml:space="preserve">
    <value>Only one of the following binding flags can be set: BindingFlags.SetProperty, BindingFlags.PutDispProperty,  BindingFlags.PutRefDispProperty.</value>
  </data>
  <data name="Arg_CreatInstAccess" xml:space="preserve">
    <value>Cannot specify both CreateInstance and another access type.</value>
  </data>
  <data name="Arg_CryptographyException" xml:space="preserve">
    <value>Error occurred during a cryptographic operation.</value>
  </data>
  <data name="Arg_CustomAttributeFormatException" xml:space="preserve">
    <value>Binary format of the specified custom attribute was invalid.</value>
  </data>
  <data name="Arg_DataMisalignedException" xml:space="preserve">
    <value>A datatype misalignment was detected in a load or store instruction.</value>
  </data>
  <data name="Arg_DateTimeRange" xml:space="preserve">
    <value>Combination of arguments to the DateTime constructor is out of the legal range.</value>
  </data>
  <data name="Arg_DecBitCtor" xml:space="preserve">
    <value>Decimal byte array constructor requires an array of length four containing valid decimal bytes.</value>
  </data>
  <data name="Arg_DirectoryNotFoundException" xml:space="preserve">
    <value>Attempted to access a path that is not on the disk.</value>
  </data>
  <data name="Arg_DivideByZero" xml:space="preserve">
    <value>Attempted to divide by zero.</value>
  </data>
  <data name="Arg_DlgtNullInst" xml:space="preserve">
    <value>Delegate to an instance method cannot have null 'this'.</value>
  </data>
  <data name="Arg_DlgtTargMeth" xml:space="preserve">
    <value>Cannot bind to the target method because its signature or security transparency is not compatible with that of the delegate type.</value>
  </data>
  <data name="Arg_DlgtTypeMis" xml:space="preserve">
    <value>Delegates must be of the same type.</value>
  </data>
  <data name="Arg_DllNotFoundException" xml:space="preserve">
    <value>Dll was not found.</value>
  </data>
  <data name="Arg_DriveNotFoundException" xml:space="preserve">
    <value>Attempted to access a drive that is not available.</value>
  </data>
  <data name="Arg_DuplicateWaitObjectException" xml:space="preserve">
    <value>Duplicate objects in argument.</value>
  </data>
  <data name="Arg_EHClauseNotClause" xml:space="preserve">
    <value>This ExceptionHandlingClause is not a clause.</value>
  </data>
  <data name="Arg_EHClauseNotFilter" xml:space="preserve">
    <value>This ExceptionHandlingClause is not a filter.</value>
  </data>
  <data name="Arg_EmptyArray" xml:space="preserve">
    <value>Array may not be empty.</value>
  </data>
  <data name="Arg_EmptyOrNullString" xml:space="preserve">
    <value>String may not be empty or null.</value>
  </data>
  <data name="Arg_EndOfStreamException" xml:space="preserve">
    <value>Attempted to read past the end of the stream.</value>
  </data>
  <data name="Arg_EntryPointNotFoundException" xml:space="preserve">
    <value>Entry point was not found.</value>
  </data>
  <data name="Arg_EnumAndObjectMustBeSameType" xml:space="preserve">
    <value>Object must be the same type as the enum. The type passed in was '{0}'; the enum type was '{1}'.</value>
  </data>
  <data name="Arg_EnumFormatUnderlyingTypeAndObjectMustBeSameType" xml:space="preserve">
    <value>Enum underlying type and the object must be same type or object. Type passed in was '{0}'; the enum underlying type was '{1}'.</value>
  </data>
  <data name="Arg_EnumIllegalVal" xml:space="preserve">
    <value>Illegal enum value: {0}.</value>
  </data>
  <data name="Arg_EnumLitValueNotFound" xml:space="preserve">
    <value>Literal value was not found.</value>
  </data>
  <data name="Arg_EnumUnderlyingTypeAndObjectMustBeSameType" xml:space="preserve">
    <value>Enum underlying type and the object must be same type or object must be a String. Type passed in was '{0}'; the enum underlying type was '{1}'.</value>
  </data>
  <data name="Arg_EnumValueNotFound" xml:space="preserve">
    <value>Requested value '{0}' was not found.</value>
  </data>
  <data name="Arg_ExecutionEngineException" xml:space="preserve">
    <value>Internal error in the runtime.</value>
  </data>
  <data name="Arg_ExternalException" xml:space="preserve">
    <value>External component has thrown an exception.</value>
  </data>
  <data name="Arg_FieldAccessException" xml:space="preserve">
    <value>Attempted to access a field that is not accessible by the caller.</value>
  </data>
  <data name="Arg_FieldDeclTarget" xml:space="preserve">
    <value>Field '{0}' defined on type '{1}' is not a field on the target object which is of type '{2}'.</value>
  </data>
  <data name="Arg_FldGetArgErr" xml:space="preserve">
    <value>No arguments can be provided to Get a field value.</value>
  </data>
  <data name="Arg_FldGetPropSet" xml:space="preserve">
    <value>Cannot specify both GetField and SetProperty.</value>
  </data>
  <data name="Arg_FldSetArgErr" xml:space="preserve">
    <value>Only the field value can be specified to set a field value.</value>
  </data>
  <data name="Arg_FldSetGet" xml:space="preserve">
    <value>Cannot specify both Get and Set on a field.</value>
  </data>
  <data name="Arg_FldSetInvoke" xml:space="preserve">
    <value>Cannot specify Set on a Field and Invoke on a method.</value>
  </data>
  <data name="Arg_FldSetPropGet" xml:space="preserve">
    <value>Cannot specify both SetField and GetProperty.</value>
  </data>
  <data name="Arg_FormatException" xml:space="preserve">
    <value>One of the identified items was in an invalid format.</value>
  </data>
  <data name="Arg_GenericParameter" xml:space="preserve">
    <value>Method must be called on a Type for which Type.IsGenericParameter is false.</value>
  </data>
  <data name="Arg_GetMethNotFnd" xml:space="preserve">
    <value>Property Get method was not found.</value>
  </data>
  <data name="Arg_GuidArrayCtor" xml:space="preserve">
    <value>Byte array for GUID must be exactly {0} bytes long.</value>
  </data>
  <data name="Arg_HandleNotAsync" xml:space="preserve">
    <value>Handle does not support asynchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened synchronously (that is, it was not opened for overlapped I/O).</value>
  </data>
  <data name="Arg_HandleNotSync" xml:space="preserve">
    <value>Handle does not support synchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened asynchronously (that is, it was opened explicitly for overlapped I/O).</value>
  </data>
  <data name="Arg_HexStyleNotSupported" xml:space="preserve">
    <value>The number style AllowHexSpecifier is not supported on floating point data types.</value>
  </data>
  <data name="Arg_HTCapacityOverflow" xml:space="preserve">
    <value>Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table.</value>
  </data>
  <data name="Arg_IndexMustBeInt" xml:space="preserve">
    <value>All indexes must be of type Int32.</value>
  </data>
  <data name="Arg_IndexOutOfRangeException" xml:space="preserve">
    <value>Index was outside the bounds of the array.</value>
  </data>
  <data name="Arg_InsufficientExecutionStackException" xml:space="preserve">
    <value>Insufficient stack to continue executing the program safely. This can happen from having too many functions on the call stack or function on the stack using too much stack space.</value>
  </data>
  <data name="Arg_InvalidANSIString" xml:space="preserve">
    <value>The ANSI string passed in could not be converted from the default ANSI code page to Unicode.</value>
  </data>
  <data name="Arg_InvalidBase" xml:space="preserve">
    <value>Invalid Base.</value>
  </data>
  <data name="Arg_InvalidCastException" xml:space="preserve">
    <value>Specified cast is not valid.</value>
  </data>
  <data name="Arg_InvalidComObjectException" xml:space="preserve">
    <value>Attempt has been made to use a COM object that does not have a backing class factory.</value>
  </data>
  <data name="Arg_InvalidFilterCriteriaException" xml:space="preserve">
    <value>Specified filter criteria was invalid.</value>
  </data>
  <data name="Arg_InvalidHandle" xml:space="preserve">
    <value>Invalid handle.</value>
  </data>
  <data name="Arg_InvalidHexStyle" xml:space="preserve">
    <value>With the AllowHexSpecifier bit set in the enum bit field, the only other valid bits that can be combined into the enum value must be a subset of those in HexNumber.</value>
  </data>
  <data name="Arg_InvalidNeutralResourcesLanguage_Asm_Culture" xml:space="preserve">
    <value>The NeutralResourcesLanguageAttribute on the assembly "{0}" specifies an invalid culture name: "{1}".</value>
  </data>
  <data name="Arg_InvalidNeutralResourcesLanguage_FallbackLoc" xml:space="preserve">
    <value>The NeutralResourcesLanguageAttribute specifies an invalid or unrecognized ultimate resource fallback location: "{0}".</value>
  </data>
  <data name="Arg_InvalidOleVariantTypeException" xml:space="preserve">
    <value>Specified OLE variant was invalid.</value>
  </data>
  <data name="Arg_InvalidOperationException" xml:space="preserve">
    <value>Operation is not valid due to the current state of the object.</value>
  </data>
  <data name="Arg_InvalidSearchPattern" xml:space="preserve">
    <value>Search pattern cannot contain ".." to move up directories and can be contained only internally in file/directory names, as in "a..b".</value>
  </data>
  <data name="Arg_InvalidTypeInRetType" xml:space="preserve">
    <value>The return Type contains some invalid type (i.e. null, ByRef)</value>
  </data>
  <data name="Arg_InvalidTypeInSignature" xml:space="preserve">
    <value>The signature Type array contains some invalid type (i.e. null, void)</value>
  </data>
  <data name="Arg_InvalidUTF8String" xml:space="preserve">
    <value>The UTF8 string passed in could not be converted to Unicode.</value>
  </data>
  <data name="Arg_IOException" xml:space="preserve">
    <value>I/O error occurred.</value>
  </data>
  <data name="Arg_KeyNotFound" xml:space="preserve">
    <value>The given key was not present in the dictionary.</value>
  </data>
  <data name="Arg_LongerThanDestArray" xml:space="preserve">
    <value>Destination array was not long enough. Check the destination index, length, and the array's lower bounds.</value>
  </data>
  <data name="Arg_LongerThanSrcArray" xml:space="preserve">
    <value>Source array was not long enough. Check the source index, length, and the array's lower bounds.</value>
  </data>
  <data name="Arg_LongerThanSrcString" xml:space="preserve">
    <value>Source string was not long enough. Check sourceIndex and count.</value>
  </data>
  <data name="Arg_LowerBoundsMustMatch" xml:space="preserve">
    <value>The arrays' lower bounds must be identical.</value>
  </data>
  <data name="Arg_MarshalAsAnyRestriction" xml:space="preserve">
    <value>AsAny cannot be used on return types, ByRef parameters, ArrayWithOffset, or parameters passed from unmanaged to managed.</value>
  </data>
  <data name="Arg_MarshalDirectiveException" xml:space="preserve">
    <value>Marshaling directives are invalid.</value>
  </data>
  <data name="Arg_MethodAccessException" xml:space="preserve">
    <value>Attempt to access the method failed.</value>
  </data>
  <data name="Arg_MethodAccessException_WithMethodName" xml:space="preserve">
    <value>Attempt to access the method "{0}" on type "{1}" failed.</value>
  </data>
  <data name="Arg_MissingFieldException" xml:space="preserve">
    <value>Attempted to access a non-existing field.</value>
  </data>
  <data name="Arg_MissingManifestResourceException" xml:space="preserve">
    <value>Unable to find manifest resource.</value>
  </data>
  <data name="Arg_MissingMemberException" xml:space="preserve">
    <value>Attempted to access a missing member.</value>
  </data>
  <data name="Arg_MissingMethodException" xml:space="preserve">
    <value>Attempted to access a missing method.</value>
  </data>
  <data name="Arg_MulticastNotSupportedException" xml:space="preserve">
    <value>Attempted to add multiple callbacks to a delegate that does not support multicast.</value>
  </data>
  <data name="Arg_MustBeBoolean" xml:space="preserve">
    <value>Object must be of type Boolean.</value>
  </data>
  <data name="Arg_MustBeByte" xml:space="preserve">
    <value>Object must be of type Byte.</value>
  </data>
  <data name="Arg_MustBeChar" xml:space="preserve">
    <value>Object must be of type Char.</value>
  </data>
  <data name="Arg_MustBeDateTime" xml:space="preserve">
    <value>Object must be of type DateTime.</value>
  </data>
  <data name="Arg_MustBeDateTimeOffset" xml:space="preserve">
    <value>Object must be of type DateTimeOffset.</value>
  </data>
  <data name="Arg_MustBeDecimal" xml:space="preserve">
    <value>Object must be of type Decimal.</value>
  </data>
  <data name="Arg_MustBeDelegate" xml:space="preserve">
    <value>Type must derive from Delegate.</value>
  </data>
  <data name="Arg_MustBeDouble" xml:space="preserve">
    <value>Object must be of type Double.</value>
  </data>
  <data name="Arg_MustBeEnum" xml:space="preserve">
    <value>Type provided must be an Enum.</value>
  </data>
  <data name="Arg_MustBeEnumBaseTypeOrEnum" xml:space="preserve">
    <value>The value passed in must be an enum base or an underlying type for an enum, such as an Int32.</value>
  </data>
  <data name="Arg_MustBeGuid" xml:space="preserve">
    <value>Object must be of type GUID.</value>
  </data>
  <data name="Arg_MustBeInt16" xml:space="preserve">
    <value>Object must be of type Int16.</value>
  </data>
  <data name="Arg_MustBeInt32" xml:space="preserve">
    <value>Object must be of type Int32.</value>
  </data>
  <data name="Arg_MustBeInt64" xml:space="preserve">
    <value>Object must be of type Int64.</value>
  </data>
  <data name="Arg_MustBeInterface" xml:space="preserve">
    <value>Type passed must be an interface.</value>
  </data>
  <data name="Arg_MustBePointer" xml:space="preserve">
    <value>Type must be a Pointer.</value>
  </data>
  <data name="Arg_MustBePrimArray" xml:space="preserve">
    <value>Object must be an array of primitives.</value>
  </data>
  <data name="Arg_MustBeSByte" xml:space="preserve">
    <value>Object must be of type SByte.</value>
  </data>
  <data name="Arg_MustBeSingle" xml:space="preserve">
    <value>Object must be of type Single.</value>
  </data>
  <data name="Arg_MustBeStatic" xml:space="preserve">
    <value>Method must be a static method.</value>
  </data>
  <data name="Arg_MustBeString" xml:space="preserve">
    <value>Object must be of type String.</value>
  </data>
  <data name="Arg_MustBeStringPtrNotAtom" xml:space="preserve">
    <value>The pointer passed in as a String must not be in the bottom 64K of the process's address space.</value>
  </data>
  <data name="Arg_MustBeTimeSpan" xml:space="preserve">
    <value>Object must be of type TimeSpan.</value>
  </data>
  <data name="Arg_MustBeType" xml:space="preserve">
    <value>Type must be a type provided by the runtime.</value>
  </data>
  <data name="Arg_MustBeUInt16" xml:space="preserve">
    <value>Object must be of type UInt16.</value>
  </data>
  <data name="Arg_MustBeUInt32" xml:space="preserve">
    <value>Object must be of type UInt32.</value>
  </data>
  <data name="Arg_MustBeUInt64" xml:space="preserve">
    <value>Object must be of type UInt64.</value>
  </data>
  <data name="Arg_MustBeVersion" xml:space="preserve">
    <value>Object must be of type Version.</value>
  </data>
  <data name="Arg_MustContainEnumInfo" xml:space="preserve">
    <value>Must specify valid information for parsing in the string.</value>
  </data>
  <data name="Arg_NamedParamNull" xml:space="preserve">
    <value>Named parameter value must not be null.</value>
  </data>
  <data name="Arg_NamedParamTooBig" xml:space="preserve">
    <value>Named parameter array cannot be bigger than argument array.</value>
  </data>
  <data name="Arg_NDirectBadObject" xml:space="preserve">
    <value>No PInvoke conversion exists for value passed to Object-typed parameter.</value>
  </data>
  <data name="Arg_Need1DArray" xml:space="preserve">
    <value>Array was not a one-dimensional array.</value>
  </data>
  <data name="Arg_Need2DArray" xml:space="preserve">
    <value>Array was not a two-dimensional array.</value>
  </data>
  <data name="Arg_Need3DArray" xml:space="preserve">
    <value>Array was not a three-dimensional array.</value>
  </data>
  <data name="Arg_NeedAtLeast1Rank" xml:space="preserve">
    <value>Must provide at least one rank.</value>
  </data>
  <data name="Arg_NegativeArgCount" xml:space="preserve">
    <value>Argument count must not be negative.</value>
  </data>
  <data name="Arg_NoAccessSpec" xml:space="preserve">
    <value>Must specify binding flags describing the invoke operation required (BindingFlags.InvokeMethod CreateInstance GetField SetField GetProperty SetProperty).</value>
  </data>
  <data name="Arg_NoDefCTor" xml:space="preserve">
    <value>No parameterless constructor defined for this object.</value>
  </data>
  <data name="Arg_NoITypeInfo" xml:space="preserve">
    <value>Specified TypeInfo was invalid because it did not support the ITypeInfo interface.</value>
  </data>
  <data name="Arg_NoITypeLib" xml:space="preserve">
    <value>Specified TypeLib was invalid because it did not support the ITypeLib interface.</value>
  </data>
  <data name="Arg_NonZeroLowerBound" xml:space="preserve">
    <value>The lower bound of target array must be zero.</value>
  </data>
  <data name="Arg_NoStaticVirtual" xml:space="preserve">
    <value>Method cannot be both static and virtual.</value>
  </data>
  <data name="Arg_NotFiniteNumberException" xml:space="preserve">
    <value>Number encountered was not a finite quantity.</value>
  </data>
  <data name="Arg_NotFoundIFace" xml:space="preserve">
    <value>Interface not found.</value>
  </data>
  <data name="Arg_NotGenericMethodDefinition" xml:space="preserve">
    <value>{0} is not a GenericMethodDefinition. MakeGenericMethod may only be called on a method for which MethodBase.IsGenericMethodDefinition is true.</value>
  </data>
  <data name="Arg_NotGenericParameter" xml:space="preserve">
    <value>Method may only be called on a Type for which Type.IsGenericParameter is true.</value>
  </data>
  <data name="Arg_NotGenericTypeDefinition" xml:space="preserve">
    <value>{0} is not a GenericTypeDefinition. MakeGenericType may only be called on a type for which Type.IsGenericTypeDefinition is true.</value>
  </data>
  <data name="Arg_NotImplementedException" xml:space="preserve">
    <value>The method or operation is not implemented.</value>
  </data>
  <data name="Arg_NotSupportedException" xml:space="preserve">
    <value>Specified method is not supported.</value>
  </data>
  <data name="Arg_NullIndex" xml:space="preserve">
    <value>Arrays indexes must be set to an object instance.</value>
  </data>
  <data name="Arg_NullReferenceException" xml:space="preserve">
    <value>Object reference not set to an instance of an object.</value>
  </data>
  <data name="Arg_ObjObj" xml:space="preserve">
    <value>Object type cannot be converted to target type.</value>
  </data>
  <data name="Arg_ObjObjEx" xml:space="preserve">
    <value>Object of type '{0}' cannot be converted to type '{1}'.</value>
  </data>
  <data name="Arg_OleAutDateInvalid" xml:space="preserve">
    <value>Not a legal OleAut date.</value>
  </data>
  <data name="Arg_OleAutDateScale" xml:space="preserve">
    <value>OleAut date did not convert to a DateTime correctly.</value>
  </data>
  <data name="Arg_OverflowException" xml:space="preserve">
    <value>Arithmetic operation resulted in an overflow.</value>
  </data>
  <data name="Arg_ParamName_Name" xml:space="preserve">
    <value>Parameter name: {0}</value>
  </data>
  <data name="Arg_ParmArraySize" xml:space="preserve">
    <value>Must specify one or more parameters.</value>
  </data>
  <data name="Arg_ParmCnt" xml:space="preserve">
    <value>Parameter count mismatch.</value>
  </data>
  <data name="Arg_PathIllegal" xml:space="preserve">
    <value>The path is not of a legal form.</value>
  </data>
  <data name="Arg_PathIllegalUNC" xml:space="preserve">
    <value>The UNC path should be of the form \\\\server\\share.</value>
  </data>
  <data name="Arg_PlatformNotSupported" xml:space="preserve">
    <value>Operation is not supported on this platform.</value>
  </data>
  <data name="Arg_PrimWiden" xml:space="preserve">
    <value>Cannot widen from source type to target type either because the source type is a not a primitive type or the conversion cannot be accomplished.</value>
  </data>
  <data name="Arg_PropSetGet" xml:space="preserve">
    <value>Cannot specify both Get and Set on a property.</value>
  </data>
  <data name="Arg_PropSetInvoke" xml:space="preserve">
    <value>Cannot specify Set on a property and Invoke on a method.</value>
  </data>
  <data name="Arg_RankException" xml:space="preserve">
    <value>Attempted to operate on an array with the incorrect number of dimensions.</value>
  </data>
  <data name="Arg_RankIndices" xml:space="preserve">
    <value>Indices length does not match the array rank.</value>
  </data>
  <data name="Arg_RankMultiDimNotSupported" xml:space="preserve">
    <value>Only single dimensional arrays are supported for the requested action.</value>
  </data>
  <data name="Arg_RanksAndBounds" xml:space="preserve">
    <value>Number of lengths and lowerBounds must match.</value>
  </data>
  <data name="Arg_ReflectionOnlyCA" xml:space="preserve">
    <value>It is illegal to reflect on the custom attributes of a Type loaded via ReflectionOnlyGetType (see Assembly.ReflectionOnly) -- use CustomAttributeData instead.</value>
  </data>
  <data name="Arg_ReflectionOnlyField" xml:space="preserve">
    <value>It is illegal to get or set the value on a field on a Type loaded via ReflectionOnlyGetType.</value>
  </data>
  <data name="Arg_ReflectionOnlyInvoke" xml:space="preserve">
    <value>It is illegal to invoke a method on a Type loaded via ReflectionOnlyGetType.</value>
  </data>
  <data name="Arg_RegBadKeyKind" xml:space="preserve">
    <value>The specified RegistryValueKind is an invalid value.</value>
  </data>
  <data name="Arg_RegGetOverflowBug" xml:space="preserve">
    <value>RegistryKey.GetValue does not allow a String that has a length greater than Int32.MaxValue.</value>
  </data>
  <data name="Arg_RegInvalidKeyName" xml:space="preserve">
    <value>Registry key name must start with a valid base key name.</value>
  </data>
  <data name="Arg_RegKeyNotFound" xml:space="preserve">
    <value>The specified registry key does not exist.</value>
  </data>
  <data name="Arg_RegKeyStrLenBug" xml:space="preserve">
    <value>Registry key names should not be greater than 255 characters.</value>
  </data>
  <data name="Arg_RegSetBadArrType" xml:space="preserve">
    <value>RegistryKey.SetValue does not support arrays of type '{0}'. Only Byte[] and String[] are supported.</value>
  </data>
  <data name="Arg_RegSetMismatchedKind" xml:space="preserve">
    <value>The type of the value object did not match the specified RegistryValueKind or the object could not be properly converted.</value>
  </data>
  <data name="Arg_RegSetStrArrNull" xml:space="preserve">
    <value>RegistryKey.SetValue does not allow a String[] that contains a null String reference.</value>
  </data>
  <data name="Arg_RegSubKeyValueAbsent" xml:space="preserve">
    <value>No value exists with that name.</value>
  </data>
  <data name="Arg_RegValStrLenBug" xml:space="preserve">
    <value>Registry value names should not be greater than 16,383 characters.</value>
  </data>
  <data name="Arg_RemoveArgNotFound" xml:space="preserve">
    <value>Cannot remove the specified item because it was not found in the specified Collection.</value>
  </data>
  <data name="Arg_ResMgrNotResSet" xml:space="preserve">
    <value>Type parameter must refer to a subclass of ResourceSet.</value>
  </data>
  <data name="Arg_ResourceFileUnsupportedVersion" xml:space="preserve">
    <value>The ResourceReader class does not know how to read this version of .resources files. Expected version: {0}  This file: {1}</value>
  </data>
  <data name="Arg_ResourceNameNotExist" xml:space="preserve">
    <value>The specified resource name "{0}" does not exist in the resource file.</value>
  </data>
  <data name="Arg_SafeArrayRankMismatchException" xml:space="preserve">
    <value>Specified array was not of the expected rank.</value>
  </data>
  <data name="Arg_SafeArrayTypeMismatchException" xml:space="preserve">
    <value>Specified array was not of the expected type.</value>
  </data>
  <data name="Arg_SecurityException" xml:space="preserve">
    <value>Security error.</value>
  </data>
  <data name="SerializationException" xml:space="preserve">
    <value>Serialization error.</value>
  </data>
  <data name="Arg_SetMethNotFnd" xml:space="preserve">
    <value>Property set method not found.</value>
  </data>
  <data name="Arg_StackOverflowException" xml:space="preserve">
    <value>Operation caused a stack overflow.</value>
  </data>
  <data name="Arg_SurrogatesNotAllowedAsSingleChar" xml:space="preserve">
    <value>Unicode surrogate characters must be written out as pairs together in the same call, not individually. Consider passing in a character array instead.</value>
  </data>
  <data name="Arg_SynchronizationLockException" xml:space="preserve">
    <value>Object synchronization method was called from an unsynchronized block of code.</value>
  </data>
  <data name="Arg_SystemException" xml:space="preserve">
    <value>System error.</value>
  </data>
  <data name="Arg_TargetInvocationException" xml:space="preserve">
    <value>Exception has been thrown by the target of an invocation.</value>
  </data>
  <data name="Arg_TargetParameterCountException" xml:space="preserve">
    <value>Number of parameters specified does not match the expected number.</value>
  </data>
  <data name="Arg_ThreadStartException" xml:space="preserve">
    <value>Thread failed to start.</value>
  </data>
  <data name="Arg_ThreadStateException" xml:space="preserve">
    <value>Thread was in an invalid state for the operation being executed.</value>
  </data>
  <data name="Arg_TimeoutException" xml:space="preserve">
    <value>The operation has timed out.</value>
  </data>
  <data name="Arg_TypeAccessException" xml:space="preserve">
    <value>Attempt to access the type failed.</value>
  </data>
  <data name="Arg_TypedReference_Null" xml:space="preserve">
    <value>The TypedReference must be initialized.</value>
  </data>
  <data name="Arg_TypeLoadException" xml:space="preserve">
    <value>Failure has occurred while loading a type.</value>
  </data>
  <data name="Arg_TypeLoadNullStr" xml:space="preserve">
    <value>A null or zero length string does not represent a valid Type.</value>
  </data>
  <data name="Arg_TypeRefPrimitve" xml:space="preserve">
    <value>TypedReferences cannot be redefined as primitives.</value>
  </data>
  <data name="Arg_TypeUnloadedException" xml:space="preserve">
    <value>Type had been unloaded.</value>
  </data>
  <data name="Arg_UnauthorizedAccessException" xml:space="preserve">
    <value>Attempted to perform an unauthorized operation.</value>
  </data>
  <data name="Arg_UnboundGenField" xml:space="preserve">
    <value>Late bound operations cannot be performed on fields with types for which Type.ContainsGenericParameters is true.</value>
  </data>
  <data name="Arg_UnboundGenParam" xml:space="preserve">
    <value>Late bound operations cannot be performed on types or methods for which ContainsGenericParameters is true.</value>
  </data>
  <data name="Arg_UnknownTypeCode" xml:space="preserve">
    <value>Unknown TypeCode value.</value>
  </data>
  <data name="Arg_VarMissNull" xml:space="preserve">
    <value>Missing parameter does not have a default value.</value>
  </data>
  <data name="Arg_VersionString" xml:space="preserve">
    <value>Version string portion was too short or too long.</value>
  </data>
  <data name="Arg_WrongAsyncResult" xml:space="preserve">
    <value>IAsyncResult object did not come from the corresponding async method on this type.</value>
  </data>
  <data name="Arg_WrongType" xml:space="preserve">
    <value>The value "{0}" is not of type "{1}" and cannot be used in this generic collection.</value>
  </data>
  <data name="Argument_AbsolutePathRequired" xml:space="preserve">
    <value>Absolute path information is required.</value>
  </data>
  <data name="Argument_AddingDuplicate" xml:space="preserve">
    <value>An item with the same key has already been added.</value>
  </data>
  <data name="Argument_AddingDuplicate__" xml:space="preserve">
    <value>Item has already been added. Key in dictionary: '{0}'  Key being added: '{1}'</value>
  </data>
  <data name="Argument_AddingDuplicateWithKey" xml:space="preserve">
    <value>An item with the same key has already been added. Key: {0}</value>
  </data>
  <data name="Argument_AdjustmentRulesNoNulls" xml:space="preserve">
    <value>The AdjustmentRule array cannot contain null elements.</value>
  </data>
  <data name="Argument_AdjustmentRulesOutOfOrder" xml:space="preserve">
    <value>The elements of the AdjustmentRule array must be in chronological order and must not overlap.</value>
  </data>
  <data name="Argument_AlreadyACCW" xml:space="preserve">
    <value>The object already has a CCW associated with it.</value>
  </data>
  <data name="Argument_AlreadyBoundOrSyncHandle" xml:space="preserve">
    <value>'handle' has already been bound to the thread pool, or was not opened for asynchronous I/O.</value>
  </data>
  <data name="Argument_ArgumentZero" xml:space="preserve">
    <value>Argument cannot be zero.</value>
  </data>
  <data name="Argument_ArrayGetInterfaceMap" xml:space="preserve">
    <value>Interface maps for generic interfaces on arrays cannot be retrieved.</value>
  </data>
  <data name="Argument_ArraysInvalid" xml:space="preserve">
    <value>Array or pointer types are not valid.</value>
  </data>
  <data name="Argument_BadAttributeOnInterfaceMethod" xml:space="preserve">
    <value>Interface method must be abstract and virtual.</value>
  </data>
  <data name="Argument_BadConstantValue" xml:space="preserve">
    <value>Bad default value.</value>
  </data>
  <data name="Argument_BadConstructor" xml:space="preserve">
    <value>Cannot have private or static constructor.</value>
  </data>
  <data name="Argument_BadConstructorCallConv" xml:space="preserve">
    <value>Constructor must have standard calling convention.</value>
  </data>
  <data name="Argument_BadExceptionCodeGen" xml:space="preserve">
    <value>Incorrect code generation for exception block.</value>
  </data>
  <data name="Argument_BadFieldForConstructorBuilder" xml:space="preserve">
    <value>Field must be on the same type of the given ConstructorInfo.</value>
  </data>
  <data name="Argument_BadFieldSig" xml:space="preserve">
    <value>Field signatures do not have return types.</value>
  </data>
  <data name="Argument_BadFieldType" xml:space="preserve">
    <value>Bad field type in defining field.</value>
  </data>
  <data name="Argument_BadFormatSpecifier" xml:space="preserve">
    <value>Format specifier was invalid.</value>
  </data>
  <data name="Argument_BadImageFormatExceptionResolve" xml:space="preserve">
    <value>A BadImageFormatException has been thrown while parsing the signature. This is likely due to lack of a generic context. Ensure genericTypeArguments and genericMethodArguments are provided and contain enough context.</value>
  </data>
  <data name="Argument_BadLabel" xml:space="preserve">
    <value>Bad label in ILGenerator.</value>
  </data>
  <data name="Argument_BadLabelContent" xml:space="preserve">
    <value>Bad label content in ILGenerator.</value>
  </data>
  <data name="Argument_BadNestedTypeFlags" xml:space="preserve">
    <value>Visibility of interfaces must be one of the following: NestedAssembly, NestedFamANDAssem, NestedFamily, NestedFamORAssem, NestedPrivate or NestedPublic.</value>
  </data>
  <data name="Argument_BadObjRef" xml:space="preserve">
    <value>Invalid ObjRef provided to '{0}'.</value>
  </data>
  <data name="Argument_BadParameterCountsForConstructor" xml:space="preserve">
    <value>Parameter count does not match passed in argument value count.</value>
  </data>
  <data name="Argument_BadParameterTypeForCAB" xml:space="preserve">
    <value>Cannot emit a CustomAttribute with argument of type {0}.</value>
  </data>
  <data name="Argument_BadPropertyForConstructorBuilder" xml:space="preserve">
    <value>Property must be on the same type of the given ConstructorInfo.</value>
  </data>
  <data name="Argument_BadSigFormat" xml:space="preserve">
    <value>Incorrect signature format.</value>
  </data>
  <data name="Argument_BadSizeForData" xml:space="preserve">
    <value>Data size must be &gt; 1 and &lt; 0x3f0000</value>
  </data>
  <data name="Argument_BadTypeAttrInvalidLayout" xml:space="preserve">
    <value>Bad type attributes. Invalid layout attribute specified.</value>
  </data>
  <data name="Argument_BadTypeAttrNestedVisibilityOnNonNestedType" xml:space="preserve">
    <value>Bad type attributes. Nested visibility flag set on a non-nested type.</value>
  </data>
  <data name="Argument_BadTypeAttrNonNestedVisibilityNestedType" xml:space="preserve">
    <value>Bad type attributes. Non-nested visibility flag set on a nested type.</value>
  </data>
  <data name="Argument_BadTypeAttrReservedBitsSet" xml:space="preserve">
    <value>Bad type attributes. Reserved bits set on the type.</value>
  </data>
  <data name="Argument_BadTypeInCustomAttribute" xml:space="preserve">
    <value>An invalid type was used as a custom attribute constructor argument, field or property.</value>
  </data>
  <data name="Argument_CannotCreateTypedReference" xml:space="preserve">
    <value>Cannot use function evaluation to create a TypedReference object.</value>
  </data>
  <data name="Argument_CannotGetTypeTokenForByRef" xml:space="preserve">
    <value>Cannot get TypeToken for a ByRef type.</value>
  </data>
  <data name="Argument_CannotSetParentToInterface" xml:space="preserve">
    <value>Cannot set parent to an interface.</value>
  </data>
  <data name="Argument_CantCallSecObjFunc" xml:space="preserve">
    <value>Cannot evaluate a security function.</value>
  </data>
  <data name="Argument_CodepageNotSupported" xml:space="preserve">
    <value>{0} is not a supported code page.</value>
  </data>
  <data name="Argument_CompareOptionOrdinal" xml:space="preserve">
    <value>CompareOption.Ordinal cannot be used with other options.</value>
  </data>
  <data name="Argument_ConflictingDateTimeRoundtripStyles" xml:space="preserve">
    <value>The DateTimeStyles value RoundtripKind cannot be used with the values AssumeLocal, AssumeUniversal or AdjustToUniversal.</value>
  </data>
  <data name="Argument_ConflictingDateTimeStyles" xml:space="preserve">
    <value>The DateTimeStyles values AssumeLocal and AssumeUniversal cannot be used together.</value>
  </data>
  <data name="Argument_ConstantDoesntMatch" xml:space="preserve">
    <value>Constant does not match the defined type.</value>
  </data>
  <data name="Argument_ConstantNotSupported" xml:space="preserve">
    <value>{0} is not a supported constant type.</value>
  </data>
  <data name="Argument_ConstantNull" xml:space="preserve">
    <value>Null is not a valid constant value for this type.</value>
  </data>
  <data name="Argument_ConstructorNeedGenericDeclaringType" xml:space="preserve">
    <value>The specified constructor must be declared on a generic type definition.</value>
  </data>
  <data name="Argument_ConversionOverflow" xml:space="preserve">
    <value>Conversion buffer overflow.</value>
  </data>
  <data name="Argument_ConvertMismatch" xml:space="preserve">
    <value>The conversion could not be completed because the supplied DateTime did not have the Kind property set correctly.  For example, when the Kind property is DateTimeKind.Local, the source time zone must be TimeZoneInfo.Local.</value>
  </data>
  <data name="Argument_CORDBBadMethod" xml:space="preserve">
    <value>Cannot find the method on the object instance.</value>
  </data>
  <data name="Argument_CORDBBadVarArgCallConv" xml:space="preserve">
    <value>Cannot evaluate a VarArgs function.</value>
  </data>
  <data name="Argument_CultureIetfNotSupported" xml:space="preserve">
    <value>Culture IETF Name {0} is not a recognized IETF name.</value>
  </data>
  <data name="Argument_CultureInvalidIdentifier" xml:space="preserve">
    <value>{0} is an invalid culture identifier.</value>
  </data>
  <data name="Argument_CultureIsNeutral" xml:space="preserve">
    <value>Culture ID {0} (0x{0:X4}) is a neutral culture; a region cannot be created from it.</value>
  </data>
  <data name="Argument_CultureNotSupported" xml:space="preserve">
    <value>Culture is not supported.</value>
  </data>
  <data name="Argument_CustomAssemblyLoadContextRequestedNameMismatch" xml:space="preserve">
    <value>Resolved assembly's simple name should be the same as of the requested assembly.</value>
  </data>
  <data name="Argument_CustomCultureCannotBePassedByNumber" xml:space="preserve">
    <value>Customized cultures cannot be passed by LCID, only by name.</value>
  </data>
  <data name="Argument_DateTimeBadBinaryData" xml:space="preserve">
    <value>The binary data must result in a DateTime with ticks between DateTime.MinValue.Ticks and DateTime.MaxValue.Ticks.</value>
  </data>
  <data name="Argument_DateTimeHasTicks" xml:space="preserve">
    <value>The supplied DateTime must have the Year, Month, and Day properties set to 1.  The time cannot be specified more precisely than whole milliseconds.</value>
  </data>
  <data name="Argument_DateTimeHasTimeOfDay" xml:space="preserve">
    <value>The supplied DateTime includes a TimeOfDay setting.   This is not supported.</value>
  </data>
  <data name="Argument_DateTimeIsInvalid" xml:space="preserve">
    <value>The supplied DateTime represents an invalid time.  For example, when the clock is adjusted forward, any time in the period that is skipped is invalid.</value>
  </data>
  <data name="Argument_DateTimeIsNotAmbiguous" xml:space="preserve">
    <value>The supplied DateTime is not in an ambiguous time range.</value>
  </data>
  <data name="Argument_DateTimeKindMustBeUnspecified" xml:space="preserve">
    <value>The supplied DateTime must have the Kind property set to DateTimeKind.Unspecified.</value>
  </data>
  <data name="Argument_DateTimeKindMustBeUnspecifiedOrUtc" xml:space="preserve">
    <value>The supplied DateTime must have the Kind property set to DateTimeKind.Unspecified or DateTimeKind.Utc.</value>
  </data>
  <data name="Argument_DateTimeOffsetInvalidDateTimeStyles" xml:space="preserve">
    <value>The DateTimeStyles value 'NoCurrentDateDefault' is not allowed when parsing DateTimeOffset.</value>
  </data>
  <data name="Argument_DateTimeOffsetIsNotAmbiguous" xml:space="preserve">
    <value>The supplied DateTimeOffset is not in an ambiguous time range.</value>
  </data>
  <data name="Argument_DestinationTooShort" xml:space="preserve">
    <value>Destination is too short.</value>
  </data>
  <data name="Argument_DuplicateTypeName" xml:space="preserve">
    <value>Duplicate type name within an assembly.</value>
  </data>
  <data name="Argument_EmitWriteLineType" xml:space="preserve">
    <value>EmitWriteLine does not support this field or local type.</value>
  </data>
  <data name="Argument_EmptyDecString" xml:space="preserve">
    <value>Decimal separator cannot be the empty string.</value>
  </data>
  <data name="Argument_EmptyFileName" xml:space="preserve">
    <value>Empty file name is not legal.</value>
  </data>
  <data name="Argument_EmptyName" xml:space="preserve">
    <value>Empty name is not legal.</value>
  </data>
  <data name="Argument_EmptyPath" xml:space="preserve">
    <value>Empty path name is not legal.</value>
  </data>
  <data name="Argument_EmptyWaithandleArray" xml:space="preserve">
    <value>Waithandle array may not be empty.</value>
  </data>
  <data name="Argument_EncoderFallbackNotEmpty" xml:space="preserve">
    <value>Must complete Convert() operation or call Encoder.Reset() before calling GetBytes() or GetByteCount(). Encoder '{0}' fallback '{1}'.</value>
  </data>
  <data name="Argument_EncodingConversionOverflowBytes" xml:space="preserve">
    <value>The output byte buffer is too small to contain the encoded data, encoding '{0}' fallback '{1}'.</value>
  </data>
  <data name="Argument_EncodingConversionOverflowChars" xml:space="preserve">
    <value>The output char buffer is too small to contain the decoded characters, encoding '{0}' fallback '{1}'.</value>
  </data>
  <data name="Argument_EncodingNotSupported" xml:space="preserve">
    <value>'{0}' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.</value>
  </data>
  <data name="Argument_EnumTypeDoesNotMatch" xml:space="preserve">
    <value>The argument type, '{0}', is not the same as the enum type '{1}'.</value>
  </data>
  <data name="Argument_FallbackBufferNotEmpty" xml:space="preserve">
    <value>Cannot change fallback when buffer is not empty. Previous Convert() call left data in the fallback buffer.</value>
  </data>
  <data name="Argument_FieldDeclaringTypeGeneric" xml:space="preserve">
    <value>Cannot resolve field {0} because the declaring type of the field handle {1} is generic. Explicitly provide the declaring type to GetFieldFromHandle.</value>
  </data>
  <data name="Argument_FieldNeedGenericDeclaringType" xml:space="preserve">
    <value>The specified field must be declared on a generic type definition.</value>
  </data>
  <data name="Argument_GenConstraintViolation" xml:space="preserve">
    <value>GenericArguments[{0}], '{1}', on '{2}' violates the constraint of type '{3}'.</value>
  </data>
  <data name="Argument_GenericArgsCount" xml:space="preserve">
    <value>The number of generic arguments provided doesn't equal the arity of the generic type definition.</value>
  </data>
  <data name="Argument_GenericsInvalid" xml:space="preserve">
    <value>Generic types are not valid.</value>
  </data>
  <data name="Argument_GlobalFunctionHasToBeStatic" xml:space="preserve">
    <value>Global members must be static.</value>
  </data>
  <data name="Argument_HandleLeak" xml:space="preserve">
    <value>Cannot pass a GCHandle across AppDomains.</value>
  </data>
  <data name="Argument_HasToBeArrayClass" xml:space="preserve">
    <value>Must be an array type.</value>
  </data>
  <data name="Argument_IdnBadBidi" xml:space="preserve">
    <value>Left to right characters may not be mixed with right to left characters in IDN labels.</value>
  </data>
  <data name="Argument_IdnBadLabelSize" xml:space="preserve">
    <value>IDN labels must be between 1 and 63 characters long.</value>
  </data>
  <data name="Argument_IdnBadNameSize" xml:space="preserve">
    <value>IDN names must be between 1 and {0} characters long.</value>
  </data>
  <data name="Argument_IdnBadPunycode" xml:space="preserve">
    <value>Invalid IDN encoded string.</value>
  </data>
  <data name="Argument_IdnBadStd3" xml:space="preserve">
    <value>Label contains character '{0}' not allowed with UseStd3AsciiRules</value>
  </data>
  <data name="Argument_IdnIllegalName" xml:space="preserve">
    <value>Decoded string is not a valid IDN name.</value>
  </data>
  <data name="Argument_IllegalEnvVarName" xml:space="preserve">
    <value>Environment variable name cannot contain equal character.</value>
  </data>
  <data name="Argument_IllegalName" xml:space="preserve">
    <value>Illegal name.</value>
  </data>
  <data name="Argument_ImplementIComparable" xml:space="preserve">
    <value>At least one object must implement IComparable.</value>
  </data>
  <data name="Argument_IndexOutOfArrayBounds" xml:space="preserve">
    <value>The specified index is out of bounds of the specified array.</value>
  </data>
  <data name="Argument_InsufficientSpaceToCopyCollection" xml:space="preserve">
    <value>The specified space is not sufficient to copy the elements from this Collection.</value>
  </data>
  <data name="Argument_InterfaceMap" xml:space="preserve">
    <value>'this' type cannot be an interface itself.</value>
  </data>
  <data name="Argument_InvalidAppendMode" xml:space="preserve">
    <value>Append access can be requested only in write-only mode.</value>
  </data>
  <data name="Argument_InvalidArgumentForComparison" xml:space="preserve">
    <value>Type of argument is not compatible with the generic comparer.</value>
  </data>
  <data name="Argument_InvalidArrayLength" xml:space="preserve">
    <value>Length of the array must be {0}.</value>
  </data>
  <data name="Argument_InvalidArrayType" xml:space="preserve">
    <value>Target array type is not compatible with the type of items in the collection.</value>
  </data>
  <data name="Argument_InvalidAssemblyName" xml:space="preserve">
    <value>Assembly names may not begin with whitespace or contain the characters '/', or '\\' or ':'.</value>
  </data>
  <data name="Argument_InvalidCalendar" xml:space="preserve">
    <value>Not a valid calendar for the given culture.</value>
  </data>
  <data name="Argument_InvalidCharSequence" xml:space="preserve">
    <value>Invalid Unicode code point found at index {0}.</value>
  </data>
  <data name="Argument_InvalidCharSequenceNoIndex" xml:space="preserve">
    <value>String contains invalid Unicode code points.</value>
  </data>
  <data name="Argument_InvalidCodePageBytesIndex" xml:space="preserve">
    <value>Unable to translate bytes {0} at index {1} from specified code page to Unicode.</value>
  </data>
  <data name="Argument_InvalidCodePageConversionIndex" xml:space="preserve">
    <value>Unable to translate Unicode character \\u{0:X4} at index {1} to specified code page.</value>
  </data>
  <data name="Argument_InvalidConstructorDeclaringType" xml:space="preserve">
    <value>The specified constructor must be declared on the generic type definition of the specified type.</value>
  </data>
  <data name="Argument_InvalidConstructorInfo" xml:space="preserve">
    <value>The ConstructorInfo object is not valid.</value>
  </data>
  <data name="Argument_InvalidCultureName" xml:space="preserve">
    <value>Culture name '{0}' is not supported.</value>
  </data>
  <data name="Argument_InvalidDateTimeKind" xml:space="preserve">
    <value>Invalid DateTimeKind value.</value>
  </data>
  <data name="Argument_InvalidDateTimeStyles" xml:space="preserve">
    <value>An undefined DateTimeStyles value is being used.</value>
  </data>
  <data name="Argument_InvalidDigitSubstitution" xml:space="preserve">
    <value>The DigitSubstitution property must be of a valid member of the DigitShapes enumeration. Valid entries include Context, NativeNational or None.</value>
  </data>
  <data name="Argument_InvalidEnum" xml:space="preserve">
    <value>The Enum type should contain one and only one instance field.</value>
  </data>
  <data name="Argument_InvalidEnumValue" xml:space="preserve">
    <value>The value '{0}' is not valid for this usage of the type {1}.</value>
  </data>
  <data name="Argument_InvalidFieldDeclaringType" xml:space="preserve">
    <value>The specified field must be declared on the generic type definition of the specified type.</value>
  </data>
  <data name="Argument_InvalidFileModeAndAccessCombo" xml:space="preserve">
    <value>Combining FileMode: {0} with FileAccess: {1} is invalid.</value>
  </data>
  <data name="Argument_InvalidFlag" xml:space="preserve">
    <value>Value of flags is invalid.</value>
  </data>
  <data name="Argument_InvalidGenericArg" xml:space="preserve">
    <value>The generic type parameter was not valid</value>
  </data>
  <data name="Argument_InvalidGenericInstArray" xml:space="preserve">
    <value>Generic arguments must be provided for each generic parameter and each generic argument must be a RuntimeType.</value>
  </data>
  <data name="Argument_InvalidGroupSize" xml:space="preserve">
    <value>Every element in the value array should be between one and nine, except for the last element, which can be zero.</value>
  </data>
  <data name="Argument_InvalidHandle" xml:space="preserve">
    <value>The handle is invalid.</value>
  </data>
  <data name="Argument_InvalidHighSurrogate" xml:space="preserve">
    <value>Found a high surrogate char without a following low surrogate at index: {0}. The input may not be in this encoding, or may not contain valid Unicode (UTF-16) characters.</value>
  </data>
  <data name="Argument_InvalidId" xml:space="preserve">
    <value>The specified ID parameter '{0}' is not supported.</value>
  </data>
  <data name="Argument_InvalidKindOfTypeForCA" xml:space="preserve">
    <value>This type cannot be represented as a custom attribute.</value>
  </data>
  <data name="Argument_InvalidLabel" xml:space="preserve">
    <value>Invalid Label.</value>
  </data>
  <data name="Argument_InvalidLowSurrogate" xml:space="preserve">
    <value>Found a low surrogate char without a preceding high surrogate at index: {0}. The input may not be in this encoding, or may not contain valid Unicode (UTF-16) characters.</value>
  </data>
  <data name="Argument_InvalidMemberForNamedArgument" xml:space="preserve">
    <value>The member must be either a field or a property.</value>
  </data>
  <data name="Argument_InvalidMethodDeclaringType" xml:space="preserve">
    <value>The specified method must be declared on the generic type definition of the specified type.</value>
  </data>
  <data name="Argument_InvalidName" xml:space="preserve">
    <value>Invalid name.</value>
  </data>
  <data name="Argument_InvalidNativeDigitCount" xml:space="preserve">
    <value>The NativeDigits array must contain exactly ten members.</value>
  </data>
  <data name="Argument_InvalidNativeDigitValue" xml:space="preserve">
    <value>Each member of the NativeDigits array must be a single text element (one or more UTF16 code points) with a Unicode Nd (Number, Decimal Digit) property indicating it is a digit.</value>
  </data>
  <data name="Argument_InvalidNeutralRegionName" xml:space="preserve">
    <value>The region name {0} should not correspond to neutral culture; a specific culture name is required.</value>
  </data>
  <data name="Argument_InvalidNormalizationForm" xml:space="preserve">
    <value>Invalid or unsupported normalization form.</value>
  </data>
  <data name="Argument_InvalidNumberStyles" xml:space="preserve">
    <value>An undefined NumberStyles value is being used.</value>
  </data>
  <data name="Argument_InvalidOffLen" xml:space="preserve">
    <value>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</value>
  </data>
  <data name="Argument_InvalidOpCodeOnDynamicMethod" xml:space="preserve">
    <value>Ldtoken, Ldftn and Ldvirtftn OpCodes cannot target DynamicMethods.</value>
  </data>
  <data name="Argument_InvalidParameterInfo" xml:space="preserve">
    <value>The ParameterInfo object is not valid.</value>
  </data>
  <data name="Argument_InvalidParamInfo" xml:space="preserve">
    <value>Invalid type for ParameterInfo member in Attribute class.</value>
  </data>
  <data name="Argument_InvalidPathChars" xml:space="preserve">
    <value>Illegal characters in path.</value>
  </data>
  <data name="Argument_InvalidREG_TZI_FORMAT" xml:space="preserve">
    <value>The REG_TZI_FORMAT structure is corrupt.</value>
  </data>
  <data name="Argument_InvalidRegistryViewCheck" xml:space="preserve">
    <value>The specified RegistryView value is invalid.</value>
  </data>
  <data name="Argument_InvalidResourceCultureName" xml:space="preserve">
    <value>The given culture name '{0}' cannot be used to locate a resource file. Resource filenames must consist of only letters, numbers, hyphens or underscores.</value>
  </data>
  <data name="Argument_InvalidSafeBufferOffLen" xml:space="preserve">
    <value>Offset and length were greater than the size of the SafeBuffer.</value>
  </data>
  <data name="Argument_InvalidSeekOrigin" xml:space="preserve">
    <value>Invalid seek origin.</value>
  </data>
  <data name="Argument_InvalidSerializedString" xml:space="preserve">
    <value>The specified serialized string '{0}' is not supported.</value>
  </data>
  <data name="Argument_InvalidTimeSpanStyles" xml:space="preserve">
    <value>An undefined TimeSpanStyles value is being used.</value>
  </data>
  <data name="Argument_InvalidToken" xml:space="preserve">
    <value>Token {0:x} is not valid in the scope of module {1}.</value>
  </data>
  <data name="Argument_InvalidTypeForCA" xml:space="preserve">
    <value>Cannot build type parameter for custom attribute with a type that does not support the AssemblyQualifiedName property. The type instance supplied was of type '{0}'.</value>
  </data>
  <data name="Argument_InvalidTypeForDynamicMethod" xml:space="preserve">
    <value>Invalid type owner for DynamicMethod.</value>
  </data>
  <data name="Argument_InvalidTypeName" xml:space="preserve">
    <value>The name of the type is invalid.</value>
  </data>
  <data name="Argument_InvalidTypeWithPointersNotSupported" xml:space="preserve">
    <value>Cannot use type '{0}'. Only value types without pointers or references are supported.</value>
  </data>
  <data name="Argument_InvalidUnity" xml:space="preserve">
    <value>Invalid Unity type.</value>
  </data>
  <data name="Argument_InvalidValue" xml:space="preserve">
    <value>Value was invalid.</value>
  </data>
  <data name="Argument_LargeInteger" xml:space="preserve">
    <value>Integer or token was too large to be encoded.</value>
  </data>
  <data name="Argument_LongEnvVarValue" xml:space="preserve">
    <value>Environment variable name or value is too long.</value>
  </data>
  <data name="Argument_MethodDeclaringTypeGeneric" xml:space="preserve">
    <value>Cannot resolve method {0} because the declaring type of the method handle {1} is generic. Explicitly provide the declaring type to GetMethodFromHandle.</value>
  </data>
  <data name="Argument_MethodDeclaringTypeGenericLcg" xml:space="preserve">
    <value>Method '{0}' has a generic declaring type '{1}'. Explicitly provide the declaring type to GetTokenFor.</value>
  </data>
  <data name="Argument_MethodNeedGenericDeclaringType" xml:space="preserve">
    <value>The specified method cannot be dynamic or global and must be declared on a generic type definition.</value>
  </data>
  <data name="Argument_MinMaxValue" xml:space="preserve">
    <value>'{0}' cannot be greater than {1}.</value>
  </data>
  <data name="Argument_MismatchedArrays" xml:space="preserve">
    <value>Two arrays, {0} and {1}, must be of  the same size.</value>
  </data>
  <data name="Argument_MissingDefaultConstructor" xml:space="preserve">
    <value>was missing default constructor.</value>
  </data>
  <data name="Argument_MustBeFalse" xml:space="preserve">
    <value>Argument must be initialized to false</value>
  </data>
  <data name="Argument_MustBeRuntimeAssembly" xml:space="preserve">
    <value>Assembly must be a runtime Assembly object.</value>
  </data>
  <data name="Argument_MustBeRuntimeFieldInfo" xml:space="preserve">
    <value>FieldInfo must be a runtime FieldInfo object.</value>
  </data>
  <data name="Argument_MustBeRuntimeMethodInfo" xml:space="preserve">
    <value>MethodInfo must be a runtime MethodInfo object.</value>
  </data>
  <data name="Argument_MustBeRuntimeModule" xml:space="preserve">
    <value>Module must be a runtime Module object.</value>
  </data>
  <data name="Argument_MustBeRuntimeReflectionObject" xml:space="preserve">
    <value>The object must be a runtime Reflection object.</value>
  </data>
  <data name="Argument_MustBeRuntimeType" xml:space="preserve">
    <value>Type must be a runtime Type object.</value>
  </data>
  <data name="Argument_MustBeTypeBuilder" xml:space="preserve">
    <value>'type' must contain a TypeBuilder as a generic argument.</value>
  </data>
  <data name="Argument_MustHaveAttributeBaseClass" xml:space="preserve">
    <value>Type passed in must be derived from System.Attribute or System.Attribute itself.</value>
  </data>
  <data name="Argument_MustHaveLayoutOrBeBlittable" xml:space="preserve">
    <value>The specified structure must be blittable or have layout information.</value>
  </data>
  <data name="Argument_NativeOverlappedAlreadyFree" xml:space="preserve">
    <value>'overlapped' has already been freed.</value>
  </data>
  <data name="Argument_NativeOverlappedWrongBoundHandle" xml:space="preserve">
    <value>'overlapped' was not allocated by this ThreadPoolBoundHandle instance.</value>
  </data>
  <data name="Argument_NeedGenericMethodDefinition" xml:space="preserve">
    <value>Method must represent a generic method definition on a generic type definition.</value>
  </data>
  <data name="Argument_NeedNonGenericObject" xml:space="preserve">
    <value>The specified object must not be an instance of a generic type.</value>
  </data>
  <data name="Argument_NeedNonGenericType" xml:space="preserve">
    <value>The specified Type must not be a generic type definition.</value>
  </data>
  <data name="Argument_NeedStructWithNoRefs" xml:space="preserve">
    <value>The specified Type must be a struct containing no references.</value>
  </data>
  <data name="Argument_NeverValidGenericArgument" xml:space="preserve">
    <value>The type '{0}' may not be used as a type argument.</value>
  </data>
  <data name="Argument_NoDomainManager" xml:space="preserve">
    <value>The domain manager specified by the host could not be instantiated.</value>
  </data>
  <data name="Argument_NoEra" xml:space="preserve">
    <value>No Era was supplied.</value>
  </data>
  <data name="Argument_NoModuleFileExtension" xml:space="preserve">
    <value>Module file name '{0}' must have file extension.</value>
  </data>
  <data name="Argument_NoRegionInvariantCulture" xml:space="preserve">
    <value>There is no region associated with the Invariant Culture (Culture ID: 0x7F).</value>
  </data>
  <data name="Argument_NotATP" xml:space="preserve">
    <value>Type must be a TransparentProxy</value>
  </data>
  <data name="Argument_NotAWritableProperty" xml:space="preserve">
    <value>Not a writable property.</value>
  </data>
  <data name="Argument_NotEnoughBytesToRead" xml:space="preserve">
    <value>There are not enough bytes remaining in the accessor to read at this position.</value>
  </data>
  <data name="Argument_NotEnoughBytesToWrite" xml:space="preserve">
    <value>There are not enough bytes remaining in the accessor to write at this position.</value>
  </data>
  <data name="Argument_NotEnoughGenArguments" xml:space="preserve">
    <value>The type or method has {1} generic parameter(s), but {0} generic argument(s) were provided. A generic argument must be provided for each generic parameter.</value>
  </data>
  <data name="Argument_NotExceptionType" xml:space="preserve">
    <value>Does not extend Exception.</value>
  </data>
  <data name="Argument_NotInExceptionBlock" xml:space="preserve">
    <value>Not currently in an exception block.</value>
  </data>
  <data name="Argument_NotMethodCallOpcode" xml:space="preserve">
    <value>The specified opcode cannot be passed to EmitCall.</value>
  </data>
  <data name="Argument_NotSerializable" xml:space="preserve">
    <value>Argument passed in is not serializable.</value>
  </data>
  <data name="Argument_NoUnderlyingCCW" xml:space="preserve">
    <value>The object has no underlying COM data associated with it.</value>
  </data>
  <data name="Argument_NoUninitializedStrings" xml:space="preserve">
    <value>Uninitialized Strings cannot be created.</value>
  </data>
  <data name="Argument_ObjIsWinRTObject" xml:space="preserve">
    <value>The object's type must not be a Windows Runtime type.</value>
  </data>
  <data name="Argument_ObjNotComObject" xml:space="preserve">
    <value>The object's type must be __ComObject or derived from __ComObject.</value>
  </data>
  <data name="Argument_OffsetAndCapacityOutOfBounds" xml:space="preserve">
    <value>Offset and capacity were greater than the size of the view.</value>
  </data>
  <data name="Argument_OffsetAndLengthOutOfBounds" xml:space="preserve">
    <value>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</value>
  </data>
  <data name="Argument_OffsetLocalMismatch" xml:space="preserve">
    <value>The UTC Offset of the local dateTime parameter does not match the offset argument.</value>
  </data>
  <data name="Argument_OffsetOfFieldNotFound" xml:space="preserve">
    <value>Field passed in is not a marshaled member of the type '{0}'.</value>
  </data>
  <data name="Argument_OffsetOutOfRange" xml:space="preserve">
    <value>Offset must be within plus or minus 14 hours.</value>
  </data>
  <data name="Argument_OffsetPrecision" xml:space="preserve">
    <value>Offset must be specified in whole minutes.</value>
  </data>
  <data name="Argument_OffsetUtcMismatch" xml:space="preserve">
    <value>The UTC Offset for Utc DateTime instances must be 0.</value>
  </data>
  <data name="Argument_OneOfCulturesNotSupported" xml:space="preserve">
    <value>Culture name {0} or {1} is not supported.</value>
  </data>
  <data name="Argument_OnlyMscorlib" xml:space="preserve">
    <value>Only mscorlib's assembly is valid.</value>
  </data>
  <data name="Argument_OutOfOrderDateTimes" xml:space="preserve">
    <value>The DateStart property must come before the DateEnd property.</value>
  </data>
  <data name="Argument_PathEmpty" xml:space="preserve">
    <value>Path cannot be the empty string or all whitespace.</value>
  </data>
  <data name="Argument_PathFormatNotSupported" xml:space="preserve">
    <value>The given path's format is not supported.</value>
  </data>
  <data name="Argument_PreAllocatedAlreadyAllocated" xml:space="preserve">
    <value>'preAllocated' is already in use.</value>
  </data>
  <data name="Argument_RecursiveFallback" xml:space="preserve">
    <value>Recursive fallback not allowed for character \\u{0:X4}.</value>
  </data>
  <data name="Argument_RecursiveFallbackBytes" xml:space="preserve">
    <value>Recursive fallback not allowed for bytes {0}.</value>
  </data>
  <data name="Argument_RedefinedLabel" xml:space="preserve">
    <value>Label multiply defined.</value>
  </data>
  <data name="Argument_ResolveField" xml:space="preserve">
    <value>Token {0:x} is not a valid FieldInfo token in the scope of module {1}.</value>
  </data>
  <data name="Argument_ResolveFieldHandle" xml:space="preserve">
    <value>Type handle '{0}' and field handle with declaring type '{1}' are incompatible. Get RuntimeFieldHandle and declaring RuntimeTypeHandle off the same FieldInfo.</value>
  </data>
  <data name="Argument_ResolveMember" xml:space="preserve">
    <value>Token {0:x} is not a valid MemberInfo token in the scope of module {1}.</value>
  </data>
  <data name="Argument_ResolveMethod" xml:space="preserve">
    <value>Token {0:x} is not a valid MethodBase token in the scope of module {1}.</value>
  </data>
  <data name="Argument_ResolveMethodHandle" xml:space="preserve">
    <value>Type handle '{0}' and method handle with declaring type '{1}' are incompatible. Get RuntimeMethodHandle and declaring RuntimeTypeHandle off the same MethodBase.</value>
  </data>
  <data name="Argument_ResolveModuleType" xml:space="preserve">
    <value>Token {0} resolves to the special module type representing this module.</value>
  </data>
  <data name="Argument_ResolveString" xml:space="preserve">
    <value>Token {0:x} is not a valid string token in the scope of module {1}.</value>
  </data>
  <data name="Argument_ResolveType" xml:space="preserve">
    <value>Token {0:x} is not a valid Type token in the scope of module {1}.</value>
  </data>
  <data name="Argument_ResultCalendarRange" xml:space="preserve">
    <value>The result is out of the supported range for this calendar. The result should be between {0} (Gregorian date) and {1} (Gregorian date), inclusive.</value>
  </data>
  <data name="Argument_SemaphoreInitialMaximum" xml:space="preserve">
    <value>The initial count for the semaphore must be greater than or equal to zero and less than the maximum count.</value>
  </data>
  <data name="Argument_ShouldNotSpecifyExceptionType" xml:space="preserve">
    <value>Should not specify exception type for catch clause for filter block.</value>
  </data>
  <data name="Argument_ShouldOnlySetVisibilityFlags" xml:space="preserve">
    <value>Should only set visibility flags when creating EnumBuilder.</value>
  </data>
  <data name="Argument_SigIsFinalized" xml:space="preserve">
    <value>Completed signature cannot be modified.</value>
  </data>
  <data name="Argument_StreamNotReadable" xml:space="preserve">
    <value>Stream was not readable.</value>
  </data>
  <data name="Argument_StreamNotWritable" xml:space="preserve">
    <value>Stream was not writable.</value>
  </data>
  <data name="Argument_StringFirstCharIsZero" xml:space="preserve">
    <value>The first char in the string is the null character.</value>
  </data>
  <data name="Argument_StringZeroLength" xml:space="preserve">
    <value>String cannot be of zero length.</value>
  </data>
  <data name="Argument_StructMustNotBeValueClass" xml:space="preserve">
    <value>The structure must not be a value class.</value>
  </data>
  <data name="Argument_TimeSpanHasSeconds" xml:space="preserve">
    <value>The TimeSpan parameter cannot be specified more precisely than whole minutes.</value>
  </data>
  <data name="Argument_TimeZoneInfoBadTZif" xml:space="preserve">
    <value>The tzfile does not begin with the magic characters 'TZif'.  Please verify that the file is not corrupt.</value>
  </data>
  <data name="Argument_TimeZoneInfoInvalidTZif" xml:space="preserve">
    <value>The TZif data structure is corrupt.</value>
  </data>
  <data name="Argument_ToExclusiveLessThanFromExclusive" xml:space="preserve">
    <value>fromInclusive must be less than or equal to toExclusive.</value>
  </data>
  <data name="Argument_TooManyFinallyClause" xml:space="preserve">
    <value>Exception blocks may have at most one finally clause.</value>
  </data>
  <data name="Argument_TransitionTimesAreIdentical" xml:space="preserve">
    <value>The DaylightTransitionStart property must not equal the DaylightTransitionEnd property.</value>
  </data>
  <data name="Argument_TypedReferenceInvalidField" xml:space="preserve">
    <value>Field in TypedReferences cannot be static or init only.</value>
  </data>
  <data name="Argument_TypeIsWinRTType" xml:space="preserve">
    <value>The type must not be a Windows Runtime type.</value>
  </data>
  <data name="Argument_TypeMustBeVisibleFromCom" xml:space="preserve">
    <value>The specified type must be visible from COM.</value>
  </data>
  <data name="Argument_TypeMustNotBeComImport" xml:space="preserve">
    <value>The type must not be imported from COM.</value>
  </data>
  <data name="Argument_TypeNameTooLong" xml:space="preserve">
    <value>Type name was too long. The fully qualified type name must be less than 1,024 characters.</value>
  </data>
  <data name="Argument_TypeNotActivatableViaWindowsRuntime" xml:space="preserve">
    <value>Type '{0}' does not have an activation factory because it is not activatable by Windows Runtime.</value>
  </data>
  <data name="Argument_TypeNotComObject" xml:space="preserve">
    <value>The type must be __ComObject or be derived from __ComObject.</value>
  </data>
  <data name="Argument_TypeNotValid" xml:space="preserve">
    <value>The Type object is not valid.</value>
  </data>
  <data name="Argument_UnclosedExceptionBlock" xml:space="preserve">
    <value>The IL Generator cannot be used while there are unclosed exceptions.</value>

  </data>
  <data name="Argument_Unexpected_TypeSource" xml:space="preserve">
    <value>Unexpected TypeKind when marshaling Windows.Foundation.TypeName.</value>
  </data>
  <data name="Argument_UnknownUnmanagedCallConv" xml:space="preserve">
    <value>Unknown unmanaged calling convention for function signature.</value>
  </data>
  <data name="Argument_UnmanagedMemAccessorWrapAround" xml:space="preserve">
    <value>The UnmanagedMemoryAccessor capacity and offset would wrap around the high end of the address space.</value>
  </data>
  <data name="Argument_UnmatchedMethodForLocal" xml:space="preserve">
    <value>Local passed in does not belong to this ILGenerator.</value>
  </data>
  <data name="Argument_UnmatchingSymScope" xml:space="preserve">
    <value>Non-matching symbol scope.</value>
  </data>
  <data name="Argument_UnrecognizedLoaderOptimization" xml:space="preserve">
    <value>Unrecognized LOADER_OPTIMIZATION property value.  Supported values may include "SingleDomain", "MultiDomain", "MultiDomainHost", and "NotSpecified".</value>
  </data>
  <data name="Argument_UTCOutOfRange" xml:space="preserve">
    <value>The UTC time represented when the offset is applied must be between year 0 and 10,000.</value>
  </data>
  <data name="Argument_VerStringTooLong" xml:space="preserve">
    <value>The unmanaged Version information is too large to persist.</value>
  </data>
  <data name="Argument_WaitHandleNameTooLong" xml:space="preserve">
    <value>The name can be no more than {0} characters in length.</value>
  </data>
  <data name="Argument_WinRTSystemRuntimeType" xml:space="preserve">
    <value>Cannot marshal type '{0}' to Windows Runtime. Only 'System.RuntimeType' is supported.</value>
  </data>
  <data name="ArgumentException_BadMethodImplBody" xml:space="preserve">
    <value>MethodOverride's body must be from this type.</value>
  </data>
  <data name="ArgumentException_BufferNotFromPool" xml:space="preserve">
    <value>The buffer is not associated with this pool and may not be returned to it.</value>
  </data>
  <data name="ArgumentException_OtherNotArrayOfCorrectLength" xml:space="preserve">
    <value>Object is not a array with the same number of elements as the array to compare it to.</value>
  </data>
  <data name="ArgumentException_TupleIncorrectType" xml:space="preserve">
    <value>Argument must be of type {0}.</value>
  </data>
  <data name="ArgumentException_TupleLastArgumentNotATuple" xml:space="preserve">
    <value>The last element of an eight element tuple must be a Tuple.</value>
  </data>
  <data name="ArgumentException_ValueTupleIncorrectType" xml:space="preserve">
    <value>Argument must be of type {0}.</value>
  </data>
  <data name="ArgumentException_ValueTupleLastArgumentNotAValueTuple" xml:space="preserve">
    <value>The last element of an eight element ValueTuple must be a ValueTuple.</value>
  </data>
  <data name="ArgumentNull_Array" xml:space="preserve">
    <value>Array cannot be null.</value>
  </data>
  <data name="ArgumentNull_ArrayElement" xml:space="preserve">
    <value>At least one element in the specified array was null.</value>
  </data>
  <data name="ArgumentNull_ArrayValue" xml:space="preserve">
    <value>Found a null value within an array.</value>
  </data>
  <data name="ArgumentNull_Assembly" xml:space="preserve">
    <value>Assembly cannot be null.</value>
  </data>
  <data name="ArgumentNull_AssemblyName" xml:space="preserve">
    <value>AssemblyName cannot be null.</value>
  </data>
  <data name="ArgumentNull_AssemblyNameName" xml:space="preserve">
    <value>AssemblyName.Name cannot be null or an empty string.</value>
  </data>
  <data name="ArgumentNull_Buffer" xml:space="preserve">
    <value>Buffer cannot be null.</value>
  </data>
  <data name="ArgumentNull_Collection" xml:space="preserve">
    <value>Collection cannot be null.</value>
  </data>
  <data name="ArgumentNull_FileName" xml:space="preserve">
    <value>File name cannot be null.</value>
  </data>
  <data name="ArgumentNull_Generic" xml:space="preserve">
    <value>Value cannot be null.</value>
  </data>
  <data name="ArgumentNull_GUID" xml:space="preserve">
    <value>GUID cannot be null.</value>
  </data>
  <data name="ArgumentNull_Key" xml:space="preserve">
    <value>Key cannot be null.</value>
  </data>
  <data name="ArgumentNull_Obj" xml:space="preserve">
    <value>Object cannot be null.</value>
  </data>
  <data name="ArgumentNull_Path" xml:space="preserve">
    <value>Path cannot be null.</value>
  </data>
  <data name="ArgumentNull_SafeHandle" xml:space="preserve">
    <value>SafeHandle cannot be null.</value>
  </data>
  <data name="ArgumentNull_Stream" xml:space="preserve">
    <value>Stream cannot be null.</value>
  </data>
  <data name="ArgumentNull_String" xml:space="preserve">
    <value>String reference not set to an instance of a String.</value>
  </data>
  <data name="ArgumentNull_Type" xml:space="preserve">
    <value>Type cannot be null.</value>
  </data>
  <data name="ArgumentNull_TypedRefType" xml:space="preserve">
    <value>Type in TypedReference cannot be null.</value>
  </data>
  <data name="ArgumentNull_Waithandles" xml:space="preserve">
    <value>The waitHandles parameter cannot be null.</value>
  </data>
  <data name="ArgumentNull_WithParamName" xml:space="preserve">
    <value>Parameter '{0}' cannot be null.</value>
  </data>
  <data name="ArgumentOutOfRange_ActualValue" xml:space="preserve">
    <value>Actual value was {0}.</value>
  </data>
  <data name="ArgumentOutOfRange_AddressSpace" xml:space="preserve">
    <value>The number of bytes cannot exceed the virtual address space on a 32 bit machine.</value>
  </data>
  <data name="ArgumentOutOfRange_AddValue" xml:space="preserve">
    <value>Value to add was out of range.</value>
  </data>
  <data name="ArgumentOutOfRange_ArrayLB" xml:space="preserve">
    <value>Number was less than the array's lower bound in the first dimension.</value>
  </data>
  <data name="ArgumentOutOfRange_ArrayLBAndLength" xml:space="preserve">
    <value>Higher indices will exceed Int32.MaxValue because of large lower bound and/or length.</value>
  </data>
  <data name="ArgumentOutOfRange_ArrayListInsert" xml:space="preserve">
    <value>Insertion index was out of range. Must be non-negative and less than or equal to size.</value>
  </data>
  <data name="ArgumentOutOfRange_BadHourMinuteSecond" xml:space="preserve">
    <value>Hour, Minute, and Second parameters describe an un-representable DateTime.</value>
  </data>
  <data name="ArgumentOutOfRange_BadYearMonthDay" xml:space="preserve">
    <value>Year, Month, and Day parameters describe an un-representable DateTime.</value>
  </data>
  <data name="ArgumentOutOfRange_BiggerThanCollection" xml:space="preserve">
    <value>Larger than collection size.</value>
  </data>
  <data name="ArgumentOutOfRange_BinaryReaderFillBuffer" xml:space="preserve">
    <value>The number of bytes requested does not fit into BinaryReader's internal buffer.</value>
  </data>
  <data name="ArgumentOutOfRange_Bounds_Lower_Upper" xml:space="preserve">
    <value>Argument must be between {0} and {1}.</value>
  </data>
  <data name="ArgumentOutOfRange_CalendarRange" xml:space="preserve">
    <value>Specified time is not supported in this calendar. It should be between {0} (Gregorian date) and {1} (Gregorian date), inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_Capacity" xml:space="preserve">
    <value>Capacity exceeds maximum capacity.</value>
  </data>
  <data name="ArgumentOutOfRange_Count" xml:space="preserve">
    <value>Count must be positive and count must refer to a location within the string/array/collection.</value>
  </data>
  <data name="ArgumentOutOfRange_DateArithmetic" xml:space="preserve">
    <value>The added or subtracted value results in an un-representable DateTime.</value>
  </data>
  <data name="ArgumentOutOfRange_DateTimeBadMonths" xml:space="preserve">
    <value>Months value must be between +/-120000.</value>
  </data>
  <data name="ArgumentOutOfRange_DateTimeBadTicks" xml:space="preserve">
    <value>Ticks must be between DateTime.MinValue.Ticks and DateTime.MaxValue.Ticks.</value>
  </data>
  <data name="ArgumentOutOfRange_DateTimeBadYears" xml:space="preserve">
    <value>Years value must be between +/-10000.</value>
  </data>
  <data name="ArgumentOutOfRange_Day" xml:space="preserve">
    <value>Day must be between 1 and {0} for month {1}.</value>
  </data>
  <data name="ArgumentOutOfRange_DayOfWeek" xml:space="preserve">
    <value>The DayOfWeek enumeration must be in the range 0 through 6.</value>
  </data>
  <data name="ArgumentOutOfRange_DayParam" xml:space="preserve">
    <value>The Day parameter must be in the range 1 through 31.</value>
  </data>
  <data name="ArgumentOutOfRange_DecimalRound" xml:space="preserve">
    <value>Decimal can only round to between 0 and 28 digits of precision.</value>
  </data>
  <data name="ArgumentOutOfRange_DecimalScale" xml:space="preserve">
    <value>Decimal's scale value must be between 0 and 28, inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_EndIndexStartIndex" xml:space="preserve">
    <value>endIndex cannot be greater than startIndex.</value>
  </data>
  <data name="ArgumentOutOfRange_Enum" xml:space="preserve">
    <value>Enum value was out of legal range.</value>
  </data>
  <data name="ArgumentOutOfRange_Era" xml:space="preserve">
    <value>Time value was out of era range.</value>
  </data>
  <data name="ArgumentOutOfRange_FileLengthTooBig" xml:space="preserve">
    <value>Specified file length was too large for the file system.</value>
  </data>
  <data name="ArgumentOutOfRange_FileTimeInvalid" xml:space="preserve">
    <value>Not a valid Win32 FileTime.</value>
  </data>
  <data name="ArgumentOutOfRange_GenericPositive" xml:space="preserve">
    <value>Value must be positive.</value>
  </data>
  <data name="ArgumentOutOfRange_GetByteCountOverflow" xml:space="preserve">
    <value>Too many characters. The resulting number of bytes is larger than what can be returned as an int.</value>
  </data>
  <data name="ArgumentOutOfRange_GetCharCountOverflow" xml:space="preserve">
    <value>Too many bytes. The resulting number of chars is larger than what can be returned as an int.</value>
  </data>
  <data name="ArgumentOutOfRange_HashtableLoadFactor" xml:space="preserve">
    <value>Load factor needs to be between 0.1 and 1.0.</value>
  </data>
  <data name="ArgumentOutOfRange_HugeArrayNotSupported" xml:space="preserve">
    <value>Arrays larger than 2GB are not supported.</value>
  </data>
  <data name="ArgumentOutOfRange_Index" xml:space="preserve">
    <value>Index was out of range. Must be non-negative and less than the size of the collection.</value>
  </data>
  <data name="ArgumentOutOfRange_IndexCount" xml:space="preserve">
    <value>Index and count must refer to a location within the string.</value>
  </data>
  <data name="ArgumentOutOfRange_IndexCountBuffer" xml:space="preserve">
    <value>Index and count must refer to a location within the buffer.</value>
  </data>
  <data name="ArgumentOutOfRange_IndexLargerThanMaxValue" xml:space="preserve">
    <value>This collection cannot work with indices larger than Int32.MaxValue - 1 (0x7FFFFFFF - 1).</value>
  </data>
  <data name="ArgumentOutOfRange_IndexLength" xml:space="preserve">
    <value>Index and length must refer to a location within the string.</value>
  </data>
  <data name="ArgumentOutOfRange_IndexString" xml:space="preserve">
    <value>Index was out of range. Must be non-negative and less than the length of the string.</value>
  </data>
  <data name="ArgumentOutOfRange_InvalidEraValue" xml:space="preserve">
    <value>Era value was not valid.</value>
  </data>
  <data name="ArgumentOutOfRange_InvalidHighSurrogate" xml:space="preserve">
    <value>A valid high surrogate character is between 0xd800 and 0xdbff, inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_InvalidLowSurrogate" xml:space="preserve">
    <value>A valid low surrogate character is between 0xdc00 and 0xdfff, inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_InvalidUTF32" xml:space="preserve">
    <value>A valid UTF32 value is between 0x000000 and 0x10ffff, inclusive, and should not include surrogate codepoint values (0x00d800 ~ 0x00dfff).</value>
  </data>
  <data name="ArgumentOutOfRange_Length" xml:space="preserve">
    <value>The specified length exceeds maximum capacity of SecureString.</value>
  </data>
  <data name="ArgumentOutOfRange_LengthGreaterThanCapacity" xml:space="preserve">
    <value>The length cannot be greater than the capacity.</value>
  </data>
  <data name="ArgumentOutOfRange_LengthTooLarge" xml:space="preserve">
    <value>The specified length exceeds the maximum value of {0}.</value>
  </data>
  <data name="ArgumentOutOfRange_LessEqualToIntegerMaxVal" xml:space="preserve">
    <value>Argument must be less than or equal to 2^31 - 1 milliseconds.</value>
  </data>
  <data name="ArgumentOutOfRange_ListInsert" xml:space="preserve">
    <value>Index must be within the bounds of the List.</value>
  </data>
  <data name="ArgumentOutOfRange_Month" xml:space="preserve">
    <value>Month must be between one and twelve.</value>
  </data>
  <data name="ArgumentOutOfRange_MonthParam" xml:space="preserve">
    <value>The Month parameter must be in the range 1 through 12.</value>
  </data>
  <data name="ArgumentOutOfRange_MustBeNonNegInt32" xml:space="preserve">
    <value>Value must be non-negative and less than or equal to Int32.MaxValue.</value>
  </data>
  <data name="ArgumentOutOfRange_MustBeNonNegNum" xml:space="preserve">
    <value>'{0}' must be non-negative.</value>
  </data>
  <data name="ArgumentOutOfRange_MustBePositive" xml:space="preserve">
    <value>'{0}' must be greater than zero.</value>
  </data>
  <data name="ArgumentOutOfRange_NeedNonNegNum" xml:space="preserve">
    <value>Non-negative number required.</value>
  </data>
  <data name="ArgumentOutOfRange_NeedNonNegOrNegative1" xml:space="preserve">
    <value>Number must be either non-negative and less than or equal to Int32.MaxValue or -1.</value>
  </data>
  <data name="ArgumentOutOfRange_NeedPosNum" xml:space="preserve">
    <value>Positive number required.</value>
  </data>
  <data name="ArgumentOutOfRange_NeedValidId" xml:space="preserve">
    <value>The ID parameter must be in the range {0} through {1}.</value>
  </data>
  <data name="ArgumentOutOfRange_NegativeCapacity" xml:space="preserve">
    <value>Capacity must be positive.</value>
  </data>
  <data name="ArgumentOutOfRange_NegativeCount" xml:space="preserve">
    <value>Count cannot be less than zero.</value>
  </data>
  <data name="ArgumentOutOfRange_NegativeLength" xml:space="preserve">
    <value>Length cannot be less than zero.</value>
  </data>
  <data name="ArgumentOutOfRange_OffsetLength" xml:space="preserve">
    <value>Offset and length must refer to a position in the string.</value>
  </data>
  <data name="ArgumentOutOfRange_OffsetOut" xml:space="preserve">
    <value>Either offset did not refer to a position in the string, or there is an insufficient length of destination character array.</value>
  </data>
  <data name="ArgumentOutOfRange_ParamSequence" xml:space="preserve">
    <value>The specified parameter index is not in range.</value>
  </data>
  <data name="ArgumentOutOfRange_PartialWCHAR" xml:space="preserve">
    <value>Pointer startIndex and length do not refer to a valid string.</value>
  </data>
  <data name="ArgumentOutOfRange_PeriodTooLarge" xml:space="preserve">
    <value>Period must be less than 2^32-2.</value>
  </data>
  <data name="ArgumentOutOfRange_PositionLessThanCapacityRequired" xml:space="preserve">
    <value>The position may not be greater or equal to the capacity of the accessor.</value>
  </data>
  <data name="ArgumentOutOfRange_Range" xml:space="preserve">
    <value>Valid values are between {0} and {1}, inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_RoundingDigits" xml:space="preserve">
    <value>Rounding digits must be between 0 and 15, inclusive.</value>
  </data>
  <data name="ArgumentOutOfRange_SmallCapacity" xml:space="preserve">
    <value>capacity was less than the current size.</value>
  </data>
  <data name="ArgumentOutOfRange_SmallMaxCapacity" xml:space="preserve">
    <value>MaxCapacity must be one or greater.</value>
  </data>
  <data name="ArgumentOutOfRange_StartIndex" xml:space="preserve">
    <value>StartIndex cannot be less than zero.</value>
  </data>
  <data name="ArgumentOutOfRange_StartIndexLargerThanLength" xml:space="preserve">
    <value>startIndex cannot be larger than length of string.</value>
  </data>
  <data name="ArgumentOutOfRange_StartIndexLessThanLength" xml:space="preserve">
    <value>startIndex must be less than length of string.</value>
  </data>
  <data name="ArgumentOutOfRange_StreamLength" xml:space="preserve">
    <value>Stream length must be non-negative and less than 2^31 - 1 - origin.</value>
  </data>
  <data name="ArgumentOutOfRange_TimeoutTooLarge" xml:space="preserve">
    <value>Time-out interval must be less than 2^32-2.</value>
  </data>
  <data name="ArgumentOutOfRange_UIntPtrMax" xml:space="preserve">
    <value>The length of the buffer must be less than the maximum UIntPtr value for your platform.</value>
  </data>
  <data name="ArgumentOutOfRange_UnmanagedMemStreamLength" xml:space="preserve">
    <value>UnmanagedMemoryStream length must be non-negative and less than 2^63 - 1 - baseAddress.</value>
  </data>
  <data name="ArgumentOutOfRange_UnmanagedMemStreamWrapAround" xml:space="preserve">
    <value>The UnmanagedMemoryStream capacity would wrap around the high end of the address space.</value>
  </data>
  <data name="ArgumentOutOfRange_UtcOffset" xml:space="preserve">
    <value>The TimeSpan parameter must be within plus or minus 14.0 hours.</value>
  </data>
  <data name="ArgumentOutOfRange_UtcOffsetAndDaylightDelta" xml:space="preserve">
    <value>The sum of the BaseUtcOffset and DaylightDelta properties must within plus or minus 14.0 hours.</value>
  </data>
  <data name="ArgumentOutOfRange_Version" xml:space="preserve">
    <value>Version's parameters must be greater than or equal to zero.</value>
  </data>
  <data name="ArgumentOutOfRange_Week" xml:space="preserve">
    <value>The Week parameter must be in the range 1 through 5.</value>
  </data>
  <data name="ArgumentOutOfRange_Year" xml:space="preserve">
    <value>Year must be between 1 and 9999.</value>
  </data>
  <data name="Arithmetic_NaN" xml:space="preserve">
    <value>Function does not accept floating point Not-a-Number values.</value>
  </data>
  <data name="ArrayTypeMismatch_CantAssignType" xml:space="preserve">
    <value>Source array type cannot be assigned to destination array type.</value>
  </data>
  <data name="ArrayTypeMismatch_ConstrainedCopy" xml:space="preserve">
    <value>Array.ConstrainedCopy will only work on array types that are provably compatible, without any form of boxing, unboxing, widening, or casting of each array element.  Change the array types (i.e., copy a Derived[] to a Base[]), or use a mitigation strategy in the CER for Array.Copy's less powerful reliability contract, such as cloning the array or throwing away the potentially corrupt destination array.</value>
  </data>
  <data name="Arugment_EmitMixedContext1" xml:space="preserve">
    <value>Type '{0}' was loaded in the ReflectionOnly context but the AssemblyBuilder was not created as AssemblyBuilderAccess.ReflectionOnly.</value>
  </data>
  <data name="Arugment_EmitMixedContext2" xml:space="preserve">
    <value>Type '{0}' was not loaded in the ReflectionOnly context but the AssemblyBuilder was created as AssemblyBuilderAccess.ReflectionOnly.</value>
  </data>
  <data name="AssertionFailed" xml:space="preserve">
    <value>Assertion failed.</value>
  </data>
  <data name="AssertionFailed_Cnd" xml:space="preserve">
    <value>Assertion failed: {0}</value>
  </data>
  <data name="AssumptionFailed" xml:space="preserve">
    <value>Assumption failed.</value>
  </data>
  <data name="AssumptionFailed_Cnd" xml:space="preserve">
    <value>Assumption failed: {0}</value>
  </data>
  <data name="AsyncMethodBuilder_InstanceNotInitialized" xml:space="preserve">
    <value>The builder was not properly initialized.</value>
  </data>
  <data name="BadImageFormat_BadILFormat" xml:space="preserve">
    <value>Bad IL format.</value>
  </data>
  <data name="BadImageFormat_InvalidType" xml:space="preserve">
    <value>Corrupt .resources file.  The specified type doesn't exist.</value>
  </data>
  <data name="BadImageFormat_NegativeStringLength" xml:space="preserve">
    <value>Corrupt .resources file. String length must be non-negative.</value>
  </data>
  <data name="BadImageFormat_ParameterSignatureMismatch" xml:space="preserve">
    <value>The parameters and the signature of the method don't match.</value>
  </data>
  <data name="BadImageFormat_ResourceDataLengthInvalid" xml:space="preserve">
    <value>Corrupt .resources file.  The specified data length '{0}' is not a valid position in the stream.</value>
  </data>
  <data name="BadImageFormat_ResourceNameCorrupted" xml:space="preserve">
    <value>Corrupt .resources file. A resource name extends past the end of the stream.</value>
  </data>
  <data name="BadImageFormat_ResourceNameCorrupted_NameIndex" xml:space="preserve">
    <value>Corrupt .resources file. The resource name for name index {0} extends past the end of the stream.</value>
  </data>
  <data name="BadImageFormat_ResourcesDataInvalidOffset" xml:space="preserve">
    <value>Corrupt .resources file. Invalid offset '{0}' into data section.</value>
  </data>
  <data name="BadImageFormat_ResourcesHeaderCorrupted" xml:space="preserve">
    <value>Corrupt .resources file. Unable to read resources from this file because of invalid header information. Try regenerating the .resources file.</value>
  </data>
  <data name="BadImageFormat_ResourcesIndexTooLong" xml:space="preserve">
    <value>Corrupt .resources file. String for name index '{0}' extends past the end of the file.</value>
  </data>
  <data name="BadImageFormat_ResourcesNameInvalidOffset" xml:space="preserve">
    <value>Corrupt .resources file. Invalid offset '{0}' into name section.</value>
  </data>
  <data name="BadImageFormat_ResourcesNameTooLong" xml:space="preserve">
    <value>Corrupt .resources file. Resource name extends past the end of the file.</value>
  </data>
  <data name="BadImageFormat_TypeMismatch" xml:space="preserve">
    <value>Corrupt .resources file.  The specified type doesn't match the available data in the stream.</value>
  </data>
  <data name="CancellationToken_CreateLinkedToken_TokensIsEmpty" xml:space="preserve">
    <value>No tokens were supplied.</value>
  </data>
  <data name="CancellationToken_SourceDisposed" xml:space="preserve">
    <value>The CancellationTokenSource associated with this CancellationToken has been disposed.</value>
  </data>
  <data name="CancellationTokenSource_Disposed" xml:space="preserve">
    <value>The CancellationTokenSource has been disposed.</value>
  </data>
  <data name="ConcurrentCollection_SyncRoot_NotSupported" xml:space="preserve">
    <value>The SyncRoot property may not be used for the synchronization of concurrent collections.</value>
  </data>
  <data name="ConcurrentDictionary_ArrayIncorrectType" xml:space="preserve">
    <value>The array is multidimensional, or the type parameter for the set cannot be cast automatically to the type of the destination array.</value>
  </data>
  <data name="ConcurrentDictionary_ArrayNotLargeEnough" xml:space="preserve">
    <value>The index is equal to or greater than the length of the array, or the number of elements in the dictionary is greater than the available space from index to the end of the destination array.</value>
  </data>
  <data name="ConcurrentDictionary_CapacityMustNotBeNegative" xml:space="preserve">
    <value>The capacity argument must be greater than or equal to zero.</value>
  </data>
  <data name="ConcurrentDictionary_ConcurrencyLevelMustBePositive" xml:space="preserve">
    <value>The concurrencyLevel argument must be positive.</value>
  </data>
  <data name="ConcurrentDictionary_IndexIsNegative" xml:space="preserve">
    <value>The index argument is less than zero.</value>
  </data>
  <data name="ConcurrentDictionary_ItemKeyIsNull" xml:space="preserve">
    <value>TKey is a reference type and item.Key is null.</value>
  </data>
  <data name="ConcurrentDictionary_KeyAlreadyExisted" xml:space="preserve">
    <value>The key already existed in the dictionary.</value>
  </data>
  <data name="ConcurrentDictionary_TypeOfKeyIncorrect" xml:space="preserve">
    <value>The key was of an incorrect type for this dictionary.</value>
  </data>
  <data name="ConcurrentDictionary_TypeOfValueIncorrect" xml:space="preserve">
    <value>The value was of an incorrect type for this dictionary.</value>
  </data>
  <data name="event_Barrier_PhaseFinished" xml:space="preserve">
    <value>Barrier finishing phase {1}.</value>
  </data>
  <data name="event_ConcurrentBag_TryPeekSteals" xml:space="preserve">
    <value>ConcurrentBag stealing in TryPeek.</value>
  </data>
  <data name="event_ConcurrentBag_TryTakeSteals" xml:space="preserve">
    <value>ConcurrentBag stealing in TryTake.</value>
  </data>
  <data name="event_ConcurrentDictionary_AcquiringAllLocks" xml:space="preserve">
    <value>ConcurrentDictionary acquiring all locks on {0} bucket(s).</value>
  </data>
  <data name="event_ConcurrentStack_FastPopFailed" xml:space="preserve">
    <value>Pop from ConcurrentStack spun {0} time(s).</value>
  </data>
  <data name="event_ConcurrentStack_FastPushFailed" xml:space="preserve">
    <value>Push to ConcurrentStack spun {0} time(s).</value>
  </data>
  <data name="event_ParallelFork" xml:space="preserve">
    <value>Task {1} entering fork/join {2}.</value>
  </data>
  <data name="event_ParallelInvokeBegin" xml:space="preserve">
    <value>Beginning ParallelInvoke {2} from Task {1} for {4} actions.</value>
  </data>
  <data name="event_ParallelInvokeEnd" xml:space="preserve">
    <value>Ending ParallelInvoke {2}.</value>
  </data>
  <data name="event_ParallelJoin" xml:space="preserve">
    <value>Task {1} leaving fork/join {2}.</value>
  </data>
  <data name="event_ParallelLoopBegin" xml:space="preserve">
    <value>Beginning {3} loop {2} from Task {1}.</value>
  </data>
  <data name="event_ParallelLoopEnd" xml:space="preserve">
    <value>Ending loop {2} after {3} iterations.</value>
  </data>
  <data name="event_SpinLock_FastPathFailed" xml:space="preserve">
    <value>SpinLock beginning to spin.</value>
  </data>
  <data name="event_SpinWait_NextSpinWillYield" xml:space="preserve">
    <value>Next spin will yield.</value>
  </data>
  <data name="event_TaskCompleted" xml:space="preserve">
    <value>Task {2} completed.</value>
  </data>
  <data name="event_TaskScheduled" xml:space="preserve">
    <value>Task {2} scheduled to TaskScheduler {0}.</value>
  </data>
  <data name="event_TaskStarted" xml:space="preserve">
    <value>Task {2} executing.</value>
  </data>
  <data name="event_TaskWaitBegin" xml:space="preserve">
    <value>Beginning wait ({3}) on Task {2}.</value>
  </data>
  <data name="event_TaskWaitEnd" xml:space="preserve">
    <value>Ending wait on Task {2}.</value>
  </data>
  <data name="EventSource_AbstractMustNotDeclareEventMethods" xml:space="preserve">
    <value>Abstract event source must not declare event methods ({0} with ID {1}).</value>
  </data>
  <data name="EventSource_AbstractMustNotDeclareKTOC" xml:space="preserve">
    <value>Abstract event source must not declare {0} nested type.</value>
  </data>
  <data name="EventSource_AddScalarOutOfRange" xml:space="preserve">
    <value>Getting out of bounds during scalar addition.</value>
  </data>
  <data name="EventSource_ChannelTypeDoesNotMatchEventChannelValue" xml:space="preserve">
    <value>Channel {0} does not match event channel value {1}.</value>
  </data>
  <data name="EventSource_DataDescriptorsOutOfRange" xml:space="preserve">
    <value>Data descriptors are out of range.</value>
  </data>
  <data name="EventSource_DuplicateStringKey" xml:space="preserve">
    <value>Multiple definitions for string "{0}".</value>
  </data>
  <data name="EventSource_EnumKindMismatch" xml:space="preserve">
    <value>The type of {0} is not expected in {1}.</value>
  </data>
  <data name="EventSource_EventChannelOutOfRange" xml:space="preserve">
    <value>Channel {0} has a value of {1} which is outside the legal range (16-254).</value>
  </data>
  <data name="EventSource_EventIdReused" xml:space="preserve">
    <value>Event {0} has ID {1} which is already in use.</value>
  </data>
  <data name="EventSource_EventMustHaveTaskIfNonDefaultOpcode" xml:space="preserve">
    <value>Event {0} (with ID {1}) has a non-default opcode but not a task.</value>
  </data>
  <data name="EventSource_EventMustNotBeExplicitImplementation" xml:space="preserve">
    <value>Event method {0} (with ID {1}) is an explicit interface method implementation. Re-write method as implicit implementation.</value>
  </data>
  <data name="EventSource_EventNameDoesNotEqualTaskPlusOpcode" xml:space="preserve">
    <value>Event {0} (with ID {1}) has a name that is not the concatenation of its task name and opcode.</value>
  </data>
  <data name="EventSource_EventNameReused" xml:space="preserve">
    <value>Event name {0} used more than once.  If you wish to overload a method, the overloaded method should have a NonEvent attribute.</value>
  </data>
  <data name="EventSource_EventParametersMismatch" xml:space="preserve">
    <value>Event {0} was called with {1} argument(s), but it is defined with {2} parameter(s).</value>
  </data>
  <data name="EventSource_EventSourceGuidInUse" xml:space="preserve">
    <value>An instance of EventSource with Guid {0} already exists.</value>
  </data>
  <data name="EventSource_EventWithAdminChannelMustHaveMessage" xml:space="preserve">
    <value>Event {0} specifies an Admin channel {1}. It must specify a Message property.</value>
  </data>
  <data name="EventSource_IllegalKeywordsValue" xml:space="preserve">
    <value>Keyword {0} has a value of {1} which is outside the legal range (0-0x0000080000000000).</value>
  </data>
  <data name="EventSource_IllegalOpcodeValue" xml:space="preserve">
    <value>Opcode {0} has a value of {1} which is outside the legal range (11-238).</value>
  </data>
  <data name="EventSource_IllegalTaskValue" xml:space="preserve">
    <value>Task {0} has a value of {1} which is outside the legal range (1-65535).</value>
  </data>
  <data name="EventSource_IncorrentlyAuthoredTypeInfo" xml:space="preserve">
    <value>Incorrectly-authored TypeInfo - a type should be serialized as one field or as one group</value>
  </data>
  <data name="EventSource_InvalidCommand" xml:space="preserve">
    <value>Invalid command value.</value>
  </data>
  <data name="EventSource_InvalidEventFormat" xml:space="preserve">
    <value>Can't specify both etw event format flags.</value>
  </data>
  <data name="EventSource_KeywordCollision" xml:space="preserve">
    <value>Keywords {0} and {1} are defined with the same value ({2}).</value>
  </data>
  <data name="EventSource_KeywordNeedPowerOfTwo" xml:space="preserve">
    <value>Value {0} for keyword {1} needs to be a power of 2.</value>
  </data>
  <data name="EventSource_ListenerCreatedInsideCallback" xml:space="preserve">
    <value>Creating an EventListener inside a EventListener callback.</value>
  </data>
  <data name="EventSource_ListenerNotFound" xml:space="preserve">
    <value>Listener not found.</value>
  </data>
  <data name="EventSource_ListenerWriteFailure" xml:space="preserve">
    <value>An error occurred when writing to a listener.</value>
  </data>
  <data name="EventSource_MaxChannelExceeded" xml:space="preserve">
    <value>Attempt to define more than the maximum limit of 8 channels for a provider.</value>
  </data>
  <data name="EventSource_MismatchIdToWriteEvent" xml:space="preserve">
    <value>Event {0} is givien event ID {1} but {2} was passed to WriteEvent.</value>
  </data>
  <data name="EventSource_NeedGuid" xml:space="preserve">
    <value>The Guid of an EventSource must be non zero.</value>
  </data>
  <data name="EventSource_NeedName" xml:space="preserve">
    <value>The name of an EventSource must not be null.</value>
  </data>
  <data name="EventSource_NeedPositiveId" xml:space="preserve">
    <value>Event IDs must be positive integers.</value>
  </data>
  <data name="EventSource_NoFreeBuffers" xml:space="preserve">
    <value>No Free Buffers available from the operating system (e.g. event rate too fast).</value>
  </data>
  <data name="EventSource_NonCompliantTypeError" xml:space="preserve">
    <value>The API supports only anonymous types or types decorated with the EventDataAttribute. Non-compliant type: {0} dataType.</value>
  </data>
  <data name="EventSource_NoRelatedActivityId" xml:space="preserve">
    <value>EventSource expects the first parameter of the Event method to be of type Guid and to be named "relatedActivityId" when calling WriteEventWithRelatedActivityId.</value>
  </data>
  <data name="EventSource_NotSupportedArrayOfBinary" xml:space="preserve">
    <value>Arrays of Binary are not supported.</value>
  </data>
  <data name="EventSource_NotSupportedArrayOfNil" xml:space="preserve">
    <value>Arrays of Nil are not supported.</value>
  </data>
  <data name="EventSource_NotSupportedArrayOfNullTerminatedString" xml:space="preserve">
    <value>Arrays of null-terminated string are not supported.</value>
  </data>
  <data name="EventSource_NotSupportedCustomSerializedData" xml:space="preserve">
    <value>Enumerables of custom-serialized data are not supported</value>
  </data>
  <data name="EventSource_NotSupportedNestedArraysEnums" xml:space="preserve">
    <value>Nested arrays/enumerables are not supported.</value>
  </data>
  <data name="EventSource_NullInput" xml:space="preserve">
    <value>Null passed as a event argument.</value>
  </data>
  <data name="EventSource_OpcodeCollision" xml:space="preserve">
    <value>Opcodes {0} and {1} are defined with the same value ({2}).</value>
  </data>
  <data name="EventSource_PinArrayOutOfRange" xml:space="preserve">
    <value>Pins are out of range.</value>
  </data>
  <data name="EventSource_RecursiveTypeDefinition" xml:space="preserve">
    <value>Recursive type definition is not supported.</value>
  </data>
  <data name="EventSource_SessionIdError" xml:space="preserve">
    <value>Bit position in AllKeywords ({0}) must equal the command argument named "EtwSessionKeyword" ({1}).</value>
  </data>
  <data name="EventSource_StopsFollowStarts" xml:space="preserve">
    <value>An event with stop suffix must follow a corresponding event with a start suffix.</value>
  </data>
  <data name="EventSource_TaskCollision" xml:space="preserve">
    <value>Tasks {0} and {1} are defined with the same value ({2}).</value>
  </data>
  <data name="EventSource_TaskOpcodePairReused" xml:space="preserve">
    <value>Event {0} (with ID {1}) has the same task/opcode pair as event {2} (with ID {3}).</value>
  </data>
  <data name="EventSource_TooManyArgs" xml:space="preserve">
    <value>Too many arguments.</value>
  </data>
  <data name="EventSource_TooManyFields" xml:space="preserve">
    <value>Too many fields in structure.</value>
  </data>
  <data name="EventSource_ToString" xml:space="preserve">
    <value>EventSource({0}, {1})</value>
  </data>
  <data name="EventSource_TypeMustBeSealedOrAbstract" xml:space="preserve">
    <value>Event source types must be sealed or abstract.</value>
  </data>
  <data name="EventSource_TypeMustDeriveFromEventSource" xml:space="preserve">
    <value>Event source types must derive from EventSource.</value>
  </data>
  <data name="EventSource_UndefinedChannel" xml:space="preserve">
    <value>Use of undefined channel value {0} for event {1}.</value>
  </data>
  <data name="EventSource_UndefinedKeyword" xml:space="preserve">
    <value>Use of undefined keyword value {0} for event {1}.</value>
  </data>
  <data name="EventSource_UndefinedOpcode" xml:space="preserve">
    <value>Use of undefined opcode value {0} for event {1}.</value>
  </data>
  <data name="EventSource_UnsupportedEventTypeInManifest" xml:space="preserve">
    <value>Unsupported type {0} in event source.</value>
  </data>
  <data name="EventSource_UnsupportedMessageProperty" xml:space="preserve">
    <value>Event {0} specifies an illegal or unsupported formatting message ("{1}").</value>
  </data>
  <data name="EventSource_VarArgsParameterMismatch" xml:space="preserve">
    <value>The parameters to the Event method do not match the parameters to the WriteEvent method. This may cause the event to be displayed incorrectly.</value>
  </data>
  <data name="Exception_EndOfInnerExceptionStack" xml:space="preserve">
    <value>--- End of inner exception stack trace ---</value>
  </data>
  <data name="Exception_EndStackTraceFromPreviousThrow" xml:space="preserve">
    <value>--- End of stack trace from previous location where exception was thrown ---</value>
  </data>
  <data name="Exception_WasThrown" xml:space="preserve">
    <value>Exception of type '{0}' was thrown.</value>
  </data>
  <data name="ExecutionContext_ExceptionInAsyncLocalNotification" xml:space="preserve">
    <value>An exception was not handled in an AsyncLocal&lt;T&gt; notification callback.</value>
  </data>
  <data name="FieldAccess_InitOnly" xml:space="preserve">
    <value>InitOnly (aka ReadOnly) fields can only be initialized in the type/instance constructor.</value>
  </data>
  <data name="FileNotFound_ResolveAssembly" xml:space="preserve">
    <value>Could not resolve assembly '{0}'.</value>
  </data>
  <data name="Format_AttributeUsage" xml:space="preserve">
    <value>Duplicate AttributeUsageAttribute found on attribute type {0}.</value>
  </data>
  <data name="Format_Bad7BitInt32" xml:space="preserve">
    <value>Too many bytes in what should have been a 7 bit encoded Int32.</value>
  </data>
  <data name="Format_BadBase" xml:space="preserve">
    <value>Invalid digits for the specified base.</value>
  </data>
  <data name="Format_BadBase64Char" xml:space="preserve">
    <value>The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters.</value>
  </data>
  <data name="Format_BadBase64CharArrayLength" xml:space="preserve">
    <value>Invalid length for a Base-64 char array or string.</value>
  </data>
  <data name="Format_BadBoolean" xml:space="preserve">
    <value>String was not recognized as a valid Boolean.</value>
  </data>
  <data name="Format_BadDatePattern" xml:space="preserve">
    <value>Could not determine the order of year, month, and date from '{0}'.</value>
  </data>
  <data name="Format_BadDateTime" xml:space="preserve">
    <value>String was not recognized as a valid DateTime.</value>
  </data>
  <data name="Format_BadDateTimeCalendar" xml:space="preserve">
    <value>The DateTime represented by the string is not supported in calendar {0}.</value>
  </data>
  <data name="Format_BadDayOfWeek" xml:space="preserve">
    <value>String was not recognized as a valid DateTime because the day of week was incorrect.</value>
  </data>
  <data name="Format_BadFormatSpecifier" xml:space="preserve">
    <value>Format specifier was invalid.</value>
  </data>
  <data name="Format_BadQuote" xml:space="preserve">
    <value>Cannot find a matching quote character for the character '{0}'.</value>
  </data>
  <data name="Format_BadTimeSpan" xml:space="preserve">
    <value>String was not recognized as a valid TimeSpan.</value>
  </data>
  <data name="Format_DateOutOfRange" xml:space="preserve">
    <value>The DateTime represented by the string is out of range.</value>
  </data>
  <data name="Format_EmptyInputString" xml:space="preserve">
    <value>Input string was either empty or contained only whitespace.</value>
  </data>
  <data name="Format_ExtraJunkAtEnd" xml:space="preserve">
    <value>Additional non-parsable characters are at the end of the string.</value>
  </data>
  <data name="Format_GuidBrace" xml:space="preserve">
    <value>Expected {0xdddddddd, etc}.</value>
  </data>
  <data name="Format_GuidBraceAfterLastNumber" xml:space="preserve">
    <value>Could not find a brace, or the length between the previous token and the brace was zero (i.e., '0x,'etc.).</value>
  </data>
  <data name="Format_GuidComma" xml:space="preserve">
    <value>Could not find a comma, or the length between the previous token and the comma was zero (i.e., '0x,'etc.).</value>
  </data>
  <data name="Format_GuidDashes" xml:space="preserve">
    <value>Dashes are in the wrong position for GUID parsing.</value>
  </data>
  <data name="Format_GuidEndBrace" xml:space="preserve">
    <value>Could not find the ending brace.</value>
  </data>
  <data name="Format_GuidHexPrefix" xml:space="preserve">
    <value>Expected hex 0x in '{0}'.</value>
  </data>
  <data name="Format_GuidInvalidChar" xml:space="preserve">
    <value>Guid string should only contain hexadecimal characters.</value>
  </data>
  <data name="Format_GuidInvLen" xml:space="preserve">
    <value>Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).</value>
  </data>
  <data name="Format_GuidUnrecognized" xml:space="preserve">
    <value>Unrecognized Guid format.</value>
  </data>
  <data name="Format_IndexOutOfRange" xml:space="preserve">
    <value>Index (zero based) must be greater than or equal to zero and less than the size of the argument list.</value>
  </data>
  <data name="Format_InvalidEnumFormatSpecification" xml:space="preserve">
    <value>Format String can be only "G", "g", "X", "x", "F", "f", "D" or "d".</value>
  </data>
  <data name="Format_InvalidGuidFormatSpecification" xml:space="preserve">
    <value>Format String can be only "D", "d", "N", "n", "P", "p", "B", "b", "X" or "x".</value>
  </data>
  <data name="Format_InvalidString" xml:space="preserve">
    <value>Input string was not in a correct format.</value>
  </data>
  <data name="Format_MissingIncompleteDate" xml:space="preserve">
    <value>There must be at least a partial date with a year present in the input.</value>
  </data>
  <data name="Format_NeedSingleChar" xml:space="preserve">
    <value>String must be exactly one character long.</value>
  </data>
  <data name="Format_NoParsibleDigits" xml:space="preserve">
    <value>Could not find any recognizable digits.</value>
  </data>
  <data name="Format_OffsetOutOfRange" xml:space="preserve">
    <value>The time zone offset must be within plus or minus 14 hours.</value>
  </data>
  <data name="Format_RepeatDateTimePattern" xml:space="preserve">
    <value>DateTime pattern '{0}' appears more than once with different values.</value>
  </data>
  <data name="Format_StringZeroLength" xml:space="preserve">
    <value>String cannot have zero length.</value>
  </data>
  <data name="Format_UnknowDateTimeWord" xml:space="preserve">
    <value>The string was not recognized as a valid DateTime. There is an unknown word starting at index {0}.</value>
  </data>
  <data name="Format_UTCOutOfRange" xml:space="preserve">
    <value>The UTC representation of the date falls outside the year range 1-9999.</value>
  </data>
  <data name="Globalization_cp_1200" xml:space="preserve">
    <value>Unicode</value>
  </data>
  <data name="Globalization_cp_12000" xml:space="preserve">
    <value>Unicode (UTF-32)</value>
  </data>
  <data name="Globalization_cp_12001" xml:space="preserve">
    <value>Unicode (UTF-32 Big-Endian)</value>
  </data>
  <data name="Globalization_cp_1201" xml:space="preserve">
    <value>Unicode (Big-Endian)</value>
  </data>
  <data name="Globalization_cp_20127" xml:space="preserve">
    <value>US-ASCII</value>
  </data>
  <data name="Globalization_cp_28591" xml:space="preserve">
    <value>Western European (ISO)</value>
  </data>
  <data name="Globalization_cp_65000" xml:space="preserve">
    <value>Unicode (UTF-7)</value>
  </data>
  <data name="Globalization_cp_65001" xml:space="preserve">
    <value>Unicode (UTF-8)</value>
  </data>
  <data name="IndexOutOfRange_ArrayRankIndex" xml:space="preserve">
    <value>Array does not have that many dimensions.</value>
  </data>
  <data name="IndexOutOfRange_IORaceCondition" xml:space="preserve">
    <value>Probable I/O race condition detected while copying memory. The I/O package is not thread safe by default. In multithreaded applications, a stream must be accessed in a thread-safe way, such as a thread-safe wrapper returned by TextReader's or TextWriter's Synchronized methods. This also applies to classes like StreamWriter and StreamReader.</value>
  </data>
  <data name="IndexOutOfRange_UMSPosition" xml:space="preserve">
    <value>Unmanaged memory stream position was beyond the capacity of the stream.</value>
  </data>
  <data name="InsufficientMemory_MemFailPoint" xml:space="preserve">
    <value>Insufficient available memory to meet the expected demands of an operation at this time.  Please try again later.</value>
  </data>
  <data name="InsufficientMemory_MemFailPoint_TooBig" xml:space="preserve">
    <value>Insufficient memory to meet the expected demands of an operation, and this system is likely to never satisfy this request.  If this is a 32 bit system, consider booting in 3 GB mode.</value>
  </data>
  <data name="InsufficientMemory_MemFailPoint_VAFrag" xml:space="preserve">
    <value>Insufficient available memory to meet the expected demands of an operation at this time, possibly due to virtual address space fragmentation.  Please try again later.</value>
  </data>
  <data name="Interop_COM_TypeMismatch" xml:space="preserve">
    <value>Type mismatch between source and destination types.</value>
  </data>
  <data name="Interop_Marshal_Unmappable_Char" xml:space="preserve">
    <value>Cannot marshal: Encountered unmappable character.</value>
  </data>
  <data name="InvalidCast_CannotCastNullToValueType" xml:space="preserve">
    <value>Null object cannot be converted to a value type.</value>
  </data>
  <data name="InvalidCast_CannotCoerceByRefVariant" xml:space="preserve">
    <value>Object cannot be coerced to the original type of the ByRef VARIANT it was obtained from.</value>
  </data>
  <data name="InvalidCast_DBNull" xml:space="preserve">
    <value>Object cannot be cast to DBNull.</value>
  </data>
  <data name="InvalidCast_DownCastArrayElement" xml:space="preserve">
    <value>At least one element in the source array could not be cast down to the destination array type.</value>
  </data>
  <data name="InvalidCast_Empty" xml:space="preserve">
    <value>Object cannot be cast to Empty.</value>
  </data>
  <data name="InvalidCast_FromDBNull" xml:space="preserve">
    <value>Object cannot be cast from DBNull to other types.</value>
  </data>
  <data name="InvalidCast_FromTo" xml:space="preserve">
    <value>Invalid cast from '{0}' to '{1}'.</value>
  </data>
  <data name="InvalidCast_IConvertible" xml:space="preserve">
    <value>Object must implement IConvertible.</value>
  </data>
  <data name="InvalidCast_OATypeMismatch" xml:space="preserve">
    <value>OleAut reported a type mismatch.</value>
  </data>
  <data name="InvalidCast_StoreArrayElement" xml:space="preserve">
    <value>Object cannot be stored in an array of this type.</value>
  </data>
  <data name="InvalidCast_WinRTIPropertyValueArrayCoersion" xml:space="preserve">
    <value>Object in an IPropertyValue is of type '{0}' which cannot be convereted to a '{1}' due to array element '{2}': {3}.</value>
  </data>
  <data name="InvalidCast_WinRTIPropertyValueCoersion" xml:space="preserve">
    <value>Object in an IPropertyValue is of type '{0}' with value '{1}', which cannot be converted to a '{2}'.</value>
  </data>
  <data name="InvalidCast_WinRTIPropertyValueElement" xml:space="preserve">
    <value>Object in an IPropertyValue is of type '{0}', which cannot be converted to a '{1}'.</value>
  </data>
  <data name="InvalidOperation_AsyncFlowCtrlCtxMismatch" xml:space="preserve">
    <value>AsyncFlowControl objects can be used to restore flow only on a Context that had its flow suppressed.</value>
  </data>
  <data name="InvalidOperation_AsyncIOInProgress" xml:space="preserve">
    <value>The stream is currently in use by a previous operation on the stream.</value>
  </data>
  <data name="InvalidOperation_BadEmptyMethodBody" xml:space="preserve">
    <value>Method '{0}' does not have a method body.</value>
  </data>
  <data name="InvalidOperation_BadILGeneratorUsage" xml:space="preserve">
    <value>ILGenerator usage is invalid.</value>
  </data>
  <data name="InvalidOperation_BadInstructionOrIndexOutOfBound" xml:space="preserve">
    <value>MSIL instruction is invalid or index is out of bounds.</value>
  </data>
  <data name="InvalidOperation_BadInterfaceNotAbstract" xml:space="preserve">
    <value>Interface must be declared abstract.</value>
  </data>
  <data name="InvalidOperation_BadMethodBody" xml:space="preserve">
    <value>Method '{0}' cannot have a method body.</value>
  </data>
  <data name="InvalidOperation_BadTypeAttributesNotAbstract" xml:space="preserve">
    <value>Type must be declared abstract if any of its methods are abstract.</value>
  </data>
  <data name="InvalidOperation_CalledTwice" xml:space="preserve">
    <value>The method cannot be called twice on the same instance.</value>
  </data>
  <data name="InvalidOperation_CannotImportGlobalFromDifferentModule" xml:space="preserve">
    <value>Unable to import a global method or field from a different module.</value>
  </data>
  <data name="InvalidOperation_CannotRemoveLastFromEmptyCollection" xml:space="preserve">
    <value>Cannot remove the last element from an empty collection.</value>
  </data>
  <data name="InvalidOperation_CannotRestoreUnsupressedFlow" xml:space="preserve">
    <value>Cannot restore context flow when it is not suppressed.</value>
  </data>
  <data name="InvalidOperation_CannotSupressFlowMultipleTimes" xml:space="preserve">
    <value>Context flow is already suppressed.</value>
  </data>
  <data name="InvalidOperation_CannotUseAFCMultiple" xml:space="preserve">
    <value>AsyncFlowControl object can be used only once to call Undo().</value>
  </data>
  <data name="InvalidOperation_CannotUseAFCOtherThread" xml:space="preserve">
    <value>AsyncFlowControl object must be used on the thread where it was created.</value>
  </data>
  <data name="InvalidOperation_CantInstantiateAbstractClass" xml:space="preserve">
    <value>Instances of abstract classes cannot be created.</value>
  </data>
  <data name="InvalidOperation_CantInstantiateFunctionPointer" xml:space="preserve">
    <value>Instances of function pointers cannot be created.</value>
  </data>
  <data name="InvalidOperation_CollectionBackingDictionaryTooLarge" xml:space="preserve">
    <value>The collection backing this Dictionary contains too many elements.</value>
  </data>
  <data name="InvalidOperation_CollectionBackingListTooLarge" xml:space="preserve">
    <value>The collection backing this List contains too many elements.</value>
  </data>
  <data name="InvalidOperation_CollectionCorrupted" xml:space="preserve">
    <value>A prior operation on this collection was interrupted by an exception. Collection's state is no longer trusted.</value>
  </data>
  <data name="InvalidOperation_ConstructorNotAllowedOnInterface" xml:space="preserve">
    <value>Interface cannot have constructors.</value>
  </data>
  <data name="InvalidOperation_CriticalTransparentAreMutuallyExclusive" xml:space="preserve">
    <value>SecurityTransparent and SecurityCritical attributes cannot be applied to the assembly scope at the same time.</value>
  </data>
  <data name="InvalidOperation_DateTimeParsing" xml:space="preserve">
    <value>Internal Error in DateTime and Calendar operations.</value>
  </data>
  <data name="InvalidOperation_DebuggerLaunchFailed" xml:space="preserve">
    <value>Debugger unable to launch.</value>
  </data>
  <data name="InvalidOperation_DefaultConstructorILGen" xml:space="preserve">
    <value>Unable to access ILGenerator on a constructor created with DefineDefaultConstructor.</value>
  </data>
  <data name="InvalidOperation_EndReadCalledMultiple" xml:space="preserve">
    <value>EndRead can only be called once for each asynchronous operation.</value>
  </data>
  <data name="InvalidOperation_EndWriteCalledMultiple" xml:space="preserve">
    <value>EndWrite can only be called once for each asynchronous operation.</value>
  </data>
  <data name="InvalidOperation_EnumEnded" xml:space="preserve">
    <value>Enumeration already finished.</value>
  </data>
  <data name="InvalidOperation_EnumFailedVersion" xml:space="preserve">
    <value>Collection was modified; enumeration operation may not execute.</value>
  </data>
  <data name="InvalidOperation_EnumNotStarted" xml:space="preserve">
    <value>Enumeration has not started. Call MoveNext.</value>
  </data>
  <data name="InvalidOperation_EnumOpCantHappen" xml:space="preserve">
    <value>Enumeration has either not started or has already finished.</value>
  </data>
  <data name="InvalidOperation_EventInfoNotAvailable" xml:space="preserve">
    <value>This API does not support EventInfo tokens.</value>
  </data>
  <data name="InvalidOperation_EventTokenTableRequiresDelegate" xml:space="preserve">
    <value>Type '{0}' is not a delegate type.  EventTokenTable may only be used with delegate types.</value>
  </data>
  <data name="InvalidOperation_GenericParametersAlreadySet" xml:space="preserve">
    <value>The generic parameters are already defined on this MethodBuilder.</value>
  </data>
  <data name="InvalidOperation_GetVersion" xml:space="preserve">
    <value>OSVersion's call to GetVersionEx failed.</value>
  </data>
  <data name="InvalidOperation_GlobalsHaveBeenCreated" xml:space="preserve">
    <value>Type definition of the global function has been completed.</value>
  </data>
  <data name="InvalidOperation_HandleIsNotInitialized" xml:space="preserve">
    <value>Handle is not initialized.</value>
  </data>
  <data name="InvalidOperation_HandleIsNotPinned" xml:space="preserve">
    <value>Handle is not pinned.</value>
  </data>
  <data name="InvalidOperation_HashInsertFailed" xml:space="preserve">
    <value>Hashtable insert failed. Load factor too high. The most common cause is multiple threads writing to the Hashtable simultaneously.</value>
  </data>
  <data name="InvalidOperation_IComparerFailed" xml:space="preserve">
    <value>Failed to compare two elements in the array.</value>
  </data>
  <data name="InvalidOperation_MethodBaked" xml:space="preserve">
    <value>Type definition of the method is complete.</value>
  </data>
  <data name="InvalidOperation_MethodBuilderBaked" xml:space="preserve">
    <value>The signature of the MethodBuilder can no longer be modified because an operation on the MethodBuilder caused the methodDef token to be created. For example, a call to SetCustomAttribute requires the methodDef token to emit the CustomAttribute token.</value>
  </data>
  <data name="InvalidOperation_MethodHasBody" xml:space="preserve">
    <value>Method already has a body.</value>
  </data>
  <data name="InvalidOperation_MustCallInitialize" xml:space="preserve">
    <value>You must call Initialize on this object instance before using it.</value>
  </data>
  <data name="InvalidOperation_NativeOverlappedReused" xml:space="preserve">
    <value>NativeOverlapped cannot be reused for multiple operations.</value>
  </data>
  <data name="InvalidOperation_NoMultiModuleAssembly" xml:space="preserve">
    <value>You cannot have more than one dynamic module in each dynamic assembly in this version of the runtime.</value>
  </data>
  <data name="InvalidOperation_NoPublicAddMethod" xml:space="preserve">
    <value>Cannot add the event handler since no public add method exists for the event.</value>
  </data>
  <data name="InvalidOperation_NoPublicRemoveMethod" xml:space="preserve">
    <value>Cannot remove the event handler since no public remove method exists for the event.</value>
  </data>
  <data name="InvalidOperation_NotADebugModule" xml:space="preserve">
    <value>Not a debug ModuleBuilder.</value>
  </data>
  <data name="InvalidOperation_NotAllowedInDynamicMethod" xml:space="preserve">
    <value>The requested operation is invalid for DynamicMethod.</value>
  </data>
  <data name="InvalidOperation_NotAllowedInReflectionOnly" xml:space="preserve">
    <value>The requested operation is invalid in the ReflectionOnly context.</value>
  </data>
  <data name="InvalidOperation_NotAVarArgCallingConvention" xml:space="preserve">
    <value>Calling convention must be VarArgs.</value>
  </data>
  <data name="InvalidOperation_NotGenericType" xml:space="preserve">
    <value>This operation is only valid on generic types.</value>
  </data>
  <data name="InvalidOperation_NotSupportedOnWinRTEvent" xml:space="preserve">
    <value>Adding or removing event handlers dynamically is not supported on WinRT events.</value>
  </data>
  <data name="InvalidOperation_NotWithConcurrentGC" xml:space="preserve">
    <value>This API is not available when the concurrent GC is enabled.</value>
  </data>
  <data name="InvalidOperation_NoUnderlyingTypeOnEnum" xml:space="preserve">
    <value>Underlying type information on enumeration is not specified.</value>
  </data>
  <data name="InvalidOperation_NoValue" xml:space="preserve">
    <value>Nullable object must have a value.</value>
  </data>
  <data name="InvalidOperation_NullArray" xml:space="preserve">
    <value>The underlying array is null.</value>
  </data>
  <data name="InvalidOperation_NullContext" xml:space="preserve">
    <value>Cannot call Set on a null context</value>
  </data>
  <data name="InvalidOperation_NullModuleHandle" xml:space="preserve">
    <value>The requested operation is invalid when called on a null ModuleHandle.</value>
  </data>
  <data name="InvalidOperation_OpenLocalVariableScope" xml:space="preserve">
    <value>Local variable scope was not properly closed.</value>
  </data>
  <data name="InvalidOperation_Overlapped_Pack" xml:space="preserve">
    <value>Cannot pack a packed Overlapped again.</value>
  </data>
  <data name="InvalidOperation_PropertyInfoNotAvailable" xml:space="preserve">
    <value>This API does not support PropertyInfo tokens.</value>
  </data>
  <data name="InvalidOperation_ReadOnly" xml:space="preserve">
    <value>Instance is read-only.</value>
  </data>
  <data name="InvalidOperation_ResMgrBadResSet_Type" xml:space="preserve">
    <value>'{0}': ResourceSet derived classes must provide a constructor that takes a String file name and a constructor that takes a Stream.</value>
  </data>
  <data name="InvalidOperation_ResourceNotStream_Name" xml:space="preserve">
    <value>Resource '{0}' was not a Stream - call GetObject instead.</value>
  </data>
  <data name="InvalidOperation_ResourceNotString_Name" xml:space="preserve">
    <value>Resource '{0}' was not a String - call GetObject instead.</value>
  </data>
  <data name="InvalidOperation_ResourceNotString_Type" xml:space="preserve">
    <value>Resource was of type '{0}' instead of String - call GetObject instead.</value>
  </data>
  <data name="InvalidOperation_SetData_OnlyOnce" xml:space="preserve">
    <value>SetData can only be used to set the value of a given name once.</value>
  </data>
  <data name="InvalidOperation_ShouldNotHaveMethodBody" xml:space="preserve">
    <value>Method body should not exist.</value>
  </data>
  <data name="InvalidOperation_StrongNameKeyPairRequired" xml:space="preserve">
    <value>A strong name key pair is required to emit a strong-named dynamic assembly.</value>
  </data>
  <data name="InvalidOperation_ThreadWrongThreadStart" xml:space="preserve">
    <value>The thread was created with a ThreadStart delegate that does not accept a parameter.</value>
  </data>
  <data name="InvalidOperation_TimeoutsNotSupported" xml:space="preserve">
    <value>Timeouts are not supported on this stream.</value>
  </data>
  <data name="InvalidOperation_TypeCannotBeBoxed" xml:space="preserve">
    <value>The given type cannot be boxed.</value>
  </data>
  <data name="InvalidOperation_TypeHasBeenCreated" xml:space="preserve">
    <value>Unable to change after type has been created.</value>
  </data>
  <data name="InvalidOperation_TypeNotCreated" xml:space="preserve">
    <value>Type has not been created.</value>
  </data>
  <data name="InvalidOperation_UnknownEnumType" xml:space="preserve">
    <value>Unknown enum type.</value>
  </data>
  <data name="InvalidOperation_WriteOnce" xml:space="preserve">
    <value>This property has already been set and cannot be modified.</value>
  </data>
  <data name="InvalidOperation_WrongAsyncResultOrEndCalledMultiple" xml:space="preserve">
    <value>Either the IAsyncResult object did not come from the corresponding async method on this type, or the End method was called multiple times with the same IAsyncResult.</value>
  </data>
  <data name="InvalidOperation_WrongAsyncResultOrEndReadCalledMultiple" xml:space="preserve">
    <value>Either the IAsyncResult object did not come from the corresponding async method on this type, or EndRead was called multiple times with the same IAsyncResult.</value>
  </data>
  <data name="InvalidOperation_WrongAsyncResultOrEndWriteCalledMultiple" xml:space="preserve">
    <value>Either the IAsyncResult object did not come from the corresponding async method on this type, or EndWrite was called multiple times with the same IAsyncResult.</value>
  </data>
  <data name="InvalidProgram_Default" xml:space="preserve">
    <value>Common Language Runtime detected an invalid program.</value>
  </data>
  <data name="InvalidTimeZone_InvalidFileData" xml:space="preserve">
    <value>The time zone ID '{0}' was found on the local computer, but the file at '{1}' was corrupt.</value>
  </data>
  <data name="InvalidTimeZone_InvalidRegistryData" xml:space="preserve">
    <value>The time zone ID '{0}' was found on the local computer, but the registry information was corrupt.</value>
  </data>
  <data name="InvalidTimeZone_JulianDayNotSupported" xml:space="preserve">
    <value>Julian dates in POSIX strings are unsupported.</value>
  </data>
  <data name="InvalidTimeZone_NoTTInfoStructures" xml:space="preserve">
    <value>There are no ttinfo structures in the tzfile.  At least one ttinfo structure is required in order to construct a TimeZoneInfo object.</value>
  </data>
  <data name="InvalidTimeZone_UnparseablePosixMDateString" xml:space="preserve">
    <value>'{0}' is not a valid POSIX-TZ-environment-variable MDate rule.  A valid rule has the format 'Mm.w.d'.</value>
  </data>
  <data name="InvariantFailed" xml:space="preserve">
    <value>Invariant failed.</value>
  </data>
  <data name="InvariantFailed_Cnd" xml:space="preserve">
    <value>Invariant failed: {0}</value>
  </data>
  <data name="IO_DriveNotFound_Drive" xml:space="preserve">
    <value>Could not find the drive '{0}'. The drive might not be ready or might not be mapped.</value>
  </data>
  <data name="IO_EOF_ReadBeyondEOF" xml:space="preserve">
    <value>Unable to read beyond the end of the stream.</value>
  </data>
  <data name="IO_FileLoad" xml:space="preserve">
    <value>Could not load the specified file.</value>
  </data>
  <data name="IO_FileName_Name" xml:space="preserve">
    <value>File name: '{0}'</value>
  </data>
  <data name="IO_FileNotFound" xml:space="preserve">
    <value>Unable to find the specified file.</value>
  </data>
  <data name="IO_FileNotFound_FileName" xml:space="preserve">
    <value>Could not find file '{0}'.</value>
  </data>
  <data name="IO_AlreadyExists_Name" xml:space="preserve">
    <value>Cannot create "{0}" because a file or directory with the same name already exists.</value>
  </data>
  <data name="IO_BindHandleFailed" xml:space="preserve">
    <value>BindHandle for ThreadPool failed on this handle.</value>
  </data>
  <data name="IO_FileExists_Name" xml:space="preserve">
    <value>The file '{0}' already exists.</value>
  </data>
  <data name="IO_FileStreamHandlePosition" xml:space="preserve">
    <value>The OS handle's position is not what FileStream expected. Do not use a handle simultaneously in one FileStream and in Win32 code or another FileStream. This may cause data loss.</value>
  </data>
  <data name="IO_FileTooLong2GB" xml:space="preserve">
    <value>The file is too long. This operation is currently limited to supporting files less than 2 gigabytes in size.</value>
  </data>
  <data name="IO_FileTooLongOrHandleNotSync" xml:space="preserve">
    <value>IO operation will not work. Most likely the file will become too long or the handle was not opened to support synchronous IO operations.</value>
  </data>
  <data name="IO_FixedCapacity" xml:space="preserve">
    <value>Unable to expand length of this stream beyond its capacity.</value>
  </data>
  <data name="IO_InvalidStringLen_Len" xml:space="preserve">
    <value>BinaryReader encountered an invalid string length of {0} characters.</value>
  </data>
  <data name="IO_NoPermissionToDirectoryName" xml:space="preserve">
    <value>&lt;Path discovery permission to the specified directory was denied.&gt;</value>
  </data>
  <data name="IO_SeekAppendOverwrite" xml:space="preserve">
    <value>Unable seek backward to overwrite data that previously existed in a file opened in Append mode.</value>
  </data>
  <data name="IO_SeekBeforeBegin" xml:space="preserve">
    <value>An attempt was made to move the position before the beginning of the stream.</value>
  </data>
  <data name="IO_SetLengthAppendTruncate" xml:space="preserve">
    <value>Unable to truncate data that previously existed in a file opened in Append mode.</value>
  </data>
  <data name="IO_SharingViolation_File" xml:space="preserve">
    <value>The process cannot access the file '{0}' because it is being used by another process.</value>
  </data>
  <data name="IO_SharingViolation_NoFileName" xml:space="preserve">
    <value>The process cannot access the file because it is being used by another process.</value>
  </data>
  <data name="IO_StreamTooLong" xml:space="preserve">
    <value>Stream was too long.</value>
  </data>
  <data name="IO_PathNotFound_NoPathName" xml:space="preserve">
    <value>Could not find a part of the path.</value>
  </data>
  <data name="IO_PathNotFound_Path" xml:space="preserve">
    <value>Could not find a part of the path '{0}'.</value>
  </data>
  <data name="IO_PathTooLong" xml:space="preserve">
    <value>The specified file name or path is too long, or a component of the specified path is too long.</value>
  </data>
  <data name="IO_UnknownFileName" xml:space="preserve">
    <value>[Unknown]</value>
  </data>
  <data name="Lazy_CreateValue_NoParameterlessCtorForT" xml:space="preserve">
    <value>The lazily-initialized type does not have a public, parameterless constructor.</value>
  </data>
  <data name="Lazy_ctor_ModeInvalid" xml:space="preserve">
    <value>The mode argument specifies an invalid value.</value>
  </data>
  <data name="Lazy_StaticInit_InvalidOperation" xml:space="preserve">
    <value>ValueFactory returned null.</value>
  </data>
  <data name="Lazy_ToString_ValueNotCreated" xml:space="preserve">
    <value>Value is not created.</value>
  </data>
  <data name="Lazy_Value_RecursiveCallsToValue" xml:space="preserve">
    <value>ValueFactory attempted to access the Value property of this instance.</value>
  </data>
  <data name="Loader_ContextPolicies" xml:space="preserve">
    <value>Context Policies:</value>
  </data>
  <data name="Loader_Name" xml:space="preserve">
    <value>Name:</value>
  </data>
  <data name="Loader_NoContextPolicies" xml:space="preserve">
    <value>There are no context policies.</value>
  </data>
  <data name="ManualResetEventSlim_ctor_SpinCountOutOfRange" xml:space="preserve">
    <value>The spinCount argument must be in the range 0 to {0}, inclusive.</value>
  </data>
  <data name="ManualResetEventSlim_ctor_TooManyWaiters" xml:space="preserve">
    <value>There are too many threads currently waiting on the event. A maximum of {0} waiting threads are supported.</value>
  </data>
  <data name="ManualResetEventSlim_Disposed" xml:space="preserve">
    <value>The event has been disposed.</value>
  </data>
  <data name="Marshaler_StringTooLong" xml:space="preserve">
    <value>Marshaler restriction: Excessively long string.</value>
  </data>
  <data name="MissingConstructor_Name" xml:space="preserve">
    <value>Constructor on type '{0}' not found.</value>
  </data>
  <data name="MissingField" xml:space="preserve">
    <value>Field not found.</value>
  </data>
  <data name="MissingField_Name" xml:space="preserve">
    <value>Field '{0}' not found.</value>
  </data>
  <data name="MissingManifestResource_LooselyLinked" xml:space="preserve">
    <value>Could not find a manifest resource entry called "{0}" in assembly "{1}". Please check spelling, capitalization, and build rules to ensure "{0}" is being linked into the assembly.</value>
  </data>
  <data name="MissingManifestResource_MultipleBlobs" xml:space="preserve">
    <value>A case-insensitive lookup for resource file "{0}" in assembly "{1}" found multiple entries. Remove the duplicates or specify the exact case.</value>
  </data>
  <data name="MissingManifestResource_NoNeutralAsm" xml:space="preserve">
    <value>Could not find any resources appropriate for the specified culture or the neutral culture.  Make sure "{0}" was correctly embedded or linked into assembly "{1}" at compile time, or that all the satellite assemblies required are loadable and fully signed.</value>
  </data>
  <data name="MissingManifestResource_NoNeutralDisk" xml:space="preserve">
    <value>Could not find any resources appropriate for the specified culture (or the neutral culture) on disk.</value>
  </data>
  <data name="MissingManifestResource_NoPRIresources" xml:space="preserve">
    <value>Unable to open Package Resource Index.</value>
  </data>
  <data name="MissingManifestResource_ResWFileNotLoaded" xml:space="preserve">
    <value>Unable to load resources for resource file "{0}" in package "{1}".</value>
  </data>
  <data name="MissingMember" xml:space="preserve">
    <value>Member not found.</value>
  </data>
  <data name="MissingMember_Name" xml:space="preserve">
    <value>Member '{0}' not found.</value>
  </data>
  <data name="MissingMemberNestErr" xml:space="preserve">
    <value>TypedReference can only be made on nested value Types.</value>
  </data>
  <data name="MissingMemberTypeRef" xml:space="preserve">
    <value>FieldInfo does not match the target Type.</value>
  </data>
  <data name="MissingMethod_Name" xml:space="preserve">
    <value>Method '{0}' not found.</value>
  </data>
  <data name="MissingSatelliteAssembly_Culture_Name" xml:space="preserve">
    <value>The satellite assembly named "{1}" for fallback culture "{0}" either could not be found or could not be loaded. This is generally a setup problem. Please consider reinstalling or repairing the application.</value>
  </data>
  <data name="MissingSatelliteAssembly_Default" xml:space="preserve">
    <value>Resource lookup fell back to the ultimate fallback resources in a satellite assembly, but that satellite either was not found or could not be loaded. Please consider reinstalling or repairing the application.</value>
  </data>
  <data name="Multicast_Combine" xml:space="preserve">
    <value>Delegates that are not of type MulticastDelegate may not be combined.</value>
  </data>
  <data name="MustUseCCRewrite" xml:space="preserve">
    <value>An assembly (probably "{1}") must be rewritten using the code contracts binary rewriter (CCRewrite) because it is calling Contract.{0} and the CONTRACTS_FULL symbol is defined.  Remove any explicit definitions of the CONTRACTS_FULL symbol from your project and rebuild.  CCRewrite can be downloaded from http://go.microsoft.com/fwlink/?LinkID=169180. \r\nAfter the rewriter is installed, it can be enabled in Visual Studio from the project's Properties page on the Code Contracts pane.  Ensure that "Perform Runtime Contract Checking" is enabled, which will define CONTRACTS_FULL.</value>
  </data>
  <data name="NotImplemented_ResourcesLongerThanInt64Max" xml:space="preserve">
    <value>Resource files longer than 2^63 bytes are not currently implemented.</value>
  </data>
  <data name="NotSupported_AbstractNonCLS" xml:space="preserve">
    <value>This non-CLS method is not implemented.</value>
  </data>
  <data name="NotSupported_ActivAttr" xml:space="preserve">
    <value>Activation Attributes are not supported.</value>
  </data>
  <data name="NotSupported_AppX" xml:space="preserve">
    <value>{0} is not supported in AppX.</value>
  </data>
  <data name="NotSupported_AssemblyLoadFromHash" xml:space="preserve">
    <value>Assembly.LoadFrom with hashValue is not supported.</value>
  </data>
  <data name="NotSupported_ByRefLike" xml:space="preserve">
    <value>Cannot create boxed ByRef-like values.</value>
  </data>
  <data name="NotSupported_ByRefLikeArray" xml:space="preserve">
    <value>Cannot create arrays of ByRef-like values.</value>
  </data>
  <data name="NotSupported_ByRefReturn" xml:space="preserve">
    <value>ByRef return value not supported in reflection invocation.</value>
  </data>
  <data name="NotSupported_CallToVarArg" xml:space="preserve">
    <value>Vararg calling convention not supported.</value>
  </data>
  <data name="NotSupported_CannotCallEqualsOnSpan" xml:space="preserve">
    <value>Equals() on Span and ReadOnlySpan is not supported. Use operator== instead.</value>
  </data>
  <data name="NotSupported_CannotCallGetHashCodeOnSpan" xml:space="preserve">
    <value>GetHashCode() on Span and ReadOnlySpan is not supported.</value>
  </data>
  <data name="NotSupported_ChangeType" xml:space="preserve">
    <value>ChangeType operation is not supported.</value>
  </data>
  <data name="NotSupported_CollectibleAssemblyResolve" xml:space="preserve">
    <value>Resolving to a collectible assembly is not supported.</value>
  </data>
  <data name="NotSupported_CollectibleBoundNonCollectible" xml:space="preserve">
    <value>A non-collectible assembly may not reference a collectible assembly.</value>
  </data>
  <data name="NotSupported_CollectibleCOM" xml:space="preserve">
    <value>COM Interop is not supported for collectible types.</value>
  </data>
  <data name="NotSupported_CollectibleDelegateMarshal" xml:space="preserve">
    <value>Delegate marshaling for types within collectible assemblies is not supported.</value>
  </data>
  <data name="NotSupported_Constructor" xml:space="preserve">
    <value>Object cannot be created through this constructor.</value>
  </data>
  <data name="NotSupported_CreateInstanceWithTypeBuilder" xml:space="preserve">
    <value>CreateInstance cannot be used with an object of type TypeBuilder.</value>
  </data>
  <data name="NotSupported_DBNullSerial" xml:space="preserve">
    <value>Only one DBNull instance may exist, and calls to DBNull deserialization methods are not allowed.</value>
  </data>
  <data name="NotSupported_DelegateMarshalToWrongDomain" xml:space="preserve">
    <value>Delegates cannot be marshaled from native code into a domain other than their home domain.</value>
  </data>
  <data name="NotSupported_DelegateSerHolderSerial" xml:space="preserve">
    <value>DelegateSerializationHolder objects are designed to represent a delegate during serialization and are not serializable themselves.</value>
  </data>
  <data name="NotSupported_DynamicAssembly" xml:space="preserve">
    <value>The invoked member is not supported in a dynamic assembly.</value>
  </data>
  <data name="NotSupported_DynamicAssemblyNoRunAccess" xml:space="preserve">
    <value>Cannot execute code on a dynamic assembly without run access.</value>
  </data>
  <data name="NotSupported_DynamicMethodFlags" xml:space="preserve">
    <value>Wrong MethodAttributes or CallingConventions for DynamicMethod. Only public, static, standard supported</value>
  </data>
  <data name="NotSupported_DynamicModule" xml:space="preserve">
    <value>The invoked member is not supported in a dynamic module.</value>
  </data>
  <data name="NotSupported_FileStreamOnNonFiles" xml:space="preserve">
    <value>FileStream was asked to open a device that was not a file. For support for devices like 'com1:' or 'lpt1:', call CreateFile, then use the FileStream constructors that take an OS handle as an IntPtr.</value>
  </data>
  <data name="NotSupported_FixedSizeCollection" xml:space="preserve">
    <value>Collection was of a fixed size.</value>
  </data>
  <data name="NotSupported_GenericMethod" xml:space="preserve">
    <value>Generic methods with NativeCallableAttribute are not supported.</value>
  </data>
  <data name="NotSupported_GlobalMethodSerialization" xml:space="preserve">
    <value>Serialization of global methods (including implicit serialization via the use of asynchronous delegates) is not supported.</value>
  </data>
  <data name="NotSupported_IDispInvokeDefaultMemberWithNamedArgs" xml:space="preserve">
    <value>Invoking default method with named arguments is not supported.</value>
  </data>
  <data name="NotSupported_IllegalOneByteBranch" xml:space="preserve">
    <value>Illegal one-byte branch at position: {0}. Requested branch was: {1}.</value>
  </data>
  <data name="NotSupported_KeyCollectionSet" xml:space="preserve">
    <value>Mutating a key collection derived from a dictionary is not allowed.</value>
  </data>
  <data name="NotSupported_ManagedActivation" xml:space="preserve">
    <value>Cannot create uninitialized instances of types requiring managed activation.</value>
  </data>
  <data name="NotSupported_MaxWaitHandles" xml:space="preserve">
    <value>The number of WaitHandles must be less than or equal to 64.</value>
  </data>
  <data name="NotSupported_MemStreamNotExpandable" xml:space="preserve">
    <value>Memory stream is not expandable.</value>
  </data>
  <data name="NotSupported_MustBeModuleBuilder" xml:space="preserve">
    <value>Module argument must be a ModuleBuilder.</value>
  </data>
  <data name="NotSupported_NativeCallableTarget" xml:space="preserve">
    <value>Methods with NativeCallableAttribute cannot be used as delegate target.</value>
  </data>
  <data name="NotSupported_NoCodepageData" xml:space="preserve">
    <value>No data is available for encoding {0}. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.</value>
  </data>
  <data name="NotSupported_NonBlittableTypes" xml:space="preserve">
    <value>Non-blittable parameter types are not supported for NativeCallable methods.</value>
  </data>
  <data name="NotSupported_NonReflectedType" xml:space="preserve">
    <value>Not supported in a non-reflected type.</value>
  </data>
  <data name="NotSupported_NonStaticMethod" xml:space="preserve">
    <value>Non-static methods with NativeCallableAttribute are not supported.</value>
  </data>
  <data name="NotSupported_NoParentDefaultConstructor" xml:space="preserve">
    <value>Parent does not have a default constructor. The default constructor must be explicitly defined.</value>
  </data>
  <data name="NotSupported_NoTypeInfo" xml:space="preserve">
    <value>Cannot resolve {0} to a TypeInfo object.</value>
  </data>
  <data name="NotSupported_NYI" xml:space="preserve">
    <value>This feature is not currently implemented.</value>
  </data>
  <data name="NotSupported_ObsoleteResourcesFile" xml:space="preserve">
    <value>Found an obsolete .resources file in assembly '{0}'. Rebuild that .resources file then rebuild that assembly.</value>
  </data>
  <data name="NotSupported_OleAutBadVarType" xml:space="preserve">
    <value>The given Variant type is not supported by this OleAut function.</value>
  </data>
  <data name="NotSupported_OpenType" xml:space="preserve">
    <value>Cannot create arrays of open type.</value>
  </data>
  <data name="NotSupported_OutputStreamUsingTypeBuilder" xml:space="preserve">
    <value>Output streams do not support TypeBuilders.</value>
  </data>
  <data name="NotSupported_PIAInAppxProcess" xml:space="preserve">
    <value>A Primary Interop Assembly is not supported in AppX.</value>
  </data>
  <data name="NotSupported_Reading" xml:space="preserve">
    <value>Accessor does not support reading.</value>
  </data>
  <data name="NotSupported_ReadOnlyCollection" xml:space="preserve">
    <value>Collection is read-only.</value>
  </data>
  <data name="NotSupported_ResourceObjectSerialization" xml:space="preserve">
    <value>Cannot read resources that depend on serialization.</value>
  </data>
  <data name="NotSupported_SignalAndWaitSTAThread" xml:space="preserve">
    <value>SignalAndWait on a STA thread is not supported.</value>
  </data>
  <data name="NotSupported_StringComparison" xml:space="preserve">
    <value>The string comparison type passed in is currently not supported.</value>
  </data>
  <data name="NotSupported_SubclassOverride" xml:space="preserve">
    <value>Derived classes must provide an implementation.</value>
  </data>
  <data name="NotSupported_SymbolMethod" xml:space="preserve">
    <value>Not supported in an array method of a type definition that is not complete.</value>
  </data>
  <data name="NotSupported_TooManyArgs" xml:space="preserve">
    <value>Stack size too deep. Possibly too many arguments.</value>
  </data>
  <data name="NotSupported_Type" xml:space="preserve">
    <value>Type is not supported.</value>
  </data>
  <data name="NotSupported_TypeCannotDeserialized" xml:space="preserve">
    <value>Direct deserialization of type '{0}' is not supported.</value>
  </data>
  <data name="NotSupported_TypeNotYetCreated" xml:space="preserve">
    <value>The invoked member is not supported before the type is created.</value>
  </data>
  <data name="NotSupported_UmsSafeBuffer" xml:space="preserve">
    <value>This operation is not supported for an UnmanagedMemoryStream created from a SafeBuffer.</value>
  </data>
  <data name="NotSupported_UnitySerHolder" xml:space="preserve">
    <value>The UnitySerializationHolder object is designed to transmit information about other types and is not serializable itself.</value>
  </data>
  <data name="NotSupported_UnknownTypeCode" xml:space="preserve">
    <value>TypeCode '{0}' was not valid.</value>
  </data>
  <data name="NotSupported_UnreadableStream" xml:space="preserve">
    <value>Stream does not support reading.</value>
  </data>
  <data name="NotSupported_UnseekableStream" xml:space="preserve">
    <value>Stream does not support seeking.</value>
  </data>
  <data name="NotSupported_UnwritableStream" xml:space="preserve">
    <value>Stream does not support writing.</value>
  </data>
  <data name="NotSupported_ValueClassCM" xml:space="preserve">
    <value>Custom marshalers for value types are not currently supported.</value>
  </data>
  <data name="NotSupported_ValueCollectionSet" xml:space="preserve">
    <value>Mutating a value collection derived from a dictionary is not allowed.</value>
  </data>
  <data name="NotSupported_VoidArray" xml:space="preserve">
    <value>Arrays of System.Void are not supported.</value>
  </data>
  <data name="NotSupported_WinRT_PartialTrust" xml:space="preserve">
    <value>Windows Runtime is not supported in partial trust.</value>
  </data>
  <data name="NotSupported_Writing" xml:space="preserve">
    <value>Accessor does not support writing.</value>
  </data>
  <data name="NotSupported_WrongResourceReader_Type" xml:space="preserve">
    <value>This .resources file should not be read with this reader. The resource reader type is "{0}".</value>
  </data>
  <data name="NullReference_This" xml:space="preserve">
    <value>The pointer for this method was null.</value>
  </data>
  <data name="ObjectDisposed_FileClosed" xml:space="preserve">
    <value>Cannot access a closed file.</value>
  </data>
  <data name="ObjectDisposed_Generic" xml:space="preserve">
    <value>Cannot access a disposed object.</value>
  </data>
  <data name="ObjectDisposed_ObjectName_Name" xml:space="preserve">
    <value>Object name: '{0}'.</value>
  </data>
  <data name="ObjectDisposed_ReaderClosed" xml:space="preserve">
    <value>Cannot read from a closed TextReader.</value>
  </data>
  <data name="ObjectDisposed_RegKeyClosed" xml:space="preserve">
    <value>Cannot access a closed registry key.</value>
  </data>
  <data name="ObjectDisposed_ResourceSet" xml:space="preserve">
    <value>Cannot access a closed resource set.</value>
  </data>
  <data name="ObjectDisposed_StreamClosed" xml:space="preserve">
    <value>Cannot access a closed Stream.</value>
  </data>
  <data name="ObjectDisposed_ViewAccessorClosed" xml:space="preserve">
    <value>Cannot access a closed accessor.</value>
  </data>
  <data name="OperationCanceled" xml:space="preserve">
    <value>The operation was canceled.</value>
  </data>
  <data name="OutOfMemory_GCHandleMDA" xml:space="preserve">
    <value>The GCHandle MDA has run out of available cookies.</value>
  </data>
  <data name="Overflow_Byte" xml:space="preserve">
    <value>Value was either too large or too small for an unsigned byte.</value>
  </data>
  <data name="Overflow_Char" xml:space="preserve">
    <value>Value was either too large or too small for a character.</value>
  </data>
  <data name="Overflow_Currency" xml:space="preserve">
    <value>Value was either too large or too small for a Currency.</value>
  </data>
  <data name="Overflow_Decimal" xml:space="preserve">
    <value>Value was either too large or too small for a Decimal.</value>
  </data>
  <data name="Overflow_Double" xml:space="preserve">
    <value>Value was either too large or too small for a Double.</value>
  </data>
  <data name="Overflow_Duration" xml:space="preserve">
    <value>The duration cannot be returned for TimeSpan.MinValue because the absolute value of TimeSpan.MinValue exceeds the value of TimeSpan.MaxValue.</value>
  </data>
  <data name="Overflow_Int16" xml:space="preserve">
    <value>Value was either too large or too small for an Int16.</value>
  </data>
  <data name="Overflow_Int32" xml:space="preserve">
    <value>Value was either too large or too small for an Int32.</value>
  </data>
  <data name="Overflow_Int64" xml:space="preserve">
    <value>Value was either too large or too small for an Int64.</value>
  </data>
  <data name="Overflow_NegateTwosCompNum" xml:space="preserve">
    <value>Negating the minimum value of a twos complement number is invalid.</value>
  </data>
  <data name="Overflow_NegativeUnsigned" xml:space="preserve">
    <value>The string was being parsed as an unsigned number and could not have a negative sign.</value>
  </data>
  <data name="Overflow_SByte" xml:space="preserve">
    <value>Value was either too large or too small for a signed byte.</value>
  </data>
  <data name="Overflow_Single" xml:space="preserve">
    <value>Value was either too large or too small for a Single.</value>
  </data>
  <data name="Overflow_TimeSpanElementTooLarge" xml:space="preserve">
    <value>The TimeSpan could not be parsed because at least one of the numeric components is out of range or contains too many digits.</value>
  </data>
  <data name="Overflow_TimeSpanTooLong" xml:space="preserve">
    <value>TimeSpan overflowed because the duration is too long.</value>
  </data>
  <data name="Overflow_UInt16" xml:space="preserve">
    <value>Value was either too large or too small for a UInt16.</value>
  </data>
  <data name="Overflow_UInt32" xml:space="preserve">
    <value>Value was either too large or too small for a UInt32.</value>
  </data>
  <data name="Overflow_UInt64" xml:space="preserve">
    <value>Value was either too large or too small for a UInt64.</value>
  </data>
  <data name="PlatformNotSupported_ArgIterator" xml:space="preserve">
    <value>ArgIterator is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_ComInterop" xml:space="preserve">
    <value>COM Interop is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_NamedSynchronizationPrimitives" xml:space="preserve">
    <value>The named version of this synchronization primitive is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_NamedSyncObjectWaitAnyWaitAll" xml:space="preserve">
    <value>Wait operations on multiple wait handles including a named synchronization primitive are not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_OSXFileLocking" xml:space="preserve">
    <value>Locking/unlocking file regions is not supported on this platform. Use FileShare on the entire file instead.</value>
  </data>
  <data name="PlatformNotSupported_ReflectionOnly" xml:space="preserve">
    <value>ReflectionOnly loading is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_Remoting" xml:space="preserve">
    <value>Remoting is not supported on this platform.</value>
  </data>   
  <data name="PlatformNotSupported_SecureBinarySerialization" xml:space="preserve">
    <value>Secure binary serialization is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_StrongNameSigning" xml:space="preserve">
    <value>Strong-name signing is not supported on this platform.</value>
  </data>
  <data name="PlatformNotSupported_WinRT" xml:space="preserve">
    <value>Windows Runtime is not supported on this operating system.</value>
  </data>
  <data name="Policy_CannotLoadSemiTrustAssembliesDuringInit" xml:space="preserve">
    <value>All assemblies loaded as part of AppDomain initialization must be fully trusted.</value>
  </data>
  <data name="PostconditionFailed" xml:space="preserve">
    <value>Postcondition failed.</value>
  </data>
  <data name="PostconditionFailed_Cnd" xml:space="preserve">
    <value>Postcondition failed: {0}</value>
  </data>
  <data name="PostconditionOnExceptionFailed" xml:space="preserve">
    <value>Postcondition failed after throwing an exception.</value>
  </data>
  <data name="PostconditionOnExceptionFailed_Cnd" xml:space="preserve">
    <value>Postcondition failed after throwing an exception: {0}</value>
  </data>
  <data name="PreconditionFailed" xml:space="preserve">
    <value>Precondition failed.</value>
  </data>
  <data name="PreconditionFailed_Cnd" xml:space="preserve">
    <value>Precondition failed: {0}</value>
  </data>
  <data name="Rank_MultiDimNotSupported" xml:space="preserve">
    <value>Only single dimension arrays are supported here.</value>
  </data>
  <data name="Rank_MustMatch" xml:space="preserve">
    <value>The specified arrays must have the same number of dimensions.</value>
  </data>
  <data name="ReflectionTypeLoad_LoadFailed" xml:space="preserve">
    <value>Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.</value>
  </data>
  <data name="Remoting_AppDomainUnloaded_ThreadUnwound" xml:space="preserve">
    <value>The application domain in which the thread was running has been unloaded.</value>
  </data>
  <data name="ResourceReaderIsClosed" xml:space="preserve">
    <value>ResourceReader is closed.</value>
  </data>
  <data name="Resources_StreamNotValid" xml:space="preserve">
    <value>Stream is not a valid resource file.</value>
  </data>
  <data name="RFLCT_AmbigCust" xml:space="preserve">
    <value>Multiple custom attributes of the same type found.</value>
  </data>
  <data name="RFLCT_Ambiguous" xml:space="preserve">
    <value>Ambiguous match found.</value>
  </data>
  <data name="InvalidFilterCriteriaException_CritInt" xml:space="preserve">
    <value>An Int32 must be provided for the filter criteria.</value>
  </data>
  <data name="InvalidFilterCriteriaException_CritString" xml:space="preserve">
    <value>A String must be provided for the filter criteria.</value>
  </data>
  <data name="RFLCT_InvalidFieldFail" xml:space="preserve">
    <value>'{0}' field specified was not found.</value>
  </data>
  <data name="RFLCT_InvalidPropFail" xml:space="preserve">
    <value>'{0}' property specified was not found.</value>
  </data>
  <data name="RFLCT_Targ_ITargMismatch" xml:space="preserve">
    <value>Object does not match target type.</value>
  </data>
  <data name="RFLCT_Targ_StatFldReqTarg" xml:space="preserve">
    <value>Non-static field requires a target.</value>
  </data>
  <data name="RFLCT_Targ_StatMethReqTarg" xml:space="preserve">
    <value>Non-static method requires a target.</value>
  </data>
  <data name="RuntimeWrappedException" xml:space="preserve">
    <value>An object that does not derive from System.Exception has been wrapped in a RuntimeWrappedException.</value>
  </data>
  <data name="Security_CannotReadFileData" xml:space="preserve">
    <value>The time zone ID '{0}' was found on the local computer, but the application does not have permission to read the file.</value>
  </data>
  <data name="Security_CannotReadRegistryData" xml:space="preserve">
    <value>The time zone ID '{0}' was found on the local computer, but the application does not have permission to read the registry information.</value>
  </data>
  <data name="Security_RegistryPermission" xml:space="preserve">
    <value>Requested registry access is not allowed.</value>
  </data>
  <data name="SemaphoreSlim_ctor_InitialCountWrong" xml:space="preserve">
    <value>The initialCount argument must be non-negative and less than or equal to the maximumCount.</value>
  </data>
  <data name="SemaphoreSlim_ctor_MaxCountWrong" xml:space="preserve">
    <value>The maximumCount argument must be a positive number. If a maximum is not required, use the constructor without a maxCount parameter.</value>
  </data>
  <data name="SemaphoreSlim_Disposed" xml:space="preserve">
    <value>The semaphore has been disposed.</value>
  </data>
  <data name="SemaphoreSlim_Release_CountWrong" xml:space="preserve">
    <value>The releaseCount argument must be greater than zero.</value>
  </data>
  <data name="SemaphoreSlim_Wait_TimeoutWrong" xml:space="preserve">
    <value>The timeout must represent a value between -1 and Int32.MaxValue, inclusive.</value>
  </data>
  <data name="Serialization_BadParameterInfo" xml:space="preserve">
    <value>Non existent ParameterInfo. Position bigger than member's parameters length.</value>
  </data>
  <data name="Serialization_CorruptField" xml:space="preserve">
    <value>The value of the field '{0}' is invalid.  The serialized data is corrupt.</value>
  </data>
  <data name="Serialization_DateTimeTicksOutOfRange" xml:space="preserve">
    <value>Invalid serialized DateTime data. Ticks must be between DateTime.MinValue.Ticks and DateTime.MaxValue.Ticks.</value>
  </data>
  <data name="Serialization_InsufficientDeserializationState" xml:space="preserve">
    <value>Insufficient state to deserialize the object. Missing field '{0}'. More information is needed.</value>
  </data>
  <data name="Serialization_InsufficientState" xml:space="preserve">
    <value>Insufficient state to return the real object.</value>
  </data>
  <data name="Serialization_InvalidData" xml:space="preserve">
    <value>An error occurred while deserializing the object.  The serialized data is corrupt.</value>
  </data>
  <data name="Serialization_InvalidDelegateType" xml:space="preserve">
    <value>Cannot serialize delegates over unmanaged function pointers, dynamic methods or methods outside the delegate creator's assembly.</value>
  </data>
  <data name="Serialization_InvalidEscapeSequence" xml:space="preserve">
    <value>The serialized data contained an invalid escape sequence '\\{0}'.</value>
  </data>
  <data name="Serialization_InvalidFieldState" xml:space="preserve">
    <value>Object fields may not be properly initialized.</value>
  </data>
  <data name="Serialization_InvalidOnDeser" xml:space="preserve">
    <value>OnDeserialization method was called while the object was not being deserialized.</value>
  </data>
  <data name="Serialization_InvalidPtrValue" xml:space="preserve">
    <value>An IntPtr or UIntPtr with an eight byte value cannot be deserialized on a machine with a four byte word size.</value>
  </data>
  <data name="Serialization_InvalidType" xml:space="preserve">
    <value>Only system-provided types can be passed to the GetUninitializedObject method. '{0}' is not a valid instance of a type.</value>
  </data>
  <data name="Serialization_KeyValueDifferentSizes" xml:space="preserve">
    <value>The keys and values arrays have different sizes.</value>
  </data>
  <data name="Serialization_MemberOutOfRange" xml:space="preserve">
    <value>The deserialized value of the member "{0}" in the class "{1}" is out of range.</value>
  </data>
  <data name="Serialization_MemberTypeNotRecognized" xml:space="preserve">
    <value>Unknown member type.</value>
  </data>
  <data name="Serialization_MissField" xml:space="preserve">
    <value>Field {0} is missing.</value>
  </data>
  <data name="Serialization_MissingDateTimeData" xml:space="preserve">
    <value>Invalid serialized DateTime data. Unable to find 'ticks' or 'dateData'.</value>
  </data>
  <data name="Serialization_MissingKeys" xml:space="preserve">
    <value>The Keys for this Hashtable are missing.</value>
  </data>
  <data name="Serialization_MissingValues" xml:space="preserve">
    <value>The values for this dictionary are missing.</value>
  </data>
  <data name="Serialization_NonSerType" xml:space="preserve">
    <value>Type '{0}' in Assembly '{1}' is not marked as serializable.</value>
  </data>
  <data name="Serialization_NoParameterInfo" xml:space="preserve">
    <value>Serialized member does not have a ParameterInfo.</value>
  </data>
  <data name="Serialization_NotFound" xml:space="preserve">
    <value>Member '{0}' was not found.</value>
  </data>
  <data name="Serialization_NullKey" xml:space="preserve">
    <value>One of the serialized keys is null.</value>
  </data>
  <data name="Serialization_NullSignature" xml:space="preserve">
    <value>The method signature cannot be null.</value>
  </data>
  <data name="Serialization_OptionalFieldVersionValue" xml:space="preserve">
    <value>Version value must be positive.</value>
  </data>
  <data name="Serialization_SameNameTwice" xml:space="preserve">
    <value>Cannot add the same member twice to a SerializationInfo object.</value>
  </data>
  <data name="Serialization_StringBuilderCapacity" xml:space="preserve">
    <value>The serialized Capacity property of StringBuilder must be positive, less than or equal to MaxCapacity and greater than or equal to the String length.</value>
  </data>
  <data name="Serialization_StringBuilderMaxCapacity" xml:space="preserve">
    <value>The serialized MaxCapacity property of StringBuilder must be positive and greater than or equal to the String length.</value>
  </data>
  <data name="Serialization_UnableToFindModule" xml:space="preserve">
    <value>The given module {0} cannot be found within the assembly {1}.</value>
  </data>
  <data name="Serialization_UnknownMember" xml:space="preserve">
    <value>Cannot get the member '{0}'.</value>
  </data>
  <data name="SpinLock_Exit_SynchronizationLockException" xml:space="preserve">
    <value>The calling thread does not hold the lock.</value>
  </data>
  <data name="SpinLock_IsHeldByCurrentThread" xml:space="preserve">
    <value>Thread tracking is disabled.</value>
  </data>
  <data name="SpinLock_TryEnter_ArgumentOutOfRange" xml:space="preserve">
    <value>The timeout must be a value between -1 and Int32.MaxValue, inclusive.</value>
  </data>
  <data name="SpinLock_TryEnter_LockRecursionException" xml:space="preserve">
    <value>The calling thread already holds the lock.</value>
  </data>
  <data name="SpinLock_TryReliableEnter_ArgumentException" xml:space="preserve">
    <value>The tookLock argument must be set to false before calling this method.</value>
  </data>
  <data name="SpinWait_SpinUntil_ArgumentNull" xml:space="preserve">
    <value>The condition argument is null.</value>
  </data>
  <data name="SpinWait_SpinUntil_TimeoutWrong" xml:space="preserve">
    <value>The timeout must represent a value between -1 and Int32.MaxValue, inclusive.</value>
  </data>
  <data name="StackTrace_InFileLineNumber" xml:space="preserve">
    <value>in {0}:line {1}</value>
  </data>
  <data name="Task_ContinueWith_ESandLR" xml:space="preserve">
    <value>The specified TaskContinuationOptions combined LongRunning and ExecuteSynchronously.  Synchronous continuations should not be long running.</value>
  </data>
  <data name="Task_ContinueWith_NotOnAnything" xml:space="preserve">
    <value>The specified TaskContinuationOptions excluded all continuation kinds.</value>
  </data>
  <data name="Task_Delay_InvalidDelay" xml:space="preserve">
    <value>The value needs to translate in milliseconds to -1 (signifying an infinite timeout), 0 or a positive integer less than or equal to Int32.MaxValue.</value>
  </data>
  <data name="Task_Delay_InvalidMillisecondsDelay" xml:space="preserve">
    <value>The value needs to be either -1 (signifying an infinite timeout), 0 or a positive integer.</value>
  </data>
  <data name="Task_Dispose_NotCompleted" xml:space="preserve">
    <value>A task may only be disposed if it is in a completion state (RanToCompletion, Faulted or Canceled).</value>
  </data>
  <data name="Task_FromAsync_LongRunning" xml:space="preserve">
    <value>It is invalid to specify TaskCreationOptions.LongRunning in calls to FromAsync.</value>
  </data>
  <data name="Task_FromAsync_PreferFairness" xml:space="preserve">
    <value>It is invalid to specify TaskCreationOptions.PreferFairness in calls to FromAsync.</value>
  </data>
  <data name="Task_MultiTaskContinuation_EmptyTaskList" xml:space="preserve">
    <value>The tasks argument contains no tasks.</value>
  </data>
  <data name="Task_MultiTaskContinuation_FireOptions" xml:space="preserve">
    <value>It is invalid to exclude specific continuation kinds for continuations off of multiple tasks.</value>
  </data>
  <data name="Task_MultiTaskContinuation_NullTask" xml:space="preserve">
    <value>The tasks argument included a null value.</value>
  </data>
  <data name="Task_RunSynchronously_AlreadyStarted" xml:space="preserve">
    <value>RunSynchronously may not be called on a task that was already started.</value>
  </data>
  <data name="Task_RunSynchronously_Continuation" xml:space="preserve">
    <value>RunSynchronously may not be called on a continuation task.</value>
  </data>
  <data name="Task_RunSynchronously_Promise" xml:space="preserve">
    <value>RunSynchronously may not be called on a task not bound to a delegate, such as the task returned from an asynchronous method.</value>
  </data>
  <data name="Task_RunSynchronously_TaskCompleted" xml:space="preserve">
    <value>RunSynchronously may not be called on a task that has already completed.</value>
  </data>
  <data name="Task_Start_AlreadyStarted" xml:space="preserve">
    <value>Start may not be called on a task that was already started.</value>
  </data>
  <data name="Task_Start_ContinuationTask" xml:space="preserve">
    <value>Start may not be called on a continuation task.</value>
  </data>
  <data name="Task_Start_Promise" xml:space="preserve">
    <value>Start may not be called on a promise-style task.</value>
  </data>
  <data name="Task_Start_TaskCompleted" xml:space="preserve">
    <value>Start may not be called on a task that has completed.</value>
  </data>
  <data name="Task_ThrowIfDisposed" xml:space="preserve">
    <value>The task has been disposed.</value>
  </data>
  <data name="Task_WaitMulti_NullTask" xml:space="preserve">
    <value>The tasks array included at least one null element.</value>
  </data>
  <data name="TaskCanceledException_ctor_DefaultMessage" xml:space="preserve">
    <value>A task was canceled.</value>
  </data>
  <data name="TaskCompletionSourceT_TrySetException_NoExceptions" xml:space="preserve">
    <value>The exceptions collection was empty.</value>
  </data>
  <data name="TaskCompletionSourceT_TrySetException_NullException" xml:space="preserve">
    <value>The exceptions collection included at least one null element.</value>
  </data>
  <data name="TaskExceptionHolder_UnhandledException" xml:space="preserve">
    <value>A Task's exception(s) were not observed either by Waiting on the Task or accessing its Exception property. As a result, the unobserved exception was rethrown by the finalizer thread.</value>
  </data>
  <data name="TaskExceptionHolder_UnknownExceptionType" xml:space="preserve">
    <value>(Internal)Expected an Exception or an IEnumerable&lt;Exception&gt;</value>
  </data>
  <data name="TaskScheduler_ExecuteTask_WrongTaskScheduler" xml:space="preserve">
    <value>ExecuteTask may not be called for a task which was previously queued to a different TaskScheduler.</value>
  </data>
  <data name="TaskScheduler_FromCurrentSynchronizationContext_NoCurrent" xml:space="preserve">
    <value>The current SynchronizationContext may not be used as a TaskScheduler.</value>
  </data>
  <data name="TaskScheduler_InconsistentStateAfterTryExecuteTaskInline" xml:space="preserve">
    <value>The TryExecuteTaskInline call to the underlying scheduler succeeded, but the task body was not invoked.</value>
  </data>
  <data name="TaskSchedulerException_ctor_DefaultMessage" xml:space="preserve">
    <value>An exception was thrown by a TaskScheduler.</value>
  </data>
  <data name="TaskT_DebuggerNoResult" xml:space="preserve">
    <value>{Not yet computed}</value>
  </data>
  <data name="TaskT_TransitionToFinal_AlreadyCompleted" xml:space="preserve">
    <value>An attempt was made to transition a task to a final state when it had already completed.</value>
  </data>
  <data name="Threading_AbandonedMutexException" xml:space="preserve">
    <value>The wait completed due to an abandoned mutex.</value>
  </data>
  <data name="Threading_WaitHandleCannotBeOpenedException" xml:space="preserve">
    <value>No handle of the given name exists.</value>
  </data>
  <data name="Threading_WaitHandleCannotBeOpenedException_InvalidHandle" xml:space="preserve">
    <value>A WaitHandle with system-wide name '{0}' cannot be created. A WaitHandle of a different type might have the same name.</value>
  </data>
  <data name="Threading_WaitHandleTooManyPosts" xml:space="preserve">
    <value>The WaitHandle cannot be signaled because it would exceed its maximum count.</value>
  </data>
  <data name="Threading_SemaphoreFullException" xml:space="preserve">
    <value>Adding the specified count to the semaphore would cause it to exceed its maximum count.</value>
  </data>
  <data name="ThreadLocal_Disposed" xml:space="preserve">
    <value>The ThreadLocal object has been disposed.</value>
  </data>
  <data name="ThreadLocal_Value_RecursiveCallsToValue" xml:space="preserve">
    <value>ValueFactory attempted to access the Value property of this instance.</value>
  </data>
  <data name="ThreadLocal_ValuesNotAvailable" xml:space="preserve">
    <value>The ThreadLocal object is not tracking values. To use the Values property, use a ThreadLocal constructor that accepts the trackAllValues parameter and set the parameter to true.</value>
  </data>
  <data name="TimeZoneNotFound_MissingData" xml:space="preserve">
    <value>The time zone ID '{0}' was not found on the local computer.</value>
  </data>
  <data name="TypeInitialization_Default" xml:space="preserve">
    <value>Type constructor threw an exception.</value>
  </data>
  <data name="TypeInitialization_Type" xml:space="preserve">
    <value>The type initializer for '{0}' threw an exception.</value>
  </data>
  <data name="TypeLoad_ResolveNestedType" xml:space="preserve">
    <value>Could not resolve nested type '{0}' in type "{1}'.</value>
  </data>
  <data name="TypeLoad_ResolveType" xml:space="preserve">
    <value>Could not resolve type '{0}'.</value>
  </data>
  <data name="TypeLoad_ResolveTypeFromAssembly" xml:space="preserve">
    <value>Could not resolve type '{0}' in assembly '{1}'.</value>
  </data>
  <data name="UnauthorizedAccess_IODenied_NoPathName" xml:space="preserve">
    <value>Access to the path is denied.</value>
  </data>
  <data name="UnauthorizedAccess_IODenied_Path" xml:space="preserve">
    <value>Access to the path '{0}' is denied.</value>
  </data>
  <data name="UnauthorizedAccess_MemStreamBuffer" xml:space="preserve">
    <value>MemoryStream's internal buffer cannot be accessed.</value>
  </data>
  <data name="UnauthorizedAccess_RegistryKeyGeneric_Key" xml:space="preserve">
    <value>Access to the registry key '{0}' is denied.</value>
  </data>
  <data name="UnauthorizedAccess_RegistryNoWrite" xml:space="preserve">
    <value>Cannot write to the registry key.</value>
  </data>
  <data name="UnauthorizedAccess_SystemDomain" xml:space="preserve">
    <value>Cannot execute an assembly in the system domain.</value>
  </data>
  <data name="UnknownError_Num" xml:space="preserve">
    <value>Unknown error "{0}".</value>
  </data>
  <data name="Verification_Exception" xml:space="preserve">
    <value>Operation could destabilize the runtime.</value>
  </data>
  <data name="Word_At" xml:space="preserve">
    <value>at</value>
  </data>
  <data name="DebugAssertBanner" xml:space="preserve">
    <value>---- DEBUG ASSERTION FAILED ----</value>
  </data>
  <data name="DebugAssertLongMessage" xml:space="preserve">
    <value>---- Assert Long Message ----</value>
  </data>
  <data name="DebugAssertShortMessage" xml:space="preserve">
    <value>---- Assert Short Message ----</value>
  </data>
  <data name="LockRecursionException_ReadAfterWriteNotAllowed" xml:space="preserve">
    <value>A read lock may not be acquired with the write lock held in this mode.</value>
  </data>
  <data name="LockRecursionException_RecursiveReadNotAllowed" xml:space="preserve">
    <value>Recursive read lock acquisitions not allowed in this mode.</value>
  </data>
  <data name="LockRecursionException_RecursiveWriteNotAllowed" xml:space="preserve">
    <value>Recursive write lock acquisitions not allowed in this mode.</value>
  </data>
  <data name="LockRecursionException_RecursiveUpgradeNotAllowed" xml:space="preserve">
    <value>Recursive upgradeable lock acquisitions not allowed in this mode.</value>
  </data>
  <data name="LockRecursionException_WriteAfterReadNotAllowed" xml:space="preserve">
    <value>Write lock may not be acquired with read lock held. This pattern is prone to deadlocks. Please ensure that read locks are released before taking a write lock. If an upgrade is necessary, use an upgrade lock in place of the read lock.</value>
  </data>
  <data name="SynchronizationLockException_MisMatchedUpgrade" xml:space="preserve">
    <value>The upgradeable lock is being released without being held.</value>
  </data>
  <data name="SynchronizationLockException_MisMatchedRead" xml:space="preserve">
    <value>The read lock is being released without being held.</value>
  </data>
  <data name="SynchronizationLockException_IncorrectDispose" xml:space="preserve">
    <value>The lock is being disposed while still being used. It either is being held by a thread and/or has active waiters waiting to acquire the lock.</value>
  </data>
  <data name="LockRecursionException_UpgradeAfterReadNotAllowed" xml:space="preserve">
    <value>Upgradeable lock may not be acquired with read lock held.</value>
  </data>
  <data name="LockRecursionException_UpgradeAfterWriteNotAllowed" xml:space="preserve">
    <value>Upgradeable lock may not be acquired with write lock held in this mode. Acquiring Upgradeable lock gives the ability to read along with an option to upgrade to a writer.</value>
  </data>
  <data name="SynchronizationLockException_MisMatchedWrite" xml:space="preserve">
    <value>The write lock is being released without being held.</value>
  </data>
</root>