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

Strings.resx « Resources « src « System.Private.CoreLib « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f161741e3e3a34ba18609f8daeb2af46bf6eda60 (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
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!--
    Microsoft ResX Schema

    Version 2.0

    The primary goals of this format is to allow a simple XML format
    that is mostly human readable. The generation and parsing of the
    various data types are done through the TypeConverter classes
    associated with the data types.

    Example:

    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>

    There are any number of "resheader" rows that contain simple
    name/value pairs.

    Each data row contains a name, and value. The row also contains a
    type or mimetype. Type corresponds to a .NET class that support
    text/value conversion through the TypeConverter architecture.
    Classes that don't support this are serialized and stored with the
    mimetype set.

    The mimetype is used for serialized objects, and tells the
    ResXResourceReader how to depersist the object. This is currently not
    extensible. For a given mimetype the value must be set accordingly:

    Note - application/x-microsoft.net.object.binary.base64 is the format
    that the ResXResourceWriter will generate, however the reader can
    read any of the formats listed below.

    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.

    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <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="AmbiguousImplementationException_NullMessage" xml:space="preserve">
    <value>Ambiguous implementation found.</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_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_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_BadImageFormatException" xml:space="preserve">
    <value>Format of the executable (.exe) or library (.dll) is invalid.</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_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_CannotMixComparisonInfrastructure" xml:space="preserve">
    <value>The usage of IKeyComparer and IHashCodeProvider/IComparer interfaces cannot be mixed; use one or the other.</value>
  </data>
  <data name="Arg_CopyNonBlittableArray" xml:space="preserve">
    <value>Arrays must contain only blittable data in order to be copied to unmanaged memory.</value>
  </data>
  <data name="Arg_CopyOutOfRange" xml:space="preserve">
    <value>Requested range extends past the end of the array.</value>
  </data>
  <data name="Arg_CryptographyException" xml:space="preserve">
    <value>Error occurred during a cryptographic operation.</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_DirectoryNotFoundException" xml:space="preserve">
    <value>Attempted to access a path that is not on the disk.</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_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_DlgtTypeMis" xml:space="preserve">
    <value>Delegates must be of the same type.</value>
  </data>
  <data name="Arg_DuplicateWaitObjectException" xml:space="preserve">
    <value>Duplicate objects in argument.</value>
  </data>
  <data name="Arg_EHClauseNotFilter" xml:space="preserve">
    <value>This ExceptionHandlingClause is not a filter.</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_EntryPointNotFoundException" xml:space="preserve">
    <value>Entry point was not found.</value>
  </data>
  <data name="Arg_EntryPointNotFoundExceptionParameterized" xml:space="preserve">
    <value>Unable to find an entry point named '{0}' in DLL '{1}'.</value>
  </data>
  <data name="Arg_EnumIllegalVal" xml:space="preserve">
    <value>Illegal enum value: {0}.</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_FormatException" xml:space="preserve">
    <value>One of the identified items was in an invalid format.</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_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_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_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_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_InvalidOperationException" xml:space="preserve">
    <value>Operation is not valid due to the current state of the object.</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_InvalidRuntimeTypeHandle" xml:space="preserve">
    <value>Invalid RuntimeTypeHandle.</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_KeyNotFoundWithKey" xml:space="preserve">
    <value>The given key '{0}' was not present in the dictionary.</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_MissingFieldException" xml:space="preserve">
    <value>Attempted to access a non-existing field.</value>
  </data>
  <data name="Arg_MethodAccessException" xml:space="preserve">
    <value>Attempt to access the method failed.</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_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_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_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_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_NeedAtLeast1Rank" xml:space="preserve">
    <value>Must provide at least one rank.</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_NegativeArgCount" xml:space="preserve">
    <value>Argument count must not be negative.</value>
  </data>
  <data name="Arg_NotFiniteNumberException" xml:space="preserve">
    <value>Arg_NotFiniteNumberException = Number encountered was not a finite quantity.</value>
  </data>
  <data name="Arg_NonZeroLowerBound" xml:space="preserve">
    <value>The lower bound of target array must be zero.</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_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_NotSupportedNonZeroLowerBound" xml:space="preserve">
    <value>Arrays with non-zero lower bounds are not supported.</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_ObjObjEx" xml:space="preserve">
    <value>Object of type '{0}' cannot be converted to type '{1}'.</value>
  </data>
  <data name="Arg_OverflowException" xml:space="preserve">
    <value>Arithmetic operation resulted in an overflow.</value>
  </data>
  <data name="Arg_OutOfMemoryException" xml:space="preserve">
    <value>Insufficient memory to continue the execution of the program.</value>
  </data>
  <data name="Arg_PlatformNotSupported" xml:space="preserve">
    <value>Operation is not supported on this platform.</value>
  </data>
  <data name="Arg_ParamName_Name" xml:space="preserve">
    <value>Parameter name: {0}</value>
  </data>
  <data name="Arg_PathEmpty" xml:space="preserve">
    <value>The path is empty.</value>
  </data>
  <data name="Arg_PathIllegalUNC_Path" xml:space="preserve">
    <value>The UNC path '{0}' should be of the form \\\\server\\share.</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_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_RegKeyNotFound" xml:space="preserve">
    <value>The specified registry key does not exist.</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_SecurityException" xml:space="preserve">
    <value>Security error.</value>
  </data>
  <data name="Arg_StackOverflowException" xml:space="preserve">
    <value>Operation caused a stack overflow.</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_DefaultValueMissingException" xml:space="preserve">
    <value>Missing parameter does not have a default value.</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_TypeLoadException" xml:space="preserve">
    <value>Failure has occurred while loading a type.</value>
  </data>
  <data name="Arg_UnauthorizedAccessException" xml:space="preserve">
    <value>Attempted to perform an unauthorized operation.</value>
  </data>
  <data name="Arg_VersionString" xml:space="preserve">
    <value>Version string portion was too short or too long.</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. Key: {0}</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_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_BadFormatSpecifier" xml:space="preserve">
    <value>Format specifier was invalid.</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_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_CultureInvalidIdentifier" xml:space="preserve">
    <value>{0} is an invalid culture identifier.</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_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_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_EmptyDecString" xml:space="preserve">
    <value>Decimal separator cannot be the empty string.</value>
  </data>
  <data name="Argument_EmptyName" xml:space="preserve">
    <value>Empty 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_ImplementIComparable" xml:space="preserve">
    <value>At least one object must implement IComparable.</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_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_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_InvalidEnumValue" xml:space="preserve">
    <value>The value '{0}' is not valid for this usage of the type {1}.</value>
  </data>
  <data name="Argument_InvalidFlag" xml:space="preserve">
    <value>Value of flags is invalid.</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_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_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_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 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_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_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_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_MustBeFalse" xml:space="preserve">
    <value>Argument must be initialized to false</value>
  </data>
  <data name="Argument_MustBeRuntimeType" xml:space="preserve">
    <value>Type must be a runtime Type object.</value>
  </data>
  <data name="Argument_NoEra" xml:space="preserve">
    <value>No Era was supplied.</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_NotIsomorphic" xml:space="preserve">
    <value>Object contains non-primitive or non-blittable data.</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_OffsetPrecision" xml:space="preserve">
    <value>Offset must be specified in whole minutes.</value>
  </data>
  <data name="Argument_OffsetOutOfRange" xml:space="preserve">
    <value>Offset must be within plus or minus 14 hours.</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="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_Length" xml:space="preserve">
    <value>The specified length exceeds maximum capacity of SecureString.</value>
  </data>
  <data name="ArgumentOutOfRange_LengthTooLarge" xml:space="preserve">
    <value>The specified length exceeds the maximum value of {0}.</value>
  </data>
  <data name="ArgumentOutOfRange_NeedNonNegNum" xml:space="preserve">
    <value>Non-negative 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="Argument_InvalidTypeName" xml:space="preserve">
    <value>The name of the type is invalid.</value>
  </data>
  <data name="Argument_PathFormatNotSupported_Path" xml:space="preserve">
    <value>The format of the path '{0}' is not supported.</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_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_TimeSpanHasSeconds" xml:space="preserve">
    <value>The TimeSpan parameter cannot be specified more precisely than whole minutes.</value>
  </data>
  <data name="Argument_TimeZoneNotFound" xml:space="preserve">
    <value>The time zone ID '{0}' was not found on the local computer.</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_TransitionTimesAreIdentical" xml:space="preserve">
    <value>The DaylightTransitionStart property must not equal the DaylightTransitionEnd property.</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_WaitHandleNameTooLong" xml:space="preserve">
    <value>The name can be no more than {0} characters in length.</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_Dictionary" xml:space="preserve">
   <value>Dictionary cannot be null.</value>
  </data>
  <data name="ArgumentNull_Generic" xml:space="preserve">
    <value>Value 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_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_Waithandles" xml:space="preserve">
    <value>The waitHandles parameter cannot be null.</value>
  </data>
  <data name="ArgumentOutOfRange_AddValue" xml:space="preserve">
    <value>Value to add was out of range.</value>
  </data>
  <data name="ArgumentOutOfRange_ActualValue" xml:space="preserve">
    <value>Actual value was {0}.</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_BadHourMinuteSecond" xml:space="preserve">
    <value>Hour, Minute, and Second parameters describe an un-representable DateTime.</value>
  </data>
  <data name="ArgumentOutOfRange_BiggerThanCollection" xml:space="preserve">
    <value>Must be less than or equal to the size of the collection.</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_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_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_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_LengthGreaterThanCapacity" xml:space="preserve">
    <value>The length cannot be greater than the capacity.</value>
  </data>
  <data name="ArgumentOutOfRange_ListInsert" xml:space="preserve">
    <value>Index must be within the bounds of the List.</value>
  </data>
  <data name="ArgumentOutOfRange_ListItem" xml:space="preserve">
    <value>Index was out of range. Must be non-negative and less than the size of the list.</value>
  </data>
  <data name="ArgumentOutOfRange_ListRemoveAt" xml:space="preserve">
    <value>Index was out of range. Must be non-negative and less than the size 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_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_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_NoGCLohSizeGreaterTotalSize" xml:space="preserve">
    <value>lohSize can't be greater than totalSize</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_PartialWCHAR" xml:space="preserve">
    <value>Pointer startIndex and length do not refer to a valid string.</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_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="BadImageFormatException_CouldNotLoadFileOrAssembly" xml:space="preserve">
    <value>Could not load file or assembly '{0}'. An attempt was made to load a program with an incorrect format.</value>
  </data>
  <data name="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="Exception_EndOfInnerExceptionStack" xml:space="preserve">
    <value>--- End of inner exception stack trace ---</value>
  </data>
  <data name="Exception_WasThrown" xml:space="preserve">
    <value>Exception of type '{0}' was thrown.</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_BadFormatSpecifier" xml:space="preserve">
    <value>Format specifier '{0}' was invalid.</value>
  </data>
  <data name="Format_NoFormatSpecifier" xml:space="preserve">
    <value>No format specifiers were provided.</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_EmptyInputString" xml:space="preserve">
    <value>Input string was either empty or contained only whitespace.</value>
  </data>
  <data name="Format_GuidHexPrefix" xml:space="preserve">
    <value>Expected hex 0x in '{0}'.</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_GuidInvalidChar" xml:space="preserve">
    <value>Guid string should only contain hexadecimal characters.</value>
  </data>
  <data name="Format_GuidBrace" xml:space="preserve">
    <value>Expected {0xdddddddd, 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_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_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_ExtraJunkAtEnd" xml:space="preserve">
    <value>Additional non-parsable characters are at the end of the string.</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_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_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_BadTimeSpan" xml:space="preserve">
    <value>String was not recognized as a valid TimeSpan.</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="InvalidCast_CannotCastNullToValueType" xml:space="preserve">
    <value>Null object cannot be converted to a value type.</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_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_StoreArrayElement" xml:space="preserve">
    <value>Object cannot be stored in an array of this type.</value>
  </data>
  <data name="InvalidOperation_Calling" xml:space="preserve">
    <value>WinRT Interop has already been initialized and cannot be initialized again.</value>
  </data>
  <data name="InvalidOperation_DateTimeParsing" xml:space="preserve">
    <value>Internal Error in DateTime and Calendar operations.</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_HandleIsNotInitialized" xml:space="preserve">
    <value>Handle is not initialized.</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_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_Overlapped_Pack" xml:space="preserve">
    <value>Cannot pack a packed Overlapped again.</value>
  </data>
  <data name="InvalidOperation_ReadOnly" xml:space="preserve">
    <value>Instance is read-only.</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_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_ArrayCreateInstance_NotARuntimeType" xml:space="preserve">
    <value>Array.CreateInstance() can only accept Type objects created by the runtime.</value>
  </data>
  <data name="InvalidOperation_TooEarly" xml:space="preserve">
    <value>Internal Error: This operation cannot be invoked in an eager class constructor.</value>
  </data>
  <data name="InvalidOperation_NullContext" xml:space="preserve">
    <value>Cannot call Set on a null context</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_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_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="InvalidProgram_Default" xml:space="preserve">
    <value>Common Language Runtime detected an invalid program.</value>
  </data>
  <data name="InvalidProgram_Specific" xml:space="preserve">
    <value>Common Language Runtime detected an invalid program. The body of method '{0}' is invalid.</value>
  </data>
  <data name="InvalidProgram_Vararg" xml:space="preserve">
    <value>Method '{0}' has a variable argument list. Variable argument lists are not supported in .NET Core.</value>
  </data>
  <data name="InvalidProgram_CallVirtFinalize" xml:space="preserve">
    <value>Object.Finalize() can not be called directly. It is only callable by the runtime.</value>
  </data>
  <data name="InvalidProgram_NativeCallable" xml:space="preserve">
    <value>NativeCallable method cannot be called from managed code.</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_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_InvalidJulianDay" xml:space="preserve">
    <value>Invalid Julian day in POSIX strings.</value>
  </data>
  <data name="InvalidTimeZone_NJulianDayNotSupported" xml:space="preserve">
    <value>Julian n day in POSIX strings is not supported.</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="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_FileExists_Name" xml:space="preserve">
    <value>The file '{0}' already exists.</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 load file or assembly '{0}'. The system cannot find the file specified.</value>
  </data>
  <data name="IO_FileLoad" xml:space="preserve">
    <value>Could not load the specified file.</value>
  </data>
  <data name="IO_FileLoad_FileName" xml:space="preserve">
    <value>Could not load the file '{0}'.</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_PathTooLong_Path" xml:space="preserve">
    <value>The path '{0}' is too long, or a component of the specified path is too long.</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_AlreadyExists_Name" xml:space="preserve">
    <value>Cannot create '{0}' because a file or directory with the same name already exists.</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="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="MissingConstructor_Name" xml:space="preserve">
    <value>Constructor on type '{0}' not found.</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="NotSupported_FixedSizeCollection" xml:space="preserve">
    <value>Collection was of a fixed size.</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_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_ReadOnlyCollection" xml:space="preserve">
    <value>Collection is read-only.</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_VoidArray" xml:space="preserve">
    <value>Arrays of System.Void are not supported.</value>
  </data>
  <data name="NotSupported_ByRefLike" xml:space="preserve">
    <value>Cannot create boxed ByRef-like values.</value>
  </data>
  <data name="NotSupported_Type" xml:space="preserve">
    <value>Type is not supported.</value>
  </data>
  <data name="NotSupported_WaitAllSTAThread" xml:space="preserve">
    <value>WaitAll for multiple handles on a STA thread is not supported.</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="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_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_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_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_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="Rank_MultiDimNotSupported" xml:space="preserve">
    <value>Only single dimension arrays are supported here.</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="SpinWait_SpinUntil_ArgumentNull" xml:space="preserve">
    <value>The condition argument is null.</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_InvalidData" xml:space="preserve">
    <value>An error occurred while deserializing the object.  The serialized data is corrupt.</value>
  </data>
  <data name="Serialization_InvalidEscapeSequence" xml:space="preserve">
    <value>The serialized data contained an invalid escape sequence '\\{0}'.</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="SpinWait_SpinUntil_TimeoutWrong" xml:space="preserve">
    <value>The timeout must represent a value between -1 and Int32.MaxValue, inclusive.</value>
  </data>
  <data name="Threading_AbandonedMutexException" xml:space="preserve">
    <value>The wait completed due to an abandoned mutex.</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="Threading_ThreadInterrupted" xml:space="preserve">
    <value>Thread was interrupted from a waiting state.</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="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="TypeInitialization_Type_NoTypeAvailable" xml:space="preserve">
    <value>A type initializer threw an exception. To determine which type, inspect the InnerException's StackTrace property.</value>
  </data>
  <data name="Verification_Exception" xml:space="preserve">
    <value>Operation could destabilize the runtime.</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="Format_InvalidEnumFormatSpecification" xml:space="preserve">
    <value>Format String can be only 'G', 'g', 'X', 'x', 'F', 'f', 'D' or 'd'.</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_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_MustBeType" xml:space="preserve">
    <value>Type must be a type provided by the runtime.</value>
  </data>
  <data name="Arg_MustContainEnumInfo" xml:space="preserve">
    <value>Must specify valid information for parsing in the string.</value>
  </data>
  <data name="Arg_EnumValueNotFound" xml:space="preserve">
    <value>Requested value '{0}' was not found.</value>
  </data>
  <data name="Argument_StringZeroLength" xml:space="preserve">
    <value>String cannot be of zero length.</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_LongEnvVarValue" xml:space="preserve">
    <value>Environment variable name or value is too long.</value>
  </data>
  <data name="Argument_IllegalEnvVarName" xml:space="preserve">
    <value>Environment variable name cannot contain equal character.</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="AssertionFailed" xml:space="preserve">
    <value>Assertion failed.</value>
  </data>
  <data name="AssertionFailed_Cnd" xml:space="preserve">
    <value>Assertion failed: {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="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="InvariantFailed" xml:space="preserve">
    <value>Invariant failed.</value>
  </data>
  <data name="InvariantFailed_Cnd" xml:space="preserve">
    <value>Invariant failed: {0}</value>
  </data>
  <data name="MissingEncodingNameResource" xml:space="preserve">
    <value>Could not find a resource entry for the encoding codepage '{0} - {1}'</value>
  </data>
  <data name="Globalization_cp_1200" xml:space="preserve">
    <value>Unicode</value>
  </data>
  <data name="Globalization_cp_1201" xml:space="preserve">
    <value>Unicode (Big-Endian)</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_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="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="InvalidCast_Empty" xml:space="preserve">
    <value>Object cannot be cast to Empty.</value>
  </data>
  <data name="Arg_UnknownTypeCode" xml:space="preserve">
    <value>Unknown TypeCode value.</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 '{0}' was not recognized as a valid DateTime.</value>
  </data>
  <data name="Format_BadDateTimeCalendar" xml:space="preserve">
    <value>The DateTime represented by the string '{0}' is not supported in calendar '{1}'.</value>
  </data>
  <data name="Format_BadDayOfWeek" xml:space="preserve">
    <value>String '{0}' was not recognized as a valid DateTime because the day of week was incorrect.</value>
  </data>
  <data name="Format_DateOutOfRange" xml:space="preserve">
    <value>The DateTime represented by the string '{0}' is out of range.</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 string '{0}'.</value>
  </data>
  <data name="Format_OffsetOutOfRange" xml:space="preserve">
    <value>The time zone offset of string '{0}' 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_UnknownDateTimeWord" xml:space="preserve">
    <value>The string '{0}' was not recognized as a valid DateTime. There is an unknown word starting at index '{1}'.</value>
  </data>
  <data name="Format_UTCOutOfRange" xml:space="preserve">
    <value>The UTC representation of the date '{0}' falls outside the year range 1-9999.</value>
  </data>
  <data name="RFLCT_Ambiguous" xml:space="preserve">
    <value>Ambiguous match found.</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_InnerException" xml:space="preserve">
    <value>(Inner Exception #{0}) </value>
    <comment>This text is prepended to each inner exception description during aggregate exception formatting</comment>
  </data>
  <data name="ArgumentOutOfRange_TimeoutTooLarge" xml:space="preserve">
    <value>Time-out interval must be less than 2^32-2.</value>
  </data>
  <data name="ArgumentOutOfRange_PeriodTooLarge" xml:space="preserve">
    <value>Period must be less than 2^32-2.</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_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_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="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_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_MultiTaskContinuation_EmptyTaskList" xml:space="preserve">
    <value>The tasks argument contains no tasks.</value>
  </data>
  <data name="Task_MultiTaskContinuation_NullTask" xml:space="preserve">
    <value>The tasks argument included a null value.</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_FromAsync_LongRunning" xml:space="preserve">
    <value>It is invalid to specify TaskCreationOptions.LongRunning in calls to FromAsync.</value>
  </data>
  <data name="AsyncMethodBuilder_InstanceNotInitialized" xml:space="preserve">
    <value>The builder was not properly initialized.</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="TaskT_DebuggerNoResult" xml:space="preserve">
    <value>{Not yet computed}</value>
  </data>
  <data name="OperationCanceled" xml:space="preserve">
    <value>The operation was canceled.</value>
  </data>
  <data name="CancellationToken_CreateLinkedToken_TokensIsEmpty" xml:space="preserve">
    <value>No tokens were supplied.</value>
  </data>
  <data name="CancellationTokenSource_Disposed" xml:space="preserve">
    <value>The CancellationTokenSource has been disposed.</value>
  </data>
  <data name="CancellationToken_SourceDisposed" xml:space="preserve">
    <value>The CancellationTokenSource associated with this CancellationToken has been disposed.</value>
  </data>
  <data name="TaskExceptionHolder_UnknownExceptionType" xml:space="preserve">
    <value>(Internal)Expected an Exception or an IEnumerable&lt;Exception&gt;</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="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_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_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_WaitMulti_NullTask" xml:space="preserve">
    <value>The tasks array included at least one null element.</value>
  </data>
  <data name="Task_ContinueWith_NotOnAnything" xml:space="preserve">
    <value>The specified TaskContinuationOptions excluded all continuation kinds.</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_ThrowIfDisposed" xml:space="preserve">
    <value>The task has been disposed.</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_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_Continuation" xml:space="preserve">
    <value>RunSynchronously may not be called on a continuation task.</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="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="Argument_MinMaxValue" xml:space="preserve">
    <value>'{0}' cannot be greater than {1}.</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="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="SpinLock_IsHeldByCurrentThread" xml:space="preserve">
    <value>Thread tracking is disabled.</value>
  </data>
  <data name="SpinLock_TryEnter_LockRecursionException" xml:space="preserve">
    <value>The calling thread already holds the lock.</value>
  </data>
  <data name="SpinLock_Exit_SynchronizationLockException" xml:space="preserve">
    <value>The calling thread does not hold 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="SpinLock_TryEnter_ArgumentOutOfRange" xml:space="preserve">
    <value>The timeout must be a value between -1 and Int32.MaxValue, inclusive.</value>
  </data>
  <data name="ManualResetEventSlim_Disposed" xml:space="preserve">
    <value>The event has been disposed.</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="InvalidOperation_SendNotSupportedOnWindowsRTSynchronizationContext" xml:space="preserve">
    <value>Send is not supported in the Windows Runtime SynchronizationContext</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="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_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="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="ThreadLocal_Value_RecursiveCallsToValue" xml:space="preserve">
    <value>ValueFactory attempted to access the Value property of this instance.</value>
  </data>
  <data name="ThreadLocal_Disposed" xml:space="preserve">
    <value>The ThreadLocal object has been disposed.</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="LockRecursionException_RecursiveWriteNotAllowed" xml:space="preserve">
    <value>Recursive write lock acquisitions not allowed in this mode.</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_RecursiveUpgradeNotAllowed" xml:space="preserve">
    <value>Recursive upgradeable lock acquisitions not allowed 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="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="SynchronizationLockException_MisMatchedWrite" xml:space="preserve">
    <value>The write lock is being released without being held.</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_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="InvalidOperation_TimeoutsNotSupported" xml:space="preserve">
    <value>Timeouts are not supported on this stream.</value>
  </data>
  <data name="NotSupported_UnreadableStream" xml:space="preserve">
    <value>Stream does not support reading.</value>
  </data>
  <data name="NotSupported_UnwritableStream" xml:space="preserve">
    <value>Stream does not support writing.</value>
  </data>
  <data name="ObjectDisposed_StreamClosed" xml:space="preserve">
    <value>Cannot access a closed Stream.</value>
  </data>
  <data name="NotSupported_SubclassOverride" xml:space="preserve">
    <value>Derived classes must provide an implementation.</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_NoPublicAddMethod" xml:space="preserve">
    <value>Cannot add the event handler since no public add method exists for the event.</value>
  </data>
  <data name="SerializationException" xml:space="preserve">
    <value>Serialization error.</value>
  </data>
  <data name="Serialization_NotFound" xml:space="preserve">
    <value>Member '{0}' was not found.</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="NotSupported_AbstractNonCLS" xml:space="preserve">
    <value>This non-CLS method is not implemented.</value>
  </data>
  <data name="NotSupported_NoTypeInfo" xml:space="preserve">
    <value>Cannot resolve {0} to a TypeInfo object.</value>
  </data>
  <data name="Arg_CustomAttributeFormatException" xml:space="preserve">
    <value>Binary format of the specified custom attribute was invalid.</value>
  </data>
  <data name="Argument_InvalidMemberForNamedArgument" xml:space="preserve">
    <value>The member must be either a field or a property.</value>
  </data>
  <data name="Arg_InvalidFilterCriteriaException" xml:space="preserve">
    <value>Specified filter criteria was invalid.</value>
  </data>
  <data name="Arg_ParmArraySize" xml:space="preserve">
    <value>Must specify one or more parameters.</value>
  </data>
  <data name="Arg_MustBePointer" xml:space="preserve">
    <value>Type must be a Pointer.</value>
  </data>
  <data name="Arg_InvalidHandle" xml:space="preserve">
    <value>Invalid handle.</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_MustHaveAttributeBaseClass" xml:space="preserve">
    <value>Type passed in must be derived from System.Attribute or System.Attribute itself.</value>
  </data>
  <data name="InvalidFilterCriteriaException_CritString" xml:space="preserve">
    <value>A String must be provided for the filter criteria.</value>
  </data>
  <data name="InvalidFilterCriteriaException_CritInt" xml:space="preserve">
    <value>An Int32 must be provided for the filter criteria.</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="PlatformNotSupported_ReflectionOnly" xml:space="preserve">
    <value>ReflectionOnly loading is 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_ReflectionEmit" xml:space="preserve">
    <value>Dynamic code generation is not supported on this platform.</value>
  </data>
  <data name="MissingMember_Name" xml:space="preserve">
    <value>Member '{0}' not found.</value>
  </data>
  <data name="MissingMethod_Name" xml:space="preserve">
    <value>Method '{0}' not found.</value>
  </data>
  <data name="MissingField_Name" xml:space="preserve">
    <value>Field '{0}' not found.</value>
  </data>
  <data name="Format_StringZeroLength" xml:space="preserve">
    <value>String cannot have zero length.</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_InvalidAssemblyPublicKey" xml:space="preserve">
    <value>Invalid assembly public key.</value>
  </data>
  <data name="Security_RegistryPermission" xml:space="preserve">
    <value>Requested registry access is not allowed.</value>
  </data>
  <data name="ClassLoad_General" xml:space="preserve">
    <value>Could not load type '{0}' from assembly '{1}'.</value>
  </data>
  <data name="ClassLoad_RankTooLarge" xml:space="preserve">
    <value>'{0}' from assembly '{1}' has too many dimensions.</value>
  </data>
  <data name="ClassLoad_ExplicitGeneric" xml:space="preserve">
    <value>Could not load type '{0}' from assembly '{1}' because generic types cannot have explicit layout.</value>
  </data>
  <data name="ClassLoad_BadFormat" xml:space="preserve">
    <value>Could not load type '{0}' from assembly '{1}' because the format is invalid.</value>
  </data>
  <data name="ClassLoad_ValueClassTooLarge" xml:space="preserve">
    <value>Array of type '{0}' from assembly '{1}' cannot be created because base value type is too large.</value>
  </data>
  <data name="ClassLoad_ExplicitLayout" xml:space="preserve">
    <value>Could not load type '{0}' from assembly '{1}' because it contains an object field at offset '{2}' that is incorrectly aligned or overlapped by a non-object field.</value>
  </data>
  <data name="EE_MissingMethod" xml:space="preserve">
    <value>Method not found: '{0}'.</value>
  </data>
  <data name="EE_MissingField" xml:space="preserve">
    <value>Field not found: '{0}'.</value>
  </data>
  <data name="UnauthorizedAccess_RegistryKeyGeneric_Key" xml:space="preserve">
    <value>Access to the registry key '{0}' is denied.</value>
  </data>
  <data name="UnknownError_Num" xml:space="preserve">
    <value>Unknown error '{0}'.</value>
  </data>
  <data name="Argument_NeedStructWithNoRefs" xml:space="preserve">
    <value>The specified Type must be a struct containing no references.</value>
  </data>
  <data name="ArgumentNull_Buffer" xml:space="preserve">
    <value>Buffer cannot be null.</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_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="Arg_BufferTooSmall" xml:space="preserve">
    <value>Not enough space available in the buffer.</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="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="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_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_OffsetAndCapacityOutOfBounds" xml:space="preserve">
    <value>Offset and capacity were greater than the size of the view.</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="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="ArgumentOutOfRange_StreamLength" xml:space="preserve">
    <value>Stream length must be non-negative and less than 2^31 - 1 - origin.</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="InvalidOperation_CalledTwice" xml:space="preserve">
    <value>The method cannot be called twice on the same instance.</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_SeekBeforeBegin" xml:space="preserve">
    <value>An attempt was made to move the position before the beginning of the stream.</value>
  </data>
  <data name="IO_StreamTooLong" xml:space="preserve">
    <value>Stream was too long.</value>
  </data>
  <data name="Arg_BadDecimal" xml:space="preserve">
    <value>Read an invalid decimal value from the buffer.</value>
  </data>
  <data name="NotSupported_Reading" xml:space="preserve">
    <value>Accessor does not support reading.</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_Writing" xml:space="preserve">
    <value>Accessor does not support writing.</value>
  </data>
  <data name="NotSupported_UnseekableStream" xml:space="preserve">
    <value>Stream does not support seeking.</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="ObjectDisposed_ViewAccessorClosed" xml:space="preserve">
    <value>Cannot access a closed accessor.</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="IO_EOF_ReadBeyondEOF" xml:space="preserve">
    <value>Unable to read beyond the end of the stream.</value>
  </data>
  <data name="Arg_EndOfStreamException" xml:space="preserve">
    <value>Attempted to read past the end of the stream.</value>
  </data>
  <data name="ObjectDisposed_FileClosed" xml:space="preserve">
    <value>Cannot access a closed file.</value>
  </data>
  <data name="Arg_InvalidSearchPattern" xml:space="preserve">
    <value>Search pattern '{0}' cannot contain ".." to move up directories and can be contained only internally in file/directory names, as in "a..b".</value>
  </data>
  <data name="ArgumentOutOfRange_FileLengthTooBig" xml:space="preserve">
    <value>Specified file length was too large for the file system.</value>
  </data>
  <data name="Argument_InvalidHandle" xml:space="preserve">
    <value>'handle' has been disposed or is an invalid handle.</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_PreAllocatedAlreadyAllocated" xml:space="preserve">
    <value>'preAllocated' is already in use.</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="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="ArgumentNull_Path" xml:space="preserve">
    <value>Path cannot be null.</value>
  </data>
  <data name="Argument_EmptyPath" xml:space="preserve">
    <value>Empty path name is not legal.</value>
  </data>
  <data name="Argument_InvalidFileModeAndAccessCombo" xml:space="preserve">
    <value>Combining FileMode: {0} with FileAccess: {1} is invalid.</value>
  </data>
  <data name="Argument_InvalidAppendMode" xml:space="preserve">
    <value>Append access can be requested only in write-only mode.</value>
  </data>
  <data name="IO_UnknownFileName" xml:space="preserve">
    <value>[Unknown]</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="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="IO_BindHandleFailed" xml:space="preserve">
    <value>BindHandle for ThreadPool failed on this handle.</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="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_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_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="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="Arg_ResourceFileUnsupportedVersion" xml:space="preserve">
    <value>The ResourceReader class does not know how to read this version of .resources files.</value>
  </data>
  <data name="Resources_StreamNotValid" xml:space="preserve">
    <value>Stream is not a valid resource file.</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="Argument_StreamNotReadable" xml:space="preserve">
    <value>Stream was not readable.</value>
  </data>
  <data name="BadImageFormat_NegativeStringLength" xml:space="preserve">
    <value>Corrupt .resources file. String length must be non-negative.</value>
  </data>
  <data name="BadImageFormat_ResourcesNameInvalidOffset" xml:space="preserve">
    <value>Corrupt .resources file. The Invalid offset into name section is .</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="BadImageFormat_ResourceNameCorrupted_NameIndex" xml:space="preserve">
    <value>Corrupt .resources file. The resource name for name index that extends past the end of the stream is </value>
  </data>
  <data name="BadImageFormat_ResourcesDataInvalidOffset" xml:space="preserve">
    <value>Corrupt .resources file. Invalid offset  into data section is </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="BadImageFormat_InvalidType" xml:space="preserve">
    <value>Corrupt .resources file.  The specified type doesn't exist.</value>
  </data>
  <data name="ResourceReaderIsClosed" xml:space="preserve">
    <value>ResourceReader is closed.</value>
  </data>
  <data name="Arg_MissingManifestResourceException" xml:space="preserve">
    <value>Unable to find manifest resource.</value>
  </data>
  <data name="Serialization_MissingKeys" xml:space="preserve">
    <value>The keys for this dictionary are missing.</value>
  </data>
  <data name="Serialization_NullKey" xml:space="preserve">
    <value>One of the serialized keys is null.</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_ValueCollectionSet" xml:space="preserve">
    <value>Mutating a value collection derived from a dictionary is not allowed.</value>
  </data>
  <data name="UnauthorizedAccess_MemStreamBuffer" xml:space="preserve">
    <value>MemoryStream's internal buffer cannot be accessed.</value>
  </data>
  <data name="NotSupported_MemStreamNotExpandable" xml:space="preserve">
    <value>Memory stream is not expandable.</value>
  </data>
  <data name="ArgumentNull_Stream" xml:space="preserve">
    <value>Stream cannot be null.</value>
  </data>
  <data name="IO_InvalidStringLen_Len" xml:space="preserve">
    <value>BinaryReader encountered an invalid string length of {0} characters.</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="Serialization_InsufficientDeserializationState" xml:space="preserve">
    <value>Insufficient state to deserialize the object. Missing field '{0}'.</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="Serialization_UnableToFindModule" xml:space="preserve">
    <value>The given module {0} cannot be found within the assembly {1}.</value>
  </data>
  <data name="Argument_InvalidUnity" xml:space="preserve">
    <value>Invalid Unity type.</value>
  </data>
  <data name="InvalidOperation_InvalidHandle" xml:space="preserve">
    <value>The handle is invalid.</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="InvalidOperation_EmptyQueue" xml:space="preserve">
    <value>Queue empty.</value>
  </data>
  <data name="Overflow_MutexReacquireCount" xml:space="preserve">
    <value>The current thread attempted to reacquire a mutex that has reached its maximum acquire count.</value>
  </data>
  <data name="Serialization_InsufficientState" xml:space="preserve">
    <value>Insufficient state to return the real object.</value>
  </data>
  <data name="Serialization_UnknownMember" xml:space="preserve">
    <value>Cannot get the member '{0}'.</value>
  </data>
  <data name="Serialization_NullSignature" xml:space="preserve">
    <value>The method signature cannot be null.</value>
  </data>
  <data name="Serialization_MemberTypeNotRecognized" xml:space="preserve">
    <value>Unknown member type.</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_NoParameterInfo" xml:space="preserve">
    <value>Serialized member does not have a ParameterInfo.</value>
  </data>
  <data name="ArgumentNull_Assembly" xml:space="preserve">
    <value>Assembly cannot be null.</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_InvalidSatelliteContract_Asm_Ver" xml:space="preserve">
    <value>Satellite contract version attribute on the assembly '{0}' specifies an invalid version: {1}.</value>
  </data>
  <data name="Arg_ResMgrNotResSet" xml:space="preserve">
    <value>Type parameter must refer to a subclass of ResourceSet.</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_ResourcesNameTooLong" xml:space="preserve">
    <value>Corrupt .resources file. Resource name extends past the end of the file.</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="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="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="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_ResourceObjectSerialization" xml:space="preserve">
    <value>Cannot read resources that depend on serialization.</value>
  </data>
  <data name="ObjectDisposed_ResourceSet" xml:space="preserve">
    <value>Cannot access a closed resource set.</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="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_ResourcesIndexTooLong" xml:space="preserve">
    <value>Corrupt .resources file. String for name index '{0}' extends past the end of the file.</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="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="Arg_MustBeDelegate" xml:space="preserve">
    <value>Type must derive from Delegate.</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_DelegateSerHolderSerial" xml:space="preserve">
    <value>DelegateSerializationHolder objects are designed to represent a delegate during serialization and are not serializable themselves.</value>
  </data>
  <data name="DelegateSer_InsufficientMetadata" xml:space="preserve">
    <value>The delegate cannot be serialized properly due to missing metadata for the target method.</value>
  </data>
  <data name="Argument_NoUninitializedStrings" xml:space="preserve">
    <value>Uninitialized Strings cannot be created.</value>
  </data>
  <data name="ArgumentOutOfRangeException_NoGCRegionSizeTooLarge" xml:space="preserve">
    <value>totalSize is too large. For more information about setting the maximum size, see \"Latency Modes\" in http://go.microsoft.com/fwlink/?LinkId=522706.</value>
  </data>
  <data name="InvalidOperationException_AlreadyInNoGCRegion" xml:space="preserve">
    <value>The NoGCRegion mode was already in progress.</value>
  </data>
  <data name="InvalidOperationException_NoGCRegionAllocationExceeded" xml:space="preserve">
    <value>Allocated memory exceeds specified memory for NoGCRegion mode.</value>
  </data>
  <data name="InvalidOperationException_NoGCRegionInduced" xml:space="preserve">
    <value>Garbage collection was induced in NoGCRegion mode.</value>
  </data>
  <data name="InvalidOperationException_NoGCRegionNotInProgress" xml:space="preserve">
    <value>NoGCRegion mode must be set.</value>
  </data>
  <data name="InvalidOperationException_SetLatencyModeNoGC" xml:space="preserve">
    <value>The NoGCRegion mode is in progress. End it and then set a different mode.</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="ThreadState_AlreadyStarted" xml:space="preserve">
    <value>Thread is running or terminated; it cannot restart.</value>
  </data>
  <data name="ThreadState_Dead_Priority" xml:space="preserve">
    <value>Thread is dead; priority cannot be accessed.</value>
  </data>
  <data name="ThreadState_Dead_State" xml:space="preserve">
    <value>Thread is dead; state cannot be accessed.</value>
  </data>
  <data name="ThreadState_NotStarted" xml:space="preserve">
    <value>Thread has not been started.</value>
  </data>
  <data name="ThreadState_SetPriorityFailed" xml:space="preserve">
    <value>Unable to set thread priority.</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="Acc_CreateAbst" xml:space="preserve">
    <value>Cannot create an abstract class.</value>
  </data>
  <data name="Acc_CreateGeneric" xml:space="preserve">
    <value>Cannot create a type for which Type.ContainsGenericParameters is true.</value>
  </data>
  <data name="Argument_InvalidValue" xml:space="preserve">
    <value>Value was invalid.</value>
  </data>
  <data name="NotSupported_ManagedActivation" xml:space="preserve">
    <value>Cannot create uninitialized instances of types requiring managed activation.</value>
  </data>
  <data name="PlatformNotSupported_ResourceManager_ResWFileUnsupportedMethod" xml:space="preserve">
    <value>ResourceManager method '{0}' is not supported when reading from .resw resource files.</value>
  </data>
  <data name="PlatformNotSupported_ResourceManager_ResWFileUnsupportedProperty" xml:space="preserve">
    <value>ResourceManager property '{0}' is not supported when reading from .resw resource files.</value>
  </data>
  <data name="Serialization_NonSerType" xml:space="preserve">
    <value>Type '{0}' in Assembly '{1}' is not marked as serializable.</value>
  </data>
  <data name="InvalidCast_DBNull" xml:space="preserve">
    <value>Object cannot be cast to DBNull.</value>
  </data>
  <data name="NotSupported_NYI" xml:space="preserve">
    <value>This feature is not currently implemented.</value>
  </data>
  <data name="Delegate_GarbageCollected" xml:space="preserve">
    <value>The corresponding delegate has been garbage collected. Please make sure the delegate is still referenced by managed code when you are using the marshalled native function pointer.</value>
  </data>
  <data name="Arg_AmbiguousMatchException" xml:space="preserve">
    <value>Ambiguous match found.</value>
  </data>
  <data name="NotSupported_ChangeType" xml:space="preserve">
    <value>ChangeType operation is not supported.</value>
  </data>
  <data name="Arg_EmptyArray" xml:space="preserve">
    <value>Array may not be empty.</value>
  </data>
  <data name="MissingMember" xml:space="preserve">
    <value>Member not found.</value>
  </data>
  <data name="MissingField" xml:space="preserve">
    <value>Field not found.</value>
  </data>
  <data name="InvalidCast_FromDBNull" xml:space="preserve">
    <value>Object cannot be cast from DBNull to other types.</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="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="PlatformNotSupported_Remoting" xml:space="preserve">
    <value>Remoting 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="Serialization_MissingDateTimeData" xml:space="preserve">
    <value>Invalid serialized DateTime data. Unable to find 'ticks' or 'dateData'.</value>
  </data>
  <data name="Serialization_MissingValues" xml:space="preserve">
    <value>The values for this dictionary are missing.</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="FeatureRemoved_Message" xml:space="preserve">
    <value>Code to support feature '{0}' was removed during publishing. If this is in error, update the project configuration to not disable feature '{0}'.</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_MustBeNullTerminatedString" xml:space="preserve">
    <value>The string must be null-terminated.</value>
  </data>
  <data name="PlatformNotSupported_ArgIterator" xml:space="preserve">
    <value>ArgIterator is not supported on this platform.</value>
  </data>
  <data name="Arg_TypeUnloadedException" xml:space="preserve">
    <value>Type had been unloaded.</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="PlatformNotSupported_SecureBinarySerialization" xml:space="preserve">
    <value>Secure binary serialization is not supported on this platform.</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_KeyValueDifferentSizes" xml:space="preserve">
    <value>The keys and values arrays have different sizes.</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_BadHexDigit" xml:space="preserve">
    <value>Bad Hexidecimal digit "{0}".</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_EvenHexDigits" xml:space="preserve">
    <value>Must have an even number of Hexidecimal digits.</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_EventTooBig" xml:space="preserve">
    <value>The payload for a single event is too large.</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_IllegalValue" xml:space="preserve">
    <value>Illegal value "{0}" (prefix strings with @ to indicate a literal string).</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} was assigned 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_TraitEven" xml:space="preserve">
    <value>There must be an even number of trait strings (they are key-value pairs).</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_UnknownEtwTrait" xml:space="preserve">
    <value>Unknown ETW trait "{0}".</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="Argument_StreamNotWritable" xml:space="preserve">
    <value>Stream was not writable.</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="CustomAttributeFormat_InvalidFieldFail" xml:space="preserve">
    <value>'{0}' field specified was not found.</value>
  </data>
  <data name="CustomAttributeFormat_InvalidPropertyFail" xml:space="preserve">
    <value>'{0}' property specified was not found.</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="Argument_DestinationTooShort" xml:space="preserve">
    <value>Destination is too short.</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_OverlapAlignmentMismatch" xml:space="preserve">
    <value>Overlapping spans have mismatching alignment.</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="Arg_DllNotFoundException" xml:space="preserve">
    <value>Dll was not found.</value>
  </data>
  <data name="Arg_DllNotFoundExceptionParameterized" xml:space="preserve">
    <value>Unable to load DLL '{0}': The specified module could not be found.</value>
  </data>
  <data name="Arg_DriveNotFoundException" xml:space="preserve">
    <value>Attempted to access a drive that is not available.</value>
  </data>
  <data name="WrongSizeArrayInNStruct" xml:space="preserve">
    <value>Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout.</value>
  </data>
  <data name="Arg_InteropMarshalUnmappableChar" xml:space="preserve">
    <value>Cannot marshal: Encountered unmappable character.</value>
  </data>
  <data name="Arg_MarshalDirectiveException" xml:space="preserve">
    <value>Marshaling directives are invalid.</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="Serialization_DelegatesNotSupported" xml:space="preserve">
    <value>Serializing delegates is not supported on this platform.</value>
  </data>
  <data name="Arg_OpenType" xml:space="preserve">
    <value>Cannot create an instance of {0} as it is an open type.</value>
  </data>
  <data name="Arg_PlatformNotSupported_AssemblyName_GetAssemblyName" xml:space="preserve">
    <value>AssemblyName.GetAssemblyName() is not supported on this platform.</value>
  </data>
  <data name="NotSupported_OpenType" xml:space="preserve">
    <value>Cannot create arrays of open type.</value>
  </data>
  <data name="NotSupported_ByRefLikeArray" xml:space="preserve">
    <value>Cannot create arrays of ByRef-like values.</value>
  </data>
  <data name="StackTrace_AtWord" xml:space="preserve">
    <value>   at </value>
  </data>
  <data name="StackTrace_EndStackTraceFromPreviousThrow" xml:space="preserve">
    <value>--- End of stack trace from previous location where exception was thrown ---</value>
  </data>
  <data name="InvalidAssemblyName" xml:space="preserve">
    <value>The given assembly name or codebase was invalid</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="InvalidOperation_NotGenericType" xml:space="preserve">
    <value>This operation is only valid on generic types.</value>
  </data>
  <data name="NotSupported_SignatureType" xml:space="preserve">
    <value>This method is not supported on signature types.</value>
  </data>
  <data name="MemoryDisposed" xml:space="preserve">
    <value>Memory&lt;T&gt; has been disposed.</value>
  </data>
  <data name="Memory_OutstandingReferences" xml:space="preserve">
    <value>Release all references before disposing this instance.</value>
  </data>
  <data name="HashCode_HashCodeNotSupported" xml:space="preserve">
    <value>HashCode is a mutable struct and should not be compared with other HashCodes. Use ToHashCode to retrieve the computed hash code.</value>
  </data>
  <data name="HashCode_EqualityNotSupported" xml:space="preserve">
    <value>HashCode is a mutable struct and should not be compared with other HashCodes.</value>
  </data>
  <data name="ObjectDisposed_WriterClosed" xml:space="preserve">
    <value>Cannot write to a closed TextWriter.</value>
  </data>
  <data name="ObjectDisposed_ReaderClosed" xml:space="preserve">
    <value>Cannot read from a closed TextReader.</value>
  </data>
  <data name="IO_InvalidReadLength" xml:space="preserve">
    <value>The read operation returned an invalid length.</value>
  </data>
  <data name="Arg_BasePathNotFullyQualified" xml:space="preserve">
    <value>Basepath argument is not fully qualified.</value>
  </data>
  <data name="Arg_ElementsInSourceIsGreaterThanDestination" xml:space="preserve">
    <value>Number of elements in source vector is greater than the destination array</value>
  </data>
  <data name="Arg_TypeNotSupported" xml:space="preserve">
    <value>Specified type is not supported</value>
  </data>
  <data name="Arg_NullArgumentNullRef" xml:space="preserve">
    <value>The method was called with a null array argument.</value>
  </data>
  <data name="Arg_InsufficientNumberOfElements" xml:space="preserve">
    <value>At least {0} element(s) are expected in the parameter "{1}".</value>
  </data>
  <data name="NullReference_InvokeNullRefReturned" xml:space="preserve">
    <value>The target method returned a null reference.</value>
  </data>
  <data name="InvalidOperation_ConcurrentOperationsNotSupported" xml:space="preserve">
    <value>Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection's state is no longer correct.</value>
  </data>
  <data name="Thread_Operation_RequiresCurrentThread" xml:space="preserve">
    <value>This operation must be performed on the same thread as that represented by the Thread instance.</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="Arg_WrongAsyncResult" xml:space="preserve">
    <value>IAsyncResult object did not come from the corresponding async method on this type.</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_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="ArgumentOutOfRange_Week_ISO" xml:space="preserve">
    <value>The week parameter must be in the range 1 through 53.</value>
  </data>
</root>