File: String.xml

package info (click to toggle)
monodoc 1.1.18-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 58,432 kB
  • ctags: 4,991
  • sloc: xml: 718,392; cs: 38,337; sh: 3,172; perl: 554; makefile: 303
file content (4191 lines) | stat: -rwxr-xr-x 197,699 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
<Type Name="String" FullName="System.String" FullNameSP="System_String" Maintainer="ecma">
  <TypeSignature Language="ILASM" Value=".class public sealed serializable String extends System.Object implements System.ICloneable, System.IComparable, System.Collections.IEnumerable" />
  <TypeSignature Language="C#" Value="public sealed class String : System.Collections.IEnumerable, System.ICloneable, System.IComparable, System.IConvertible" />
  <MemberOfLibrary>BCL</MemberOfLibrary>
  <AssemblyInfo>
    <AssemblyName>mscorlib</AssemblyName>
    <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
  </AssemblyInfo>
  <ThreadingSafetyStatement>This type is safe for multithreaded operations. </ThreadingSafetyStatement>
  <Docs>
    <summary>
      <para>Represents an immutable series of characters.</para>
    </summary>
    <remarks>
      <para>An <paramref name="index" /> is the position of a character within a
   string. The first character in the string is at index 0. The length of a string
   is the number of characters it is made up of. The last accessible <paramref name="index" />
   of a string
   instance is <see cref="P:System.String.Length" />
   - 1.</para>
      <para>Strings are immutable; once created, the contents of a
<see cref="T:System.String" /> do not change. Combining 
   operations, such as <see cref="M:System.String.Replace(System.Char,System.Char)" />, cannot alter existing strings.
   Instead, such operations return a new string that contains the results of the
   operation, an unchanged string, or the null value. To perform modifications to a
<see cref="T:System.String" /> use the 
<see cref="T:System.Text.StringBuilder" /> 
.</para>
      <para>Implementations of <see cref="T:System.String" /> are required to contain
a variable-length character buffer positioned a fixed number of bytes after
the beginning of the String object. <block subset="none" type="note"> The <see cref="P:System.Runtime.CompilerServices.RuntimeHelpers.OffsetToStringData" />
method returns
the number of bytes between the start of the String object and the character buffer. This
information is intended primarily for use by compilers, not application programmers. For additional information, see <see cref="P:System.Runtime.CompilerServices.RuntimeHelpers.OffsetToStringData" />
.</block></para>
      <block subset="none" type="note">
        <para>Comparisons and searches are case-sensitive by default
      and unless otherwise specified, use the culture defined for the current thread
      to determine the order of the alphabet used by the strings. This information is
      then used to compare the two strings on a character-by-character basis. Upper
      case letters evaluate greater than their lower case equivalents.</para>
        <para>The following characters are considered white space when present in a
      System.String instance: 0x9, 0xA, 0xB, 0xC, 0xD, 0x20, 0xA0, 0x2000, 0x2001,
      0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x200B,
      0x3000, and 0xFEFF.</para>
        <para>The null character is defined as hexadecimal 0x00.</para>
        <para>The <see cref="T:System.String" />(<see cref="T:System.String" />) constructor is
   omitted for performance reasons. If you need a copy of a <see cref="T:System.String" />, consider using
<see cref="M:System.String.Copy(System.String)" /> or 
   the <see cref="T:System.Text.StringBuilder" />
   class.</para>
        <para>To insert a formatted string representation of an object
   into a string use the <see cref="M:System.String.Format(System.String,System.Object)" /> methods.
   These methods take one or more arguments to be formatted and a format string.
   The format string contains literals and zero or more format
   specifications in the form { <paramref name="N" /> [, <paramref name="M" /> ][: <paramref name="formatSpecifier" />
   ]}, where:
   </para>
        <list type="bullet">
          <item>
            <term>
              <paramref name="N" /> is a zero-based integer 
      indicating the argument to be formatted. If the actual argument is a null
      reference, then an empty string is used in its place.</term>
          </item>
          <item>
            <term>
              <paramref name="M" /> is an optional integer
      indicating the minimum width of the region to contain the formatted value of
      argument <paramref name="N" />
      . If the length of
      the string representation of the value is less than <paramref name="M" />, then the
      region is padded with spaces. If <paramref name="M" /> is negative, the formatted value
      is left justified in the region; if <paramref name="M" /> is positive, then the value is right
      justified. If <paramref name="M" /> is
      not specified, it is assumed to be zero indicating that neither padding nor
      alignment is customized. Note that if the length of the formatted value is
      greater than <paramref name="M" />, then <paramref name="M" /> is ignored.</term>
          </item>
          <item>
            <term>
              <paramref name="formatSpecifier" /> is an
      optional string that determines the representation used for arguments.
      For example, an integer can be represented in hexadecimal or decimal format, or as a
      monetary value. If <paramref name="formatSpecifier" /> is
      omitted and an argument implements the <see cref="T:System.IFormattable" /> interface, then a null reference is
      used as the <see cref="M:System.IFormattable.ToString(System.String,System.IFormatProvider)" /> format specifier. Therefore, all implementations of
   <see cref="M:System.IFormattable.ToString(System.String,System.IFormatProvider)" /> are required to allow a null reference as
      a format specifier, and return a string containing the default representation
      of the object as determined by the object type. For additional information on
      format specifiers, see <see cref="T:System.IFormattable" />
      .</term>
          </item>
        </list>
        <para>If an object referenced in the format string implements
<see cref="T:System.IFormattable" />, 
   then the <see cref="M:System.IFormattable.ToString(System.String,System.IFormatProvider)" /> method of the object provides the formatting. If the
   argument does not implement <see cref="T:System.IFormattable" />, then the <see cref="M:System.Object.ToString" /> method of the object provides default
   formatting, and <paramref name="formatSpecifier" />
   , if present, is ignored.
   For an example that demonstrates this, see Example 2.</para>
        <para>To include a
   curly bracket in a formatted
   string, specify the bracket twice; for example, specify "{{" to
   include "{" in the formatted string. See Example 1.</para>
        <para>The <see cref="T:System.Console" /> class exposes the same functionality as the <see cref="M:System.String.Format(System.String,System.Object)" /> methods
via <see cref="M:System.Console.Write(System.String,System.Object)" /> and <see cref="M:System.Console.WriteLine" />. The primary difference is that the
<see cref="M:System.String.Format(System.String,System.Object)" /> 
methods return the formatted string, while the
System.Console methods write the formatted string to a stream.</para>
      </block>
    </remarks>
    <example>
      <para>Example 1</para>
      <para>The following example demonstrates formatting numeric
      data types and inserting literal curly brackets into strings.</para>
      <code lang="C#">using System;
class StringFormatTest {
    public static void Main() {
        decimal dec = 1.99999m;
        double doub = 1.0000000001;

        string somenums = String.Format("Some formatted numbers: dec={0,15:E} doub={1,20}", dec, doub);
        Console.WriteLine(somenums);

        string curlies = "Literal curly brackets: {{ and }} and {{0}}";
        Console.WriteLine(curlies);

        object nullObject = null;
        string embeddedNull = String.Format("A null argument looks like: {0}", nullObject);
        Console.WriteLine(embeddedNull);
    }
}
   </code>
      <para>The output is</para>
      <code>
Some formatted numbers: dec=  1.999990E+000 doub=        1.0000000001
Literal curly brackets: {{ and }} and {{0}}
A null argument looks like: 
 </code>
      <para>Example 2</para>
      <para>The following example demonstrates how formatting works if <see cref="T:System.IFormattable" /> is or is
   not implemented by an argument to the <see cref="M:System.String.Format(System.String,System.Object)" /> method. Note that the format specifier
   is ignored if the argument does not implement <see cref="T:System.IFormattable" />.</para>
      <code lang="C#">using System;
class StringFormatTest {
    public class DefaultFormatEleven {
        public override string ToString() {
            return "11 string";
        }
    }
    public class FormattableEleven:IFormattable {
        // The IFormattable ToString implementation.
        public string ToString(string format, IFormatProvider formatProvider) {
            Console.Write("[IFormattable called] ");
            return 11.ToString(format, formatProvider);
        }
        // Override Object.ToString to show that it is not called.
        public override string ToString() {
            return "Formatted 11 string";
        }
    }

    public static void Main() {
        DefaultFormatEleven def11 = new DefaultFormatEleven ();
         FormattableEleven for11 = new  FormattableEleven();
        string def11string = String.Format("{0}",def11);
        Console.WriteLine(def11string);
        // The format specifier x is ignored.
        def11string = String.Format("{0,15:x}", def11);
        Console.WriteLine(def11string);

        string form11string = String.Format("{0}",for11);
        Console.WriteLine(form11string );
        form11string = String.Format("{0,15:x}",for11);
        Console.WriteLine(form11string);
    }
}
</code>
      <para>The output is</para>
      <code>
11 string
      11 string
[IFormattable called] 11
[IFormattable called]               b
 </code>
    </example>
  </Docs>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>System.Collections.IEnumerable</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>System.ICloneable</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>System.IComparable</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>System.IConvertible</InterfaceName>
    </Interface>
  </Interfaces>
  <Attributes>
    <Attribute>
      <AttributeName>System.Reflection.DefaultMember("Chars")</AttributeName>
    </Attribute>
  </Attributes>
  <Members>
    <Member MemberName="Empty">
      <MemberSignature Language="ILASM" Value=".field public static initOnly string Empty" />
      <MemberSignature Language="C#" Value="public static readonly string Empty;" />
      <MemberType>Field</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para> A constant string representing the empty string.</para>
        </summary>
        <remarks>
          <para>This field is read-only.</para>
          <para>This field is a string of length zero, "".</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToString">
      <MemberSignature Language="ILASM" Value=".method public final hidebysig virtual string ToString(class System.IFormatProvider provider)" />
      <MemberSignature Language="C#" Value="public string ToString (IFormatProvider provider);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="provider" Type="System.IFormatProvider" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns this instance of <see langword="String" />; no
   actual conversion is performed.</para>
        </summary>
        <param name="provider">(Reserved) A <see cref="T:System.IFormatProvider" /> interface implementation which supplies culture-specific formatting information.</param>
        <returns>
          <para>This <see langword="String" />.</para>
        </returns>
        <remarks>
          <para>
            <paramref name="provider" /> is reserved, and does not
   currently participate in this operation.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Clone">
      <MemberSignature Language="ILASM" Value=".method public final hidebysig virtual object Clone()" />
      <MemberSignature Language="C#" Value="public object Clone ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Object</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Returns a reference to the current instance of <see cref="T:System.String" />.</para>
        </summary>
        <returns>
          <para>A reference to the current instance of <see cref="T:System.String" />.</para>
        </returns>
        <remarks>
          <block subset="none" type="note">
            <para>
              <see cref="M:System.String.Clone" /> does not generate a new <see cref="T:System.String" /> instance. Use the <see cref="M:System.String.Copy(System.String)" /> or <see cref="M:System.String.CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)" /> method to
      create a separate <see cref="T:System.String" /> object with the same
      value as the current instance.</para>
            <para>This method is implemented to support the <see cref="T:System.ICloneable" /> interface.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="CompareTo">
      <MemberSignature Language="ILASM" Value=".method public final hidebysig virtual int32 CompareTo(object value)" />
      <MemberSignature Language="C#" Value="public int CompareTo (object value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the sort order of the current instance compared 
      to the specified object.</para>
        </summary>
        <param name="value">The <see cref="T:System.Object" /> to compare to the current instance.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value
   that reflects the sort order of the current instance as compared to
<paramref name="value" /> 
. The following table defines the
conditions under which the returned value is a negative number, zero, or a positive
number.</para>
          <list type="table">
            <listheader>
              <term>Value</term>
              <description>Condition</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>The current instance is lexicographically &lt;
      <paramref name="value" />.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>The current instance is lexicographically ==
      <paramref name="value" />.</description>
            </item>
            <item>
              <term>
                <para> Any positive number</para>
              </term>
              <description>
                <para>The current instance is lexicographically &gt;
            <paramref name="value" />, or <paramref name="value" /> is a null
               reference.</para>
              </description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentException">
          <paramref name="value" /> is not a <see cref="T:System.String" />.</exception>
        <remarks>
          <para>
            <paramref name="value" /> is required to be a <see cref="T:System.String" />
object.</para>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the
   empty string) to a null reference is greater than zero. The result of comparing
   two null references is zero. Upper case letters evaluate greater than their
   lower case equivalents.</para>
            <para>The method uses the culture of the current thread to
   determine the ordering of individual characters. The two strings are compared on
   a character-by-character
   basis.</para>
            <para> This method is implemented to support the <see cref="T:System.IComparable" /> interface.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    
    <Member MemberName="GetHashCode">
      <MemberSignature Language="ILASM" Value=".method public hidebysig virtual int32 GetHashCode()" />
      <MemberSignature Language="C#" Value="public override int GetHashCode ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Generates a hash code for the current instance.</para>
        </summary>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing the hash code for this instance.</para>
        </returns>
        <remarks>
          <para> The algorithm used to
      generate the hash code is unspecified.</para>
          <para>
            <block subset="none" type="note"> This method
      overrides <see cref="M:System.Object.GetHashCode" />.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Equals">
      <MemberSignature Language="ILASM" Value=".method public hidebysig virtual bool Equals(object obj)" />
      <MemberSignature Language="C#" Value="public override bool Equals (object obj);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="obj" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Determines whether the current instance and the specified
      object have the
      same value.</para>
        </summary>
        <param name="obj">A <see cref="T:System.Object" />.</param>
        <returns>
          <para>
            <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.String" /> and its value is
   the same as the value of the current instance; otherwise,
<see langword="false" />.</para>
        </returns>
        <exception cref="T:System.NullReferenceException">The current instance is a null reference.</exception>
        <remarks>
          <para> This method checks for value equality. This comparison is case-sensitive.</para>
          <para>
            <block subset="none" type="note"> This method
      overrides <see cref="M:System.Object.Equals(System.Object)" /> .</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates checking to see if an object is equal to 
      the current instance.</para>
          <code lang="C#">using System;
public class StringEqualsExample {
 public static void Main() {
 string str = "A string";
 Console.WriteLine( "The given string is '{0}'", str );
 Console.Write( "The given string is equal to 'A string'? " );
 Console.WriteLine( str.Equals( "A string" ) );
 Console.Write( "The given string is equal to 'A String'? " );
 Console.WriteLine( str.Equals( "A String" ) );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>The given string is 'A string'</para>
            <para>The given string is equal to 'A string'? True</para>
            <para>The given string is equal to 'A String'? False</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToString">
      <MemberSignature Language="ILASM" Value=".method public hidebysig virtual string ToString()" />
      <MemberSignature Language="C#" Value="public override string ToString ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Returns a <see cref="T:System.String" /> representation of the value
   of the current instance.</para>
        </summary>
        <returns>
          <para>The current <see cref="T:System.String" />.</para>
        </returns>
        <remarks>
          <para>
            <block subset="none" type="note"> This method
      overrides <see cref="M:System.Object.ToString" />.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Join">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Join(string separator, class System.String[] value)" />
      <MemberSignature Language="C#" Value="public static string Join (string separator, string[] value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="separator" Type="System.String" />
        <Parameter Name="value" Type="System.String[]" />
      </Parameters>
      <Docs>
        <summary>
          <para> Concatenates the elements of a specified <see cref="T:System.String" /> array, inserting
   a separator string between each element pair and yielding
   a single concatenated string.</para>
        </summary>
        <param name="separator">A <see cref="T:System.String" />. </param>
        <param name="value">A <see cref="T:System.String" /> array. </param>
        <returns>
          <para> A <see cref="T:System.String" /> consisting of the elements of <paramref name="value" /> separated
   by instances of the <paramref name="separator" />
   string.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference. </exception>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Join(System.String,System.String[])" /> method.</para>
          <code lang="C#">using System;
public class StringJoin {
 public static void Main() {
 String[] strAry = { "Red" , "Green" , "Blue" };
 Console.WriteLine( String.Join( " :: ", strAry ) );
 }
}
</code>
          <para>The output is</para>
          <para>
            <c>Red :: Green
   :: Blue</c>
          </para>
        </example>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Join">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Join(string separator, class System.String[] value, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public static string Join (string separator, string[] value, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="separator" Type="System.String" />
        <Parameter Name="value" Type="System.String[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates a specified separator <see cref="T:System.String" />
between the elements of a
specified <see cref="T:System.String" />
array, yielding a
single concatenated string.</para>
        </summary>
        <param name="separator">A <see cref="T:System.String" />. </param>
        <param name="value">A <see cref="T:System.String" /> array. </param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the first array element in <paramref name="value" /> to join. </param>
        <param name="count">A <see cref="T:System.Int32" /> containing the number of elements in <paramref name="value" /> to join. </param>
        <returns>
          <para> A <see cref="T:System.String" /> consisting of the strings in <paramref name="value" /> joined by
<paramref name="separator" />. Returns <see cref="F:System.String.Empty" /> if <paramref name="count" /> is zero, <paramref name="value" /> has no
   elements, or <paramref name="separator" /> and all the elements of <paramref name="value" /> are
<see langword="Empty" />.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> plus <paramref name="count" /> is greater than the number of elements in <paramref name="value" />.</exception>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Join(System.String,System.String[])" /> method.</para>
          <code lang="C#">using System;
public class StringJoin {
 public static void Main() {
 String[] strAry = { "Red" , "Green" , "Blue" };
 Console.WriteLine( String.Join( " :: ", strAry, 1, 2 ) );
 }
}
</code>
          <para>The output is</para>
          <para>
            <c>Green ::
   Blue</c>
          </para>
        </example>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Equals">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static bool Equals(string a, string b)" />
      <MemberSignature Language="C#" Value="public static bool Equals (string a, string b);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="a" Type="System.String" />
        <Parameter Name="b" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Determines whether two specified <see cref="T:System.String" /> objects have the
   same value.</para>
        </summary>
        <param name="a">A <see cref="T:System.String" /> or a null reference.</param>
        <param name="b">A <see cref="T:System.String" /> or a null reference.</param>
        <returns>
          <para>
            <see langword="true " />if the value of <paramref name="a" /> is the
   same as the value of <paramref name="b" />; otherwise, <see langword="false" />.</para>
        </returns>
        <remarks>
          <para> The comparison
      is case-sensitive.</para>
        </remarks>
        <example>
          <para>The following example demonstrates checking to see if two strings are 
      equal.</para>
          <code lang="C#">using System;
public class StringEqualsExample {
 public static void Main() {
 string strA = "A string";
 string strB = "a string";
 string strC = "a string";
 Console.Write( "The string '{0}' is equal to the string '{1}'? ", strA, strB );
 Console.WriteLine( String.Equals( strA, strB ) );
 Console.Write( "The string '{0}' is equal to the string '{1}'? ", strC, strB );
 Console.WriteLine( String.Equals( strC, strB ) );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>The string 'A string' is equal to the string 'a string'? False</para>
            <para>The string 'a string' is equal to the string 'a string'? True</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="op_Equality">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static specialname bool op_Equality(string a, string b)" />
      <MemberSignature Language="C#" Value="public static bool op_Equality (string a, string b);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="a" Type="System.String" />
        <Parameter Name="b" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns a <see cref="T:System.Boolean" /> value indicating whether the two
   specified string values are equal to
   each other.</para>
        </summary>
        <altmember cref="M:System.String.Equals(System.Object)" />
        <param name="a">The first <see cref="T:System.String" /> to compare.</param>
        <param name="b">The second <see cref="T:System.String" /> to compare.</param>
        <returns>
          <para>
            <see langword="true" /> if <paramref name="a" /> and <paramref name="b" />
represent the same string value; otherwise, <see langword="false" />.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="op_Inequality">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static specialname bool op_Inequality(string a, string b)" />
      <MemberSignature Language="C#" Value="public static bool op_Inequality (string a, string b);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="a" Type="System.String" />
        <Parameter Name="b" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns a <see cref="T:System.Boolean" /> value indicating whether the two string
   values are not equal to
   each other.</para>
        </summary>
        <altmember cref="M:System.String.Equals(System.Object)" />
        <param name="a">The first <see cref="T:System.String" /> to compare.</param>
        <param name="b">The second <see cref="T:System.String" /> to compare.</param>
        <returns>
          <para>
            <see langword="true" /> if <paramref name="a" /> and <paramref name="b" /> do not
   represent the same string value; otherwise, <see langword="false" />.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="CopyTo">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance void CopyTo(int32 sourceIndex, class System.Char[] destination, int32 destinationIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public void CopyTo (int sourceIndex, char[] destination, int destinationIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="sourceIndex" Type="System.Int32" />
        <Parameter Name="destination" Type="System.Char[]" />
        <Parameter Name="destinationIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Copies a specified number of characters from a specified
      position in the current <see cref="T:System.String" />
      instance to
      a specified position in a specified array of Unicode characters.</para>
        </summary>
        <param name="sourceIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to copy.</param>
        <param name="destination">An array of Unicode characters.</param>
        <param name="destinationIndex">A <see cref="T:System.Int32" /> containing the index of an array element in <paramref name="destination" /> to copy.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the number of characters in the current instance to copy to <paramref name="destination" />.</param>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="destination" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="sourceIndex" />, <paramref name="destinationIndex" />, or <paramref name="count" /> is negative </para>
          <para>-or- </para>
          <para>
            <paramref name="count" /> is greater than the length of the substring from <paramref name="startIndex" /> to the end of the current instance </para>
          <para>-or- </para>
          <para>
            <paramref name="count" /> is greater than the length of the subarray from <paramref name="destinationIndex" /> to the end of <paramref name="destination" /></para>
        </exception>
        <example>
          <para>The following example demonstrates copying characters from a string to a 
      Unicode character array.</para>
          <code lang="C#">using System;
public class StringCopyToExample {
 public static void Main() {
 string str = "this is the new string";
 Char[] cAry = {'t','h','e',' ','o','l','d'};
 Console.WriteLine( "The initial string is '{0}'", str );
 Console.Write( "The initial character array is: '" );
 foreach( Char c in cAry)
 Console.Write( c );
 Console.WriteLine( "'" );
 str.CopyTo( 12, cAry, 4, 3 );
 Console.Write( "The character array after CopyTo is: '" );
 foreach( Char c in cAry)
 Console.Write( c );
 Console.WriteLine("'");
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>The initial string is 'this is the new string'</para>
            <para>The initial character array is: 'the old'</para>
            <para>The character array after CopyTo is: 'the new'</para>
          </c>
        </example>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToCharArray">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance class System.Char[] ToCharArray()" />
      <MemberSignature Language="C#" Value="public char[] ToCharArray ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Char[]</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Copies the characters in the current instance to a Unicode character array. </para>
        </summary>
        <returns>
          <para> A <see cref="T:System.Char" /> 
array whose elements are the individual characters of
the current instance. If the current instance is an empty string, the array returned by this method is empty
and has a zero length.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToCharArray">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance class System.Char[] ToCharArray(int32 startIndex, int32 length)" />
      <MemberSignature Language="C#" Value="public char[] ToCharArray (int startIndex, int length);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Char[]</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Copies the characters in a specified substring in the current instance to a Unicode character array. </para>
        </summary>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the start of a substring in the current instance. </param>
        <param name="length">A <see cref="T:System.Int32" /> containing the length of the substring in the current instance. </param>
        <returns>
          <para>A <see cref="T:System.Char" /> array whose elements are the
<paramref name="length" /> number of characters in the current instance, starting from the
   index <paramref name="startIndex" /> in the current instance. If the specified length is
   zero, the entire string is copied starting from the beginning of the current
   instance, and ignoring the value of <paramref name="startIndex" />. If the current instance
   is an empty string, the returned array is empty and has a zero length.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="length" /> is less than zero. </para>
          <para> -or- </para>
          <para>
            <paramref name="startIndex" /> plus <paramref name="length" /> is greater than the length of the current instance. </para>
        </exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Split">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance class System.String[] Split(class System.Char[] separator)" />
      <MemberSignature Language="C#" Value="public string[] Split (char[] separator);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String[]</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="separator" Type="System.Char[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para>Returns substrings of the current instance that are
      delimited by the specified characters.</para>
        </summary>
        <param name="separator">A <see cref="T:System.Char" /> array of delimiters. Can be a null reference.</param>
        <returns>
          <para>A <see cref="T:System.String" /> array containing the results of the split operation as
   follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A single-element array containing the
         current instance.</term>
              <description>None of the elements of <paramref name="separator" />
   are contained in the current instance.</description>
            </item>
            <item>
              <term> A
      multi-element <see cref="T:System.String" /> array, each element of which is a substring of the
      current instance that was delimited by one or more characters in
      <paramref name="separator." /></term>
              <description>At least one element of <paramref name="separator" /> is contained in the current
   instance.</description>
            </item>
            <item>
              <term>A multi-element <see cref="T:System.String" /> array, each
   element of which is a substring of the current instance that was delimited
   by white space characters.</term>
              <description>The current instance contains white space characters and
<paramref name="separator" /> is a null reference or an empty 
   array.</description>
            </item>
          </list>
        </returns>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is returned for any substring where two delimiters are
   adjacent or a delimiter is found at the beginning or end of the current
   instance.</para>
          <para>Delimiter characters are not included in the
   substrings.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Split">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance class System.String[] Split(class System.Char[] separator, int32 count)" />
      <MemberSignature Language="C#" Value="public string[] Split (char[] separator, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String[]</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="separator" Type="System.Char[]" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns substrings of the current instance that are delimited by the specified characters. </para>
        </summary>
        <param name="separator">An array of Unicode characters that delimit the substrings in the current instance, an empty array containing no delimiters, or a null reference.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the maximum number of array elements to return.</param>
        <returns>
          <para>A <see cref="T:System.String" /> array containing the results of the split operation as
   follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A single-element array containing the
         current instance.</term>
              <description>None of the elements of <paramref name="separator" /> are
      contained in the current instance.</description>
            </item>
            <item>
              <term> A
      multi-element <see cref="T:System.String" /> array, each element of
      which is a substring of the current instance that was delimited by one or
      more characters in <paramref name="separator" /></term>
              <description>At least one element of <paramref name="separator" /> is
   contained in the current instance.</description>
            </item>
            <item>
              <term> A
      multi-element <see cref="T:System.String" /> array, each element of
      which is a substring of the current instance that was delimited by white
      space characters.</term>
              <description>The current instance contains white space
      characters and <paramref name="separator" /> is a null reference or an empty
      array.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="count" /> is negative.</exception>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is returned for any substring where two delimiters are
   adjacent or a delimiter is found at the beginning or end of the current
   instance.</para>
          <para>Delimiter characters are not included in the
   substrings.</para>
          <para>If there are more substrings in the current instance than the
   maximum specified number, the first <paramref name="count" /> -1 elements of the array
   contain the first <paramref name="count" /> - 1 substrings. The remaining characters in the
   current instance are returned in the last element of the array.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Substring">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Substring(int32 startIndex)" />
      <MemberSignature Language="C#" Value="public string Substring (int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Retrieves a substring from the current instance, starting from a specified index.</para>
        </summary>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the start of the substring in the current instance.</param>
        <returns>
          <para>A <see cref="T:System.String" /> equivalent to the substring that begins at
<paramref name="startIndex" /> of the current 
   instance. Returns <see cref="F:System.String.Empty" />
   if <paramref name="startIndex" /> is equal to the length of the current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> is less than zero or greater than or equal to the length of the current instance.</exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Substring">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Substring(int32 startIndex, int32 length)" />
      <MemberSignature Language="C#" Value="public string Substring (int startIndex, int length);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Retrieves a substring from the current instance, starting from a specified index, continuing for a specified
      length.</para>
        </summary>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the start of the substring in the current instance.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters in the substring.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing the substring of the current instance with 
   the specified length that begins at the specified position. Returns <see cref="F:System.String.Empty" /> if <paramref name="startIndex" /> is equal to the length of
   the current instance and length is zero.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="length" /> is greater than the length of the current instance.</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.</para>
        </exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Trim">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Trim(class System.Char[] trimChars)" />
      <MemberSignature Language="C#" Value="public string Trim (char[] trimChars);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="trimChars" Type="System.Char[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para> Removes all occurrences of a set of characters provided
      in a character <see cref="T:System.Array" /> from the beginning and
      end of the current instance.</para>
        </summary>
        <param name="trimChars">An array of Unicode characters. Can be a null reference.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> equivalent to the current instance with the characters
   in <paramref name="trimChars" /> removed from its beginning and end. If <paramref name="trimChars" />
   is a null reference, all of the white space characters are removed from the
   beginning and end of
   the current instance.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="TrimStart">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string TrimStart(class System.Char[] trimChars)" />
      <MemberSignature Language="C#" Value="public string TrimStart (char[] trimChars);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="trimChars" Type="System.Char[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para> Removes all occurrences of a set of characters specified in a Unicode character array from the
      beginning of the current instance.</para>
        </summary>
        <param name="trimChars">An array of Unicode characters or a null reference.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> equivalent to the current instance with the characters
   in <paramref name="trimChars" /> removed from its beginning. If <paramref name="trimChars" /> is a
   null reference, white space
   characters are removed.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="TrimEnd">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string TrimEnd(class System.Char[] trimChars)" />
      <MemberSignature Language="C#" Value="public string TrimEnd (char[] trimChars);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="trimChars" Type="System.Char[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para> Removes all occurrences of a set of characters specified
      in a Unicode character <see cref="T:System.Array" /> from the
      end of the current instance.</para>
        </summary>
        <param name="trimChars">An array of Unicode characters. Can be a null reference.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> equivalent to the current instance with characters in
<paramref name="trimChars" /> removed from its end. If <paramref name="trimChars" /> is a null reference, white space
   characters are removed.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Compare">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 Compare(string strA, string strB)" />
      <MemberSignature Language="C#" Value="public static int Compare (string strA, string strB);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="strB" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Compares two <see cref="T:System.String" /> objects in a case sensitive manner.</para>
        </summary>
        <param name="strA">The first <see cref="T:System.String" /> to compare. Can be a null reference.</param>
        <param name="strB">The second <see cref="T:System.String" /> to compare. Can be a null reference.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of the
   two specified strings. The following table defines conditions under which the returned value is a negative number, zero, or a positive number.</para>
          <list type="table">
            <listheader>
              <term> Value</term>
              <description>Meaning</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>
                <paramref name="strA" /> is lexicographically &lt; <paramref name="strB" />,
      or <paramref name="strA" /> is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>
                <paramref name="strA" /> is lexicographically == <paramref name="strB" />,
   or both <paramref name="strA" /> and <paramref name="strB" /> are null references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>
                <paramref name="strA" /> is lexicographically &gt; <paramref name="strB" />,
   or <paramref name="strB" /> is a null reference.</description>
            </item>
          </list>
        </returns>
        <remarks>
          <para> This method performs a case-sensitive operation.</para>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the empty string) to a null
      reference is greater than zero. The
      result of comparing two null references is zero. Upper case letters evaluate
      greater than their lower case equivalents.</para>
            <para>The method uses the culture of the
      current thread to determine the ordering of individual characters. The two strings
      are compared on a character-by-character basis.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Compare">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 Compare(string strA, string strB, bool ignoreCase)" />
      <MemberSignature Language="C#" Value="public static int Compare (string strA, string strB, bool ignoreCase);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="ignoreCase" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns sort order of two <see cref="T:System.String" />
objects.</para>
        </summary>
        <param name="strA">The first <see cref="T:System.String" /> to compare. Can be a null reference.</param>
        <param name="strB">The second <see cref="T:System.String" /> to compare. Can be a null reference.</param>
        <param name="ignoreCase">A <see cref="T:System.Boolean" /> indicating whether the comparison is case-insensitive. If <paramref name="ignoreCase" /> is <see langword="true" />, the comparison is case-insensitive. If <paramref name="ignoreCase" /> is <see langword="false" />, the comparison is case-sensitive, and upper case letters evaluate greater than their lower case equivalents.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of the
   two specified strings. The following table defines the conditions under which
   the returned value is a negative number, zero, or a positive
   number.</para>
          <list type="table">
            <listheader>
              <term> Value</term>
              <description>Meaning</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>
                <paramref name="strA" /> is &lt; <paramref name="strB" />, or
   <paramref name="strA" /> is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>
                <paramref name="strA" /> == <paramref name="strB" />, or both <paramref name="strA" />
and <paramref name="strB" /> are null references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>
                <paramref name="strA" /> is &gt; <paramref name="strB" />, or <paramref name="strB" />
is a null reference.</description>
            </item>
          </list>
        </returns>
        <remarks>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the empty string) to a null
      reference is greater than zero. The
      result of comparing two null references is zero. Upper case letters evaluate
      greater than their lower case
      equivalents.</para>
            <para>The method uses the culture of the
      current thread to determine the ordering of individual characters. The two strings
      are compared on a character-by-character
      basis.</para>
            <para>
              <see langword="String.Compare" />(<paramref name="strA" />,
<paramref name="strB" />, 
<see langword="false" />) is equivalent to 
<see langword="String.Compare" />(<paramref name="strA" />, <paramref name="strB" /> 
).</para>
          </block>
        </remarks>
        <example>
          <para>The following example demonstrates comparing strings with and without case 
      sensitivity.</para>
          <code lang="C#">using System;
public class StringCompareExample {
 public static void Main() {
 string strA = "A STRING";
 string strB = "a string";
 int first = String.Compare( strA, strB, true );
 int second = String.Compare( strA, strB, false );
 Console.WriteLine( "When 'A STRING' is compared to 'a string' in a case-insensitive manner, the return value is {0}.", first );
 Console.WriteLine( "When 'A STRING' is compared to 'a string' in a case-sensitive manner, the return value is {0}.", second );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>When 'A STRING' is compared to 'a string' in a case-insensitive manner, the
         return value is 0.</para>
            <para>When 'A STRING' is compared to 'a string' in a case-sensitive manner, the
         return value is 1.</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Compare">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 Compare(string strA, int32 indexA, string strB, int32 indexB, int32 length)" />
      <MemberSignature Language="C#" Value="public static int Compare (string strA, int indexA, string strB, int indexB, int length);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="indexA" Type="System.Int32" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="indexB" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Compares substrings of two
      strings.</para>
        </summary>
        <param name="strA">The first <see cref="T:System.String" /> to compare.</param>
        <param name="indexA">A <see cref="T:System.Int32" /> containing the starting index of the substring within <paramref name="strA" />.</param>
        <param name="strB">The second <see cref="T:System.String" /> to compare.</param>
        <param name="indexB">A <see cref="T:System.Int32" /> containing the starting index of the substring within <paramref name="strB" />.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters in the substrings to compare. If <paramref name="length" /> is zero, then zero is returned.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of
   substrings of the two specified strings. The following table defines the
   conditions under which the returned value is a negative number, zero, or a positive
   number.</para>
          <list type="table">
            <listheader>
              <term> Value</term>
              <description>Meaning</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>The
         substring in <paramref name="strA" /> is &lt; the substring in <paramref name="strB" />, or
      <paramref name="strA" /> is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description> The
         substring in <paramref name="strA" /> ==
         the substring in <paramref name="strB" />, or both
      <paramref name="strA" /> and <paramref name="strB" /> are null references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>The
         substring in <paramref name="strA" /> is &gt; the substring in <paramref name="strB" />, or
      <paramref name="strB" /> is a null reference.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>The sum of <paramref name="indexA" /> and <paramref name="length" /> is greater than <paramref name="strA" /> .Length .</para>
          <para> -or-</para>
          <para>The sum of <paramref name="indexB" /> and <paramref name="length" /> is greater than <paramref name="strB" /> .Length .</para>
          <para> -or-</para>
          <para>
            <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative.</para>
        </exception>
        <remarks>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the empty string) to a null
      reference is greater than zero. The result of comparing two null references is
      zero. Upper case letters evaluate greater than their lower case
      equivalents.</para>
            <para>The method uses the culture of the current thread to
      determine the ordering of individual characters. The two strings are compared on a character-by-character
      basis.</para>
          </block>
        </remarks>
        <example>
          <para>The following example demonstrates comparing substrings.</para>
          <code lang="C#">using System;
public class StringCompareExample {
 public static void Main() {
 string strA = "A string";
 string strB = "B ring";
 int first = String.Compare( strA, 4, strB, 2, 3 );
 int second = String.Compare( strA, 3, strB, 3, 3 );
 Console.WriteLine( "When the substring 'rin' of 'A string' is compared to the substring 'rin' of 'B ring', the return value is {0}.", first );
 Console.WriteLine( "When the substring 'tri' of 'A string' is compared to the substring 'ing' of 'B ring', the return value is {0}.", second );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>When the substring 'rin' of 'A string' is compared to the substring 'rin' of
         'B ring', the return value is 0.</para>
            <para>When the substring 'tri' of 'A string' is compared to the substring 'ing' of
         'B ring', the return value is 1.</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Compare">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 Compare(string strA, int32 indexA, string strB, int32 indexB, int32 length, bool ignoreCase)" />
      <MemberSignature Language="C#" Value="public static int Compare (string strA, int indexA, string strB, int indexB, int length, bool ignoreCase);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="indexA" Type="System.Int32" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="indexB" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
        <Parameter Name="ignoreCase" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <param name="strA">The first <see cref="T:System.String" /> containing a substring to compare.</param>
        <param name="indexA">A <see cref="T:System.Int32" /> containing the starting index of the substring within <paramref name="strA" />.</param>
        <param name="strB">The second <see cref="T:System.String" /> containing a substring to compare.</param>
        <param name="indexB">A <see cref="T:System.Int32" /> containing the starting index of the substring within <paramref name="strB" />.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters in the substrings to compare. If <paramref name="length" /> is zero, then zero is returned.</param>
        <param name="ignoreCase">A <see cref="T:System.Boolean" /> indicating if the comparison is case-insensitive. If <paramref name="ignoreCase" /> is <see langword="true" />, the comparison is case-insensitive. If <paramref name="ignoreCase" /> is <see langword="false" />, the comparison is case-sensitive, and upper case letters evaluate greater than their lower case equivalents. </param>
        <summary>
          <para> Compares substrings of two strings.</para>
        </summary>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of
   substrings of the two specified strings. The following table defines the
   conditions under which the returned value is a negative number, zero, or a positive
   number.</para>
          <list type="table">
            <listheader>
              <term>Value Type</term>
              <description>Condition</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>The substring in <paramref name="strA" /> is &lt; the substring
      in <paramref name="strB" />, or <paramref name="strA" /> is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>The substring in <paramref name="strA" /> == 
   the substring in
<paramref name="strB" />, or both <paramref name="strA" /> and strB are null 
   references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>The substring in <paramref name="strA" /> is &gt; the substring
   in <paramref name="strB" />, or <paramref name="strB" /> is a null
   reference.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>The sum of <paramref name="indexA" /> and <paramref name="length" /> is greater than <paramref name="strA" /> .Length</para>
          <para> -or-</para>
          <para>The sum of <paramref name="indexB" /> and length is greater than <paramref name="strB" /> .Length</para>
          <para> -or-</para>
          <para>
            <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" /> is negative.</para>
        </exception>
        <remarks>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the
      empty string) to a null reference is greater than zero. The result of comparing
      two null references is zero. Upper case letters evaluate greater than their
      lower
      case
      equivalents.</para>
            <para>The method uses the culture of the current thread to
      determine the ordering of individual characters. The two strings are compared on
      a character-by-character
      basis.</para>
          </block>
        </remarks>
        <example>
          <para>The following example demonstrates comparing substrings with and without case 
      sensitivity.</para>
          <code lang="C#">using System;
public class StringCompareExample {
 public static void Main() {
 string strA = "STRING A";
 string strB = "string b";
 int first = String.Compare( strA, strB, true );
 int second = String.Compare( strA, 0, strB, 0, 4, true );
 int third = String.Compare( strA, 0, strB, 0, 4, false );
 Console.WriteLine( "When the string 'STRING A' is compared to the string 'string b' in a case-insensitive manner, the return value is {0}.", first );
 Console.WriteLine( "When the substring 'STRI' of 'STRING A' is compared to the substring 'stri' of 'string b' in a case-insensitive manner, the return value is {0}.", second );
 Console.WriteLine( "When the substring 'STRI' of 'STRING A' is compared to the substring 'stri' of 'string b' in a case-sensitive manner, the return value is {0}.", third );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>When the string 'STRING A' is compared to the string 'string b' in a
         case-insensitive manner, the return value is -1.</para>
            <para>When the substring 'STRI' of 'STRING A' is compared to the substring 'stri'
         of 'string b' in a case-insensitive manner, the return value is 0.</para>
            <para>When the substring 'STRI' of 'STRING A' is compared to the substring 'stri'
         of 'string b' in a case-sensitive manner, the return value is 1.</para>
          </c>
        </example>
        <param name="ignoreCase">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="CompareOrdinal">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 CompareOrdinal(string strA, string strB)" />
      <MemberSignature Language="C#" Value="public static int CompareOrdinal (string strA, string strB);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="strB" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Compares two specified <see cref="T:System.String" /> objects based
   on the code points of
   the contained Unicode characters.</para>
        </summary>
        <param name="strA">The first <see cref="T:System.String" /> to compare.</param>
        <param name="strB">The second <see cref="T:System.String" /> to compare.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of the
   two specified strings. The following table defines the conditions under which
   the returned value is a negative number, zero, or a positive number.</para>
          <list type="table">
            <listheader>
              <term>Permission</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>
                <paramref name="strA" /> is &lt; <paramref name="strB" />, or <paramref name="strA" />
   is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>
                <paramref name="strA" /> == <paramref name="strB" />, or both <paramref name="strA" />
and <paramref name="strB" /> are null references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>
                <paramref name="strA" /> is &gt; <paramref name="strB" />, or <paramref name="strB" />
is a null reference.</description>
            </item>
          </list>
        </returns>
        <remarks>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the
      empty string) to a null reference is greater than zero. The result of comparing
      two null references is zero. Upper case letters evaluate greater than
      their lower case equivalents.</para>
            <para>The method uses the culture of the current thread to
      determine the ordering of individual characters. The two strings are compared
      on a character-by-character basis.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="CompareOrdinal">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static int32 CompareOrdinal(string strA, int32 indexA, string strB, int32 indexB, int32 length)" />
      <MemberSignature Language="C#" Value="public static int CompareOrdinal (string strA, int indexA, string strB, int indexB, int length);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="indexA" Type="System.Int32" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="indexB" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Compares substrings of two specified <see cref="T:System.String" />
objects based
on
the code points of the contained Unicode characters.</para>
        </summary>
        <param name="strA">The first <see cref="T:System.String" /> to compare.</param>
        <param name="indexA">A <see cref="T:System.Int32" /> containing the starting index of the substring in <paramref name="strA" />.</param>
        <param name="strB">The second <see cref="T:System.String" /> to compare.</param>
        <param name="indexB">A <see cref="T:System.Int32" /> containing the starting index of the substring in <paramref name="strB" />.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters in the substrings to compare.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a value that reflects the sort order of the
   two specified strings. The following table defines the conditions under which
   the returned value is a negative number, zero, or a positive number.</para>
          <list type="table">
            <listheader>
              <term>Value Type</term>
              <description>Condition</description>
            </listheader>
            <item>
              <term> Any negative number</term>
              <description>The substring in <paramref name="strA" /> is &lt; the
      substring in <paramref name="strB" />, or <paramref name="strA" /> is a null reference.</description>
            </item>
            <item>
              <term> Zero</term>
              <description>The substring in <paramref name="strA" /> ==
   the substring in
<paramref name="strB" />, or both <paramref name="strA" /> and <paramref name="strB" /> are null 
   references.</description>
            </item>
            <item>
              <term> Any positive number</term>
              <description>The substring in <paramref name="strA" /> is &gt; the substring
   in <paramref name="strB" />, or <paramref name="strB" /> is a null
   reference.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para> The sum of <paramref name="indexA" /> and <paramref name="length" /> is greater than <paramref name="strA" /> .Length</para>
          <para> -or-</para>
          <para> The sum of <paramref name="indexB" /> and <paramref name="length" /> is greater than <paramref name="strB" /> .Length</para>
          <para> -or-</para>
          <para>
            <paramref name="indexA" />, <paramref name="indexB" />, or <paramref name="length" />is negative.</para>
        </exception>
        <remarks>
          <block subset="none" type="note">
            <para>The result of comparing any <see cref="T:System.String" /> (including the empty string) to a null reference is
      greater than zero. The result of comparing two null references is zero. Upper
      case letters evaluate greater than their lower case equivalents.</para>
            <para>The method uses the culture of the current thread to determine the ordering
      of individual characters. The two strings are compared on a
      character-by-character basis.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="EndsWith">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance bool EndsWith(string value)" />
      <MemberSignature Language="C#" Value="public bool EndsWith (string value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns a <see cref="T:System.Boolean" /> value that indicates whether the ending characters of the current
   instance match the specified <see cref="T:System.String" />.</para>
        </summary>
        <param name="value">A <see cref="T:System.String" /> to match.</param>
        <returns>
          <para>
            <see langword="true" /> if the end of the current instance
   is equal to <paramref name="value" />; <see langword="false" /> if <paramref name="value" /> is not
   equal to the end of the current instance or is longer than the
   current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <remarks>
          <para> This method compares <paramref name="value" />
with the substring at
the end of the current instance that has a same length as <paramref name="value." /></para>
          <para> The comparison
   is case-sensitive.</para>
        </remarks>
        <example>
          <para>The following example demonstrates determining whether the current instance 
      ends with a specified string.</para>
          <code lang="C#">using System;
public class StringEndsWithExample {
 public static void Main() {
 string str = "One string to compare";
 Console.WriteLine( "The given string is '{0}'", str );
 Console.Write( "The given string ends with 'compare'? " );
 Console.WriteLine( str.EndsWith( "compare" ) );
 Console.Write( "The given string ends with 'Compare'? " );
 Console.WriteLine( str.EndsWith( "Compare" ) );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>The given string is 'One string to compare'</para>
            <para>The given string ends with 'compare'? True</para>
            <para>The given string ends with 'Compare'? False</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(valuetype System.Char value)" />
      <MemberSignature Language="C#" Value="public int IndexOf (char value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of a specified
      Unicode character in the current instance.</para>
        </summary>
        <param name="value">A Unicode character.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a 
   positive value equal to the index of the first occurrence of <paramref name="value" />
   character in the current instance; otherwise, -1 if <paramref name="value" /> was not found.</para>
        </returns>
        <remarks>
          <para> This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(valuetype System.Char value, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int IndexOf (char value, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of a specified Unicode character
      in the current instance, with the search starting from a specified index.</para>
        </summary>
        <param name="value">A Unicode character.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <returns>
          <para> A <see cref="T:System.Int32" /> containing a
   positive value equal to the index of the first occurrence of
<paramref name="value" /> in the current instance; otherwise, -1 if <paramref name="value" /> was not found.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> is less than zero or greater than the length of the current instance.</exception>
        <remarks>
          <para> This method is case-sensitive. </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.IndexOf(System.Char)" /> 
method.</para>
          <code lang="C#">using System;
public class StringIndexOf {
 public static void Main() {
 String str = "This is the string";
 Console.WriteLine( "Searching for the index of 'h' starting from index 0 yields {0}.", str.IndexOf( 'h', 0 ) );
 Console.WriteLine( "Searching for the index of 'h' starting from index 10 yields {0}.", str.IndexOf( 'h', 10 ) );
 }
}
</code>
          <para>The output is</para>
          <c>
            <para>Searching for the index of 'h' starting from index 0 yields 1.</para>
            <para>Searching for the index of 'h' starting from index 10 yields -1.</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(valuetype System.Char value, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int IndexOf (char value, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the first occurrence of a specified Unicode character in the
      current instance, with the search over the specified range starting
      at the provided index.</para>
        </summary>
        <param name="value">A Unicode character.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
          <para> A <see cref="T:System.Int32" /> containing a 
   positive value equal to the index of
   the first occurrence of <paramref name="value" /> in the current instance; otherwise, -1 if
<paramref name="value" />
was not found.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is negative</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> + <paramref name="count" /> is greater than the length of the current instance.</para>
        </exception>
        <remarks>
          <para>The search begins at <paramref name="startIndex" /> and continues until
<paramref name="startIndex" /> + <paramref name="count" /> - 1 is reached. The character at 
<paramref name="startIndex" /> + <paramref name="count" /> is not included in the search.</para>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOfAny(class System.Char[] anyOf)" />
      <MemberSignature Language="C#" Value="public int IndexOfAny (char[] anyOf);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
      </Parameters>
      <Docs>
        <summary>
          <para>Reports the index of the first occurrence in the current
      instance of any character in a specified array of Unicode
      characters.</para>
        </summary>
        <param name="anyOf"> An array of Unicode characters.</param>
        <returns>
          <para>The index of the first occurrence of an element of <paramref name="anyOf" /> in the
   current instance; otherwise, -1 if no element of <paramref name="anyOf" /> was found.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference.</exception>
        <remarks>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOfAny(class System.Char[] anyOf, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int IndexOfAny (char[] anyOf, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of any element in a specified array
      of Unicode characters in the current instance, with the search starting from a
      specified index.</para>
        </summary>
        <param name="anyOf">An array of Unicode characters.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a positive value equal to the index of the
   first occurrence of an element of <paramref name="anyOf" /> in the current instance;
   otherwise, -1 if no element of <paramref name="anyOf" />
   was found.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> is greater than the length of the current instance</exception>
        <remarks>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOfAny(class System.Char[] anyOf, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int IndexOfAny (char[] anyOf, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of any element in a specified Array
      of Unicode characters in the current instance, with the search over the
      specified range starting from the provided index.</para>
        </summary>
        <param name="anyOf">An array containing the Unicode characters to seek.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing a positive value equal to the index of
   the first occurrence of an element of <paramref name="anyOf" /> in the current instance;
   otherwise, -1 if no element of <paramref name="anyOf" /> was found.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is negative.</para>
          <para>-or-</para>
          <para>
            <paramref name="startIndex" /> + <paramref name="count" /> is greater than the length of the current instance. </para>
        </exception>
        <remarks>
          <para>The search begins at <paramref name="startIndex" /> and continues
   until <paramref name="startIndex" /> + <paramref name="count" /> - <paramref name="1" />. The character at
<paramref name="startIndex" /> + <paramref name="count" /> is not included in the search.</para>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(string value)" />
      <MemberSignature Language="C#" Value="public int IndexOf (string value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of a specified
   <see cref="T:System.String" /> in the current instance.</para>
        </summary>
        <param name="value">The <see cref="T:System.String" /> to seek.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> that indicates the result of the search for
<paramref name="value" /> in the current instance as follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the first substring in
         the current instance that is equal to <paramref name="value" />
         
         .</term>
              <description>
                <paramref name="value" />
   was found.</description>
            </item>
            <item>
              <term> 
      0</term>
              <description>
                <paramref name="value" /> is equal to <see cref="F:System.String.Empty" /> .</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <remarks>
          <para> The search begins at the first character of the current instance. The search is
      case-sensitive, culture-sensitive, and the culture of the current thread
      is
      used.</para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.IndexOf(System.Char)" /> 
method.</para>
          <code lang="C#">using System;
public class StringIndexOf {
 public static void Main() {
 String str = "This is the string";
 Console.WriteLine( "Searching for the index of \"is\" yields {0,2}.", str.IndexOf( "is" ) );
 Console.WriteLine( "Searching for the index of \"Is\" yields {0,2}.", str.IndexOf( "Is" ) );
 Console.WriteLine( "Searching for the index of \"\" yields {0,2}.", str.IndexOf( "" ) );
 }
}
</code>
          <para>The output is</para>
          <c>
            <para>Searching for the index of "is" yields 2.</para>
            <para>Searching for the index of "Is" yields -1.</para>
            <para>Searching for the index of "" yields 0.</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(string value, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int IndexOf (string value, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of a specified
   <see cref="T:System.String" /> in the current instance, with
      the search starting from a specified index.</para>
        </summary>
        <param name="value">The <see cref="T:System.String" /> to seek.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> that indicates the result of the search for
<paramref name="value" /> in the current instance as follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the first substring in
         the current instance that is equal to <paramref name="value" />
         .</term>
              <description>
                <paramref name="value" /> was found.</description>
            </item>
            <item>
              <term>
                <paramref name="startIndex" />
              </term>
              <description>
                <paramref name="value" /> is <see langword="Empty" /> .</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> is greater than the length of the current instance.</para>
        </exception>
        <remarks>
          <para> This method is
      case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 IndexOf(string value, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int IndexOf (string value, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the first occurrence of a specified
   <see cref="T:System.String" /> in the current
      instance, with the search over the specified range starting at the provided index.</para>
        </summary>
        <param name="value">The <see cref="T:System.String" /> to seek.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> that indicates the result of the search for
<paramref name="value" /> in the current instance as follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the first substring in
         the current instance that is equal to <paramref name="value" />
         .</term>
              <description>
                <paramref name="value" /> was found.</description>
            </item>
            <item>
              <term>
                <paramref name="startIndex" />
              </term>
              <description>
                <paramref name="value" /> is <see langword="Empty" /> .</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is negative</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> + <paramref name="count" /> is greater than the length of the current instance.</para>
        </exception>
        <remarks>
          <para> The search begins at <paramref name="startIndex" /> and continues
   until <paramref name="startIndex" /> + <paramref name="count" /> - 1 is reached. The character at
<paramref name="startIndex" /> + <paramref name="count" /> is
   not included in the
   search.</para>
          <para> This method is
   case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(valuetype System.Char value)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (char value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of a specified character
      within the current instance.</para>
        </summary>
        <param name="value">The Unicode character to locate. </param>
        <returns>
          <para> A <see cref="T:System.Int32" /> containing the index of the last occurrence of <paramref name="value" />
in the current instance, if found; otherwise, -1.</para>
        </returns>
        <remarks>
          <para> This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(valuetype System.Char value, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (char value, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of a specified character within the current instance.</para>
        </summary>
        <param name="value">A Unicode character to locate.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index in the current instance from which to begin searching.</param>
        <returns>
          <para> A <see cref="T:System.Int32" /> containing the index of the last occurrence of <paramref name="value" /> in the current instance, if found; otherwise, -1.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> is less than zero or greater than the length of the current instance.</exception>
        <remarks>
          <para> This method searches for the last occurrence of the specified character between the start of the string and the indicated index.</para>
          <para>This method is case-sensitive.</para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.LastIndexOf(System.Char)" /> 
method.</para>
          <code lang="C#">using System;
public class StringLastIndexOfTest {
   public static void Main() {
      String str = "aa bb cc dd";
      
      Console.WriteLine( str.LastIndexOf('d', 8) );
      Console.WriteLine( str.LastIndexOf('b', 8) );
   }
}
</code>
          <para>The output is</para>
          <c>
            <para>-1</para>
            <para>4</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(valuetype System.Char value, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (char value, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Char" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of a specified character in the provided range of the current instance.</para>
        </summary>
        <param name="value">A Unicode character to locate.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
          <para> A <see cref="T:System.Int32" /> containing the index of the last occurrence of <paramref name="value" /> in the
   current instance if found between <paramref name="startIndex" /> and (<paramref name="startIndex" /> -
<paramref name="count" /> + 1); otherwise, -1.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is less than zero.</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> - <paramref name="count" /> is less than -1.</para>
        </exception>
        <remarks>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOfAny(class System.Char[] anyOf)" />
      <MemberSignature Language="C#" Value="public int LastIndexOfAny (char[] anyOf);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of any element of a specified array of characters in the current instance.</para>
        </summary>
        <param name="anyOf">An array of Unicode characters. </param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing the index of the last occurrence of any element of
<paramref name="anyOf" /> in the current instance, if found; otherwise, -1.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference. </exception>
        <remarks>
          <para> This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOfAny(class System.Char[] anyOf, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int LastIndexOfAny (char[] anyOf, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of any element of a specified array of characters in the current instance.</para>
        </summary>
        <param name="anyOf">An array of Unicode characters. </param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching. </param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing the index of the last occurrence of any element of <paramref name="anyOf" /> in the
   current instance, if found; otherwise, -1.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference.<paramref name="" /></exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> is less than zero or greater than or equal to the length of the current instance.</para>
        </exception>
        <remarks>
          <para> This method searches for the last occurrence of the specified
      characters between the start of the string and the indicated index.</para>
          <para>This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOfAny">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOfAny(class System.Char[] anyOf, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int LastIndexOfAny (char[] anyOf, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="anyOf" Type="System.Char[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns the index of the last occurrence of any of specified characters in the provided range of the current instance.</para>
        </summary>
        <param name="anyOf">An array of Unicode characters.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> containing the index of the last occurrence of any element of
<paramref name="anyOf" /> if found between <paramref name="startIndex" /> and (<paramref name="startIndex" /> -
<paramref name="count" /> + 1); otherwise, -1.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="anyOf" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is less than zero.</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> - <paramref name="count" /> is smaller than -1.</para>
        </exception>
        <remarks>
          <para>The search begins at <paramref name="startIndex" /> and continues
   until <paramref name="startIndex" /> - <paramref name="count" /> + 1. The character at
<paramref name="startIndex" /> - <paramref name="count" /> is not included 
   in the search.</para>
          <para> This
   method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(string value)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (string value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the last occurrence of a specified
   <see cref="T:System.String" /> within
      the current instance.</para>
        </summary>
        <param name="value">A <see cref="T:System.String" /> .</param>
        <returns>
   A <see cref="T:System.Int32" /> that indicates the result of the search for <paramref name="value" />
   in the current instance as follows:<list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the last substring in
         the current instance that is equal to <paramref name="value" />
         .</term>
              <description>
                <paramref name="value" /> was found.</description>
            </item>
            <item>
              <term> 0</term>
              <description>
                <paramref name="value" /> is
<see langword="Empty" />.</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list></returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <remarks>
          <para> The search is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(string value, int32 startIndex)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (string value, int startIndex);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="startIndex" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the last occurrence of a specified
   <see cref="T:System.String" />
   within the current instance.</para>
        </summary>
        <param name="value">A <see cref="T:System.String" /> .</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <returns>
          <para>A <see cref="T:System.Int32" /> that indicates the result of the search for <paramref name="value" />
in the current instance as follows:</para>
          <list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the last substring in
         the current instance that is equal to <paramref name="value" />
         .</term>
              <description>
                <paramref name="value" /> was found.</description>
            </item>
            <item>
              <term>
                <paramref name="startIndex" />
              </term>
              <description>
                <paramref name="value" /> is Empty.</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference. <paramref name="" /></exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="startIndex" /> is less than zero or greater than or equal to the length of the current instance. </exception>
        <remarks>
          <para> This method searches for the last occurrence of the
      specified <see cref="T:System.String" /> between the start of the string and the indicated index.</para>
          <para> This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="LastIndexOf">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance int32 LastIndexOf(string value, int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public int LastIndexOf (string value, int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Returns the index of the last occurrence of a specified
   <see cref="T:System.String" />
   in the provided range of
   the current instance.</para>
        </summary>
        <param name="value">The substring to search for.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start searching.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the range of the current instance at which to end searching.</param>
        <returns>
   A <see cref="T:System.Int32" /> that indicates the result of the search for <paramref name="value" />
   in the current instance as follows:<list type="table">
            <listheader>
              <term>Return Value</term>
              <description>Description</description>
            </listheader>
            <item>
              <term> A
         positive number equal to the index of the start of the last substring in
         the current instance that is equal to <paramref name="value" />
         .</term>
              <description>
                <paramref name="value" /> was found.</description>
            </item>
            <item>
              <term>
                <paramref name="startIndex" />
              </term>
              <description>
                <paramref name="value" /> is <see langword="Empty" /> .</description>
            </item>
            <item>
              <term> -1</term>
              <description>
                <paramref name="value" /> was not found.</description>
            </item>
          </list></returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value " />is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is less than zero.</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> - <paramref name="count" /> is smaller than -1.</para>
        </exception>
        <remarks>
          <para>The search begins at <paramref name="startIndex" /> and continues
   until <paramref name="startIndex" /> - <paramref name="count" />
   + 1.</para>
          <para> This method is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="PadLeft">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string PadLeft(int32 totalWidth)" />
      <MemberSignature Language="C#" Value="public string PadLeft (int totalWidth);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="totalWidth" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Right-aligns the characters in the current instance, padding with spaces on the left,
      for a specified total length.</para>
        </summary>
        <param name="totalWidth">A <see cref="T:System.Int32" /> containing the number of characters in the resulting string.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> that 
   is equivalent to the current instance right-aligned and padded on the left with as
   many spaces as needed to create a length of <paramref name="totalWidth" />. If <paramref name="totalWidth" /> is less than the length of the current instance, returns a new
<see cref="T:System.String" /> that is identical 
   to the current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentException">
          <paramref name="totalWidth " /> is less than zero.</exception>
        <remarks>
          <para>
            <block subset="none" type="note"> A space in Unicode
      format is defined as the hexadecimal value 0x20.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="PadLeft">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string PadLeft(int32 totalWidth, valuetype System.Char paddingChar)" />
      <MemberSignature Language="C#" Value="public string PadLeft (int totalWidth, char paddingChar);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="totalWidth" Type="System.Int32" />
        <Parameter Name="paddingChar" Type="System.Char" />
      </Parameters>
      <Docs>
        <summary>
          <para>Right-aligns the characters in the current instance, padding on the left with a specified
      Unicode character, for a specified total length.</para>
        </summary>
        <param name="totalWidth">A <see cref="T:System.Int32" /> containing the number of characters in the resulting string. </param>
        <param name="paddingChar">A <see cref="T:System.Char" /> that specifies the padding character to use.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> that is equivalent to the current instance right-aligned
   and padded on the left with as many <paramref name="paddingChar" /> characters as needed to
   create a length of <paramref name="totalWidth" /> . If <paramref name="totalWidth" /> is less than the length of the current
   instance, returns a new <see cref="T:System.String" /> that is identical
   to the current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentException">
          <paramref name="totalWidth" /> is less than zero.</exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="PadRight">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string PadRight(int32 totalWidth)" />
      <MemberSignature Language="C#" Value="public string PadRight (int totalWidth);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="totalWidth" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Left-aligns the characters in the current instance, padding with spaces on the right, for a
      specified total number of characters.</para>
        </summary>
        <param name="totalWidth">A <see cref="T:System.Int32" /> containing the number of characters in the resulting string.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> that is equivalent to this instance left aligned and
   padded on the right with as many spaces as needed to create a length of
<paramref name="totalWidth" />. If <paramref name="totalWidth" /> is less than the length of the current
   instance, returns a new <see cref="T:System.String" /> that is identical
   to the current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentException">
          <paramref name="totalWidth " />is less than zero.</exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="PadRight">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string PadRight(int32 totalWidth, valuetype System.Char paddingChar)" />
      <MemberSignature Language="C#" Value="public string PadRight (int totalWidth, char paddingChar);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="totalWidth" Type="System.Int32" />
        <Parameter Name="paddingChar" Type="System.Char" />
      </Parameters>
      <Docs>
        <summary>
          <para> Left-aligns the characters in the current instance, padding on the right with a specified Unicode character,
      for a specified total number of characters.</para>
        </summary>
        <param name="totalWidth">A <see cref="T:System.Int32" /> containing the number of characters in the resulting string. </param>
        <param name="paddingChar">A <see cref="T:System.Char" /> that specifies the padding character to use.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> that is equivalent to the current instance left aligned and
   padded on the right with as many <paramref name="paddingChar" /> characters as needed to
   create a length of <paramref name="totalWidth" />. If <paramref name="totalWidth" /> is less than the length of the current instance, returns a new
<see cref="T:System.String" /> that is identical 
   to the current instance.</para>
        </returns>
        <exception cref="T:System.ArgumentException">
          <paramref name="totalWidth" /> is less than zero.</exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="StartsWith">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance bool StartsWith(string value)" />
      <MemberSignature Language="C#" Value="public bool StartsWith (string value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns a <see cref="T:System.Boolean" /> value that indicates whether the start of the current instance
   matches the specified <see cref="T:System.String" />.</para>
        </summary>
        <param name="value">A <see cref="T:System.String" /> . </param>
        <returns>
          <para>
            <see langword="true" /> if the start of the current
   instance is equal to <paramref name="value" />; <see langword="false" /> if <paramref name="value" /> is
   not equal to the start of the current instance or is longer than the current
   instance.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference. </exception>
        <remarks>
          <para> This method compares <paramref name="value" /> with the substring
   at the start of the current instance that has a length of
<paramref name="value" />.Length. If <paramref name="value" />.Length is greater than the length of 
   the current instance or the relevant substring of the current instance is not
   equal to <paramref name="value" />, this method returns <see langword="false" />; otherwise,
   this method returns <see langword="true" />
   .
   </para>
          <para> The
   comparison is case-sensitive.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToLower">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string ToLower()" />
      <MemberSignature Language="C#" Value="public string ToLower ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Returns a copy of this <see cref="T:System.String" /> in lower case.</para>
        </summary>
        <returns>
          <para>A <see cref="T:System.String" /> in lower case..</para>
        </returns>
        <remarks>
          <para> This method takes into account the culture of the
      current
      thread.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="ToUpper">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string ToUpper()" />
      <MemberSignature Language="C#" Value="public string ToUpper ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Returns a copy of the current instance with all elements
      converted to
      upper case, using default properties.</para>
        </summary>
        <returns>
          <para>A new <see cref="T:System.String" /> 
in upper case.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Trim">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Trim()" />
      <MemberSignature Language="C#" Value="public string Trim ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para> Removes all occurrences of white space characters from the beginning and
      end of the current instance.</para>
        </summary>
        <returns>
          <para>A new <see cref="T:System.String" /> equivalent to the current instance after
   white space characters
   are removed from its
   beginning and end.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Insert">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Insert(int32 startIndex, string value)" />
      <MemberSignature Language="C#" Value="public string Insert (int startIndex, string value);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Returns a <see cref="T:System.String" /> equivalent to the current instance with a specified
<see cref="T:System.String" /> inserted at the specified position.</para>
        </summary>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the insertion. </param>
        <param name="value">The <see cref="T:System.String" /> to insert. </param>
        <returns>
          <para>A new <see cref="T:System.String" /> that is equivalent to the current string with
<paramref name="value" /> inserted at index <paramref name="startIndex." /></para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference. </exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> is greater than the length of the current instance. </para>
        </exception>
        <remarks>
          <para>In the new string returned by this method, the first
      character of <paramref name="value" /> is at <paramref name="startIndex," /> and all characters in the
      current string from <paramref name="startIndex" /> to the end are inserted in the new
      string after the last character of <paramref name="value" />.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Replace">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Replace(valuetype System.Char oldChar, valuetype System.Char newChar)" />
      <MemberSignature Language="C#" Value="public string Replace (char oldChar, char newChar);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="oldChar" Type="System.Char" />
        <Parameter Name="newChar" Type="System.Char" />
      </Parameters>
      <Docs>
        <summary>
          <para> Replaces all instances of a specified Unicode character
      with another specified Unicode character. </para>
        </summary>
        <param name="oldChar">The Unicode character to be replaced. </param>
        <param name="newChar">The Unicode character to replace all occurrences of <paramref name="oldChar" />. </param>
        <returns>
          <para> A <see cref="T:System.String" /> equivalent to the current instance with all occurrences of
<paramref name="oldChar" /> replaced with <paramref name="NewChar" />.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Replace">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Replace(string oldValue, string newValue)" />
      <MemberSignature Language="C#" Value="public string Replace (string oldValue, string newValue);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="oldValue" Type="System.String" />
        <Parameter Name="newValue" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces all instances of a specified substring within
      the current instance with another specified string. </para>
        </summary>
        <param name="oldValue">A <see cref="T:System.String" /> containing the string value to be replaced. </param>
        <param name="newValue">A <see cref="T:System.String" /> containing the string value to replace all occurrences of <paramref name="oldValue" />. Can be a null reference. </param>
        <returns>
          <para> A <see cref="T:System.String" /> equivalent to the current instance with all occurrences of
<paramref name="oldValue" /> replaced with <paramref name="newValue" />. If the replacement value is a 
   null reference, the specified substring is removed.</para>
        </returns>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Remove">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance string Remove(int32 startIndex, int32 count)" />
      <MemberSignature Language="C#" Value="public string Remove (int startIndex, int count);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Deletes a specified number of characters from the current
      instance beginning at a specified index.</para>
        </summary>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index of the current instance from which to start deleting characters.</param>
        <param name="count">A <see cref="T:System.Int32" /> containing the number of characters to delete.</param>
        <returns>
          <para> A new <see cref="T:System.String" /> that is equivalent to the current instance without the
   specified range characters.</para>
        </returns>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="count" /> is less than zero.</para>
          <para> -or-</para>
          <para>
            <paramref name="startIndex" /> plus <paramref name="count" /> is greater than the length of the current instance.</para>
        </exception>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Format">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Format(string format, object arg0)" />
      <MemberSignature Language="C#" Value="public static string Format (string format, object arg0);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="format" Type="System.String" />
        <Parameter Name="arg0" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces the format specification in a provided <see cref="T:System.String" /> with a specified
   textual equivalent of the value of a specified <see cref="T:System.Object" /> instance.</para>
        </summary>
        <param name="format">A <see cref="T:System.String" /> containing zero or more format specifications.</param>
        <param name="arg0">A <see cref="T:System.Object" /> to be formatted.</param>
        <returns>
          <para>A copy of <paramref name="format" /> in which the
   first format specification has been replaced by the formatted <see cref="T:System.String" /> equivalent of the
<paramref name="arg0" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="format " />or <paramref name="arg0" /> is a null reference.</exception>
        <exception cref="T:System.FormatException">
          <para>The format specification in <paramref name="format" /> is invalid.</para>
          <para> -or-</para>
          <para>The number indicating an argument to be formatted is less than zero, or greater than or equal to the number of provided objects to be formatted (1).</para>
        </exception>
        <remarks>
          <para>
            <block subset="none" type="note"> This version of
      <see cref="M:System.String.Format(System.String,System.Object)" /> is
      equivalent to <see langword="String.Format" />( <see langword="null" /> , <paramref name="format" />, <see langword="new Object" />[] {<paramref name="arg0" />} ). For more information on the format
      specification see the <see cref="T:System.String" /> class overview.</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</para>
          <code lang="C#">
using System;
public class StringFormat {
 public static void Main() {
 Console.WriteLine(String.Format("The high temperature today was {0:###} degrees.", 88));
 Console.WriteLine("The museum had {0,-6} visitors today.", 88);
 }
}
</code>
          <para>The output is</para>
          <code>
The high temperature today was 88 degrees.
The museum had 88     visitors today.
</code>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Format">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Format(string format, object arg0, object arg1)" />
      <MemberSignature Language="C#" Value="public static string Format (string format, object arg0, object arg1);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="format" Type="System.String" />
        <Parameter Name="arg0" Type="System.Object" />
        <Parameter Name="arg1" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces the format specification in a specified <see cref="T:System.String" /> with the textual equivalent of the value of two
   specified <see cref="T:System.Object" />
   instances.</para>
        </summary>
        <param name="format">A <see cref="T:System.String" /> containing zero or more format specifications.</param>
        <param name="arg0">A <see cref="T:System.Object" /> to be formatted. Can be a null reference.</param>
        <param name="arg1">A <see cref="T:System.Object" /> to be formatted. Can be a null reference.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing a copy of <paramref name="format" /> in which the format
   specifications have been replaced by the <see cref="T:System.String" /> equivalent of <paramref name="arg0" /> and
<paramref name="arg1" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="format" /> is a null reference.</exception>
        <exception cref="T:System.FormatException">
          <para>
            <paramref name="format" /> is invalid.</para>
          <para> -or-</para>
          <para>The number indicating an argument to be formatted is less than zero, or greater than or equal to the number of provided objects to be formatted (2).</para>
        </exception>
        <remarks>
          <para>If an object referenced in the format string is a null
      reference, an empty string is used in its place.</para>
          <para>
            <block subset="none" type="note"> This version of
      <see cref="M:System.String.Format(System.String,System.Object)" /> is
      equivalent to <see langword="String.Format" />( <see langword="null" />,
      <paramref name="format" />, <see langword="new Object[]" /> {<paramref name="arg0" />, <paramref name="arg1" />} ).
      For more information on the format specification see the <see cref="T:System.String" /> class
      overview.</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</para>
          <code lang="C#">using System;
public class StringFormat {
  public static void Main() {
  Console.WriteLine( String.Format("The temperature today oscillated between {0:####} and {1:####} degrees.", 78, 100) );
  Console.WriteLine( String.Format("The temperature today oscillated between {0:0000} and {1:0000} degrees.", 78, 100) );
  Console.WriteLine( "The temperature today oscillated between {0, -4} and {1, -4} degrees.", 78, 100 );
   }
}
</code>
          <para>The output is</para>
          <code>
The temperature today oscillated between 78 and 100 degrees.
The temperature today oscillated between 0078 and 0100 degrees.
The temperature today oscillated between 78   and 100  degrees.
</code>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Format">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Format(string format, object arg0, object arg1, object arg2)" />
      <MemberSignature Language="C#" Value="public static string Format (string format, object arg0, object arg1, object arg2);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="format" Type="System.String" />
        <Parameter Name="arg0" Type="System.Object" />
        <Parameter Name="arg1" Type="System.Object" />
        <Parameter Name="arg2" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces the format specification in a specified <see cref="T:System.String" /> with the textual
   equivalent of the value of three specified <see cref="T:System.Object" /> instances.</para>
        </summary>
        <param name="format">A <see cref="T:System.String" /> containing zero or more format specifications.</param>
        <param name="arg0">The first <see cref="T:System.Object" /> to be formatted. Can be a null reference.</param>
        <param name="arg1">The second <see cref="T:System.Object" /> to be formatted. Can be a null reference.</param>
        <param name="arg2">The third <see cref="T:System.Object" /> to be formatted. Can be a null reference.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing a copy of <paramref name="format" /> in which the first, second,
   and third format specifications have been replaced by the <see cref="T:System.String" /> equivalent of
<paramref name="arg0" />, <paramref name="arg1" />, and <paramref name="arg2" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="format" /> is a null reference.</exception>
        <exception cref="T:System.FormatException">
          <para>
            <paramref name="format" /> is invalid.</para>
          <para> -or-</para>
          <para>The number indicating an argument to be formatted is less than zero, or greater than or equal to the number of provided objects to be formatted (3).</para>
        </exception>
        <remarks>
          <para>If an object referenced in the format string is a null
      reference, an empty string is used in its place. </para>
          <para>
            <block subset="none" type="note"> This version of
      <see cref="M:System.String.Format(System.String,System.Object)" /> is
      equivalent to <see langword="String.Format" />( <see langword="null" />,
      <paramref name="format" />, <see langword="new Object[]" /> {<paramref name="arg0" />, <paramref name="arg1" />,
      <paramref name="arg2" />} ). For more information on the format specification see the
      <see cref="T:System.String" /> class
      overview.</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</para>
          <code lang="C#">
using System;
public class StringFormat {
   public static void Main() {
      Console.WriteLine(String.Format("The temperature today oscillated between {0:###} and {1:###} degrees. The average temperature  was {2:000} degrees.", 78, 100, 91));
      Console.WriteLine("The temperature today oscillated between {0, 4} and {1, 4} degrees. The average temperature was {2, 4}  degrees.", 78, 100, 91);
   }
}
</code>
          <para>The output is</para>
          <code>
The temperature today oscillated between 78 and 100 degrees. The average temperature was 091 degrees.
The temperature today oscillated between   78 and  100 degrees. The average temperature was   91 degrees.</code>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Format">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Format(string format, class System.Object[] args)" />
      <MemberSignature Language="C#" Value="public static string Format (string format, object[] args);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="format" Type="System.String" />
        <Parameter Name="args" Type="System.Object[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces the format specification in a specified <see cref="T:System.String" /> with the textual
   equivalent of the value of a corresponding <see cref="T:System.Object" /> instance in a specified array.</para>
        </summary>
        <param name="format">A <see cref="T:System.String" /> containing zero or more format specifications.</param>
        <param name="args">A <see cref="T:System.Object" /> array containing the objects to be formatted.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing a copy of <paramref name="format" /> in which the format
   specifications have been replaced by the <see cref="T:System.String" /> equivalent of the corresponding
   instances of <see cref="T:System.Object" /> in <paramref name="args" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="format" /> or <paramref name="args " />is a null reference.</exception>
        <exception cref="T:System.FormatException">
          <para>
            <paramref name="format" /> is invalid.</para>
          <para> -or-</para>
          <para>The number indicating an argument to be formatted is less than zero, or greater than or equal to the length of the <paramref name="args" /> array.</para>
        </exception>
        <remarks>
          <para>If an object referenced in the format string is a null
      reference, an empty string is used in its place. </para>
          <para>
            <block subset="none" type="note"> This version of
      <see cref="M:System.String.Format(System.String,System.Object)" /> is
      equivalent to <see cref="M:System.String.Format(System.String,System.Object)" />( null, <paramref name="format" />, <paramref name="args" /> ). For more
      information on the format specification see the <see cref="T:System.String" />
      class
      overview.</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</para>
          <code lang="C#">
using System;
public class StringFormat {
   public static void Main() {
      Console.WriteLine( String.Format("The winning numbers were {0:000} {1:000} {2:000} {3:000} {4:000} today.", 5, 10, 11, 37, 42) );
      Console.WriteLine( "The winning numbers were {0, -6}{1, -6}{2, -6}{3, -6}{4, -6} today.", 5, 10, 11, 37, 42 );
 }
}
</code>
          <para>The output is</para>
          <code>
The winning numbers were 005 010 011 037 042 today.
The winning numbers were 5     10    11    37    42     today.
</code>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Format">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Format(class System.IFormatProvider provider, string format, class System.Object[] args)" />
      <MemberSignature Language="C#" Value="public static string Format (IFormatProvider provider, string format, object[] args);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="provider" Type="System.IFormatProvider" />
        <Parameter Name="format" Type="System.String" />
        <Parameter Name="args" Type="System.Object[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para>Replaces the format specification in a specified <see cref="T:System.String" /> with the
   culture-specific textual equivalent of the value of a corresponding <see cref="T:System.Object" /> instance in a
   specified array. </para>
        </summary>
        <param name="provider">A <see cref="T:System.IFormatProvider" /> interface that supplies an object that provides culture-specific formatting information. Can be a null reference.</param>
        <param name="format">A <see cref="T:System.String" /> containing zero or more format specifications.</param>
        <param name="args">A <see cref="T:System.Object" /> array to be formatted.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing a copy of <paramref name="format" /> in which the format
   specifications have been replaced by the <see cref="T:System.String" /> equivalent of the corresponding
   instances of <see cref="T:System.Object" /> in <paramref name="args" /> .</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="format" /> or <paramref name="args" /> is a null reference.</exception>
        <exception cref="T:System.FormatException">
          <para>
            <paramref name="format" /> is invalid.</para>
          <para>-or-</para>
          <para>The number indicating an argument to be formatted (<paramref name="N" />) is less than zero, or greater than or equal to the length of the <paramref name="args" /> array.</para>
        </exception>
        <remarks>
          <para>If an object referenced in the format string is a null
      reference, an empty string is used in its place.</para>
          <para>The <paramref name="format" /> parameter string is embedded with
   zero or more format specifications of the form, {<paramref name="N" /> [, <paramref name="M" /> ][:
<paramref name="formatString" /> ]}, where <paramref name="N " />is a zero-based integer indicating 
   the argument to be formatted, <paramref name="M" /> is an optional integer indicating the
   width of the region to contain the formatted value, and <paramref name="formatString" /> is
   an optional string of formatting codes. <block subset="none" type="note">
   For more information on the format specification see the <see cref="T:System.String" /> class
   overview.</block></para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Copy">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Copy(string str)" />
      <MemberSignature Language="C#" Value="public static string Copy (string str);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="str" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Creates a new instance of <see cref="T:System.String" /> with the same value as a specified
   instance of <see cref="T:System.String" />.</para>
        </summary>
        <param name="str">The <see cref="T:System.String" /> to be copied.</param>
        <returns>
          <para>A new <see cref="T:System.String" /> with the same value as
<paramref name="str" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="str" /> is a null reference.</exception>
        <example>
          <para>The following example demonstrates copying strings.</para>
          <code lang="C#">using System;
public class StringCopyExample {
 public static void Main() {
 string strA = "string";
 Console.WriteLine( "The initial string, strA, is '{0}'.", strA );
 string strB = String.Copy( strA );
 strA = strA.ToUpper();
 Console.WriteLine( "The copied string, strB, before strA.ToUpper, is '{0}'.", strB );
 Console.WriteLine( "The initial string after StringCopy and ToUpper, is '{0}'.", strA );
 Console.WriteLine( "The copied string, strB, after strA.ToUpper, is '{0}'.", strB );
 }
}
   </code>
          <para>The output is</para>
          <c>
            <para>The initial string, strA, is 'string'.</para>
            <para>The copied string, strB, before strA.ToUpper, is 'string'.</para>
            <para>The initial string after StringCopy and ToUpper, is 'STRING'.</para>
            <para>The copied string, strB, after strA.ToUpper, is 'string'.</para>
          </c>
        </example>
        <remarks>To be added.</remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(object arg0, object arg1)" />
      <MemberSignature Language="C#" Value="public static string Concat (object obj1, object obj2);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="obj1" Type="System.Object" />
        <Parameter Name="obj2" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para> Concatenates the <see cref="T:System.String" /> representations of two specified objects.</para>
        </summary>
        <param name="arg0">The first <see cref="T:System.Object" /> to concatenate.</param>
        <param name="arg1">The second <see cref="T:System.Object" /> to concatenate.</param>
        <returns>
          <para>The concatenated <see cref="T:System.String" /> representation of the values of
<paramref name="arg0" /> and <paramref name="arg1" />.</para>
        </returns>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is used in place of any null argument.</para>
          <para>This version of <see cref="M:System.String.Concat(System.Object)" /> is equivalent to <see cref="M:System.String.Concat(System.Object)" />( <paramref name="arg0" />.ToString(),
<paramref name="arg1" />.ToString () ).</para>
          <para>
            <block subset="none" type="note"> If either of the
   arguments is an array reference, the method concatenates a string representing
   that array, instead of its members (for example, <see cref="T:System.String" /> )[].</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating two objects.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( 'c', 32 );
 Console.WriteLine( "The concatenated Objects are: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated Objects are: c32</c>
          </para>
        </example>
        <param name="obj1">To be added.</param>
        <param name="obj2">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(object arg0, object arg1, object arg2)" />
      <MemberSignature Language="C#" Value="public static string Concat (object obj1, object obj2, object obj3);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="obj1" Type="System.Object" />
        <Parameter Name="obj2" Type="System.Object" />
        <Parameter Name="obj3" Type="System.Object" />
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates the <see cref="T:System.String" /> representations of three specified objects, in order provided.</para>
        </summary>
        <param name="arg0">The first <see cref="T:System.Object" /> to concatenate.</param>
        <param name="arg1">The second <see cref="T:System.Object" /> to concatenate.</param>
        <param name="arg2">The third <see cref="T:System.Object" /> to concatenate.</param>
        <returns>
          <para>The concatenated <see cref="T:System.String" /> representations of the values of
<paramref name="arg0" />, <paramref name="arg1" />, and <paramref name="arg2" />.</para>
        </returns>
        <remarks>
          <para> This method concatenates the values returned by
      the <see cref="M:System.String.ToString" /> methods on every argument. <see cref="F:System.String.Empty" /> is used in place of any null argument.</para>
          <para>This version of <see cref="M:System.String.Concat(System.Object)" /> is equivalent to
<see langword="String.Concat" />( <paramref name="arg0" />.<see langword="ToString" />(), 
<paramref name="arg1" />.<see langword="ToString" />(), 
<paramref name="arg2" />.<see langword="ToString" /> () ).</para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating three objects.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( 'c', 32, "String" );
 Console.WriteLine( "The concatenated Objects are: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated Objects are: c32String</c>
          </para>
        </example>
        <param name="obj1">To be added.</param>
        <param name="obj2">To be added.</param>
        <param name="obj3">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(class System.Object[] args)" />
      <MemberSignature Language="C#" Value="public static string Concat (object[] args);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="args" Type="System.Object[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates the <see cref="T:System.String" /> representations of the elements in an
   array of <see cref="T:System.Object" />
   instances.</para>
        </summary>
        <param name="args">An array of <see cref="T:System.Object" /> instances to concatenate.</param>
        <returns>
          <para>The concatenated <see cref="T:System.String" /> representations of the values of the
   elements in <paramref name="args" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="args" /> is a null reference.</exception>
        <remarks>
          <para> This method concatenates the values returned by
      the <see cref="M:System.String.ToString" /> methods on every
      object in the <paramref name="args" /> array. <see cref="F:System.String.Empty" /> is
      used in place of any null reference in the array.</para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating an array of objects.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( 'c', 32, "String" );
 Console.WriteLine( "The concatenated Object array is: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated Object array is: c32String</c>
          </para>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(string str0, string str1)" />
      <MemberSignature Language="C#" Value="public static string Concat (string s1, string s2);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="s1" Type="System.String" />
        <Parameter Name="s2" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates two specified instances of <see cref="T:System.String" />.</para>
        </summary>
        <param name="str0">The first <see cref="T:System.String" /> to concatenate.</param>
        <param name="str1">The second <see cref="T:System.String" /> to concatenate.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing the concatenation of <paramref name="str0" /> and
<paramref name="str1" />.</para>
        </returns>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is used in place of any null argument.</para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating two strings.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( "one", "two" );
 Console.WriteLine( "The concatenated strings are: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated strings are: onetwo</c>
          </para>
        </example>
        <param name="s1">To be added.</param>
        <param name="s2">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(string str0, string str1, string str2)" />
      <MemberSignature Language="C#" Value="public static string Concat (string s1, string s2, string s3);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="s1" Type="System.String" />
        <Parameter Name="s2" Type="System.String" />
        <Parameter Name="s3" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates three specified instances of <see cref="T:System.String" />.</para>
        </summary>
        <param name="str0">The first <see cref="T:System.String" /> to concatenate.</param>
        <param name="str1">The second <see cref="T:System.String" /> to concatenate.</param>
        <param name="str2">The third <see cref="T:System.String" /> to concatenate.</param>
        <returns>
          <para>A <see cref="T:System.String" /> containing the concatenation of <paramref name="str0" />, <paramref name="str1" />, and
<paramref name="str2" />.</para>
        </returns>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is used in place of any null argument.</para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating three strings.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( "one", "two", "three" );
 Console.WriteLine( "The concatenated strings are: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated strings are: onetwothree</c>
          </para>
        </example>
        <param name="s1">To be added.</param>
        <param name="s2">To be added.</param>
        <param name="s3">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Concat">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Concat(class System.String[] values)" />
      <MemberSignature Language="C#" Value="public static string Concat (string[] values);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="values" Type="System.String[]">
          <Attributes>
            <Attribute>
              <AttributeName>System.ParamArray</AttributeName>
            </Attribute>
          </Attributes>
        </Parameter>
      </Parameters>
      <Docs>
        <summary>
          <para>Concatenates the elements of a specified array.</para>
        </summary>
        <param name="values">An array of <see cref="T:System.String" /> instances to concatenate.</param>
        <returns>
          <para> A <see cref="T:System.String" /> containing the concatenated elements of <paramref name="values" />.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="values" /> is a null reference.</exception>
        <remarks>
          <para>
            <see cref="F:System.String.Empty" /> is used in place of any null reference in the array.</para>
        </remarks>
        <example>
          <para>The following example demonstrates concatenating an array of strings.</para>
          <code lang="C#">using System;
public class StringConcatExample {
 public static void Main() {
 string str = String.Concat( "one", "two", "three", "four", "five" );
 Console.WriteLine( "The concatenated String array is: {0}", str );
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>The
      concatenated String array is: onetwothreefourfive</c>
          </para>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Intern">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string Intern(string str)" />
      <MemberSignature Language="C#" Value="public static string Intern (string str);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="str" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Retrieves the system's reference to a specified <see cref="T:System.String" />. </para>
        </summary>
        <param name="str">A <see cref="T:System.String" />. </param>
        <returns>
          <para> The <see cref="T:System.String" /> reference to <paramref name="str" />.
   </para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="str" /> is a null reference. </exception>
        <remarks>
          <para> Instances of each unique literal string constant
      declared in a program, as well as any unique instance of <see cref="T:System.String" /> you add
      programmatically are kept in a table, called
      
      the "intern pool".
      </para>
          <para> The intern pool conserves string storage. If a literal
      string constant is assigned to several variables, each variable is set to
      reference the same constant in the intern pool instead of referencing several
      different instances of <see cref="T:System.String" /> that
      
      have identical values.
      </para>
          <para> This method looks up a specified string in the intern
      pool. If the string exists, a reference to it is returned. If it does not exist,
      an instance equal to the specified string is added to the intern pool and a
      reference that
      
      instance is returned.
      </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.Intern(System.String)" /> method.</para>
          <code lang="C#">using System;
using System.Text;
public class StringExample {
 public static void Main() {

     String s1 = "MyTest"; 
        String s2 = new StringBuilder().Append("My").Append("Test").ToString(); 
        String s3 = String.Intern(s2);

        Console.WriteLine(Object.ReferenceEquals(s1, s2));    //different
        Console.WriteLine(Object.ReferenceEquals(s1, s3));    //the same
    }
}
</code>
          <para>The output is</para>
          <c>
            <para>False</para>
            <para>True</para>
          </c>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IsInterned">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static string IsInterned(string str)" />
      <MemberSignature Language="C#" Value="public static string IsInterned (string str);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="str" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>
          <para> Retrieves a reference to a specified <see cref="T:System.String" />. </para>
        </summary>
        <param name="str">A <see cref="T:System.String" />. </param>
        <returns>
          <para> A <see cref="T:System.String" /> reference to <paramref name="str" /> if it is in the system's
   intern pool; otherwise, a null reference.</para>
        </returns>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="str" /> is a null reference. </exception>
        <remarks>
          <para>Instances of each unique literal string constant
      declared in a program, as well as any unique instance of <see cref="T:System.String" /> you add
      programmatically are kept in a table, called the "intern pool". </para>
          <para>The intern pool conserves string storage. If a literal
      string constant is assigned to several variables, each variable is set to
      reference the same constant in the intern pool instead of referencing several
      different instances of <see cref="T:System.String" /> that have identical values. </para>
          <para>
            <block subset="none" type="note"> This method
      does not return a <see cref="T:System.Boolean" /> value, but can still be used where a <see cref="T:System.Boolean" />
      is needed.</block>
          </para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="M:System.String.IsInterned(System.String)" />
method.</para>
          <code lang="C#">using System;
using System.Text;

public class StringExample {
    public static void Main() {

        String s1 = new StringBuilder().Append("My").Append("Test").ToString(); 

        Console.WriteLine(String.IsInterned(s1) != null);
    }
}
</code>
          <para>The output is</para>
          <para>
            <c>True</c>
          </para>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="GetEnumerator">
      <MemberSignature Language="ILASM" Value=".method public hidebysig instance class System.CharEnumerator GetEnumerator()" />
      <MemberSignature Language="C#" Value="public CharEnumerator GetEnumerator ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.CharEnumerator</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Retrieves an object that can iterate through the individual
      characters in the current instance.</para>
        </summary>
        <returns>
          <para>A <see cref="T:System.CharEnumerator" /> object.</para>
        </returns>
        <remarks>
          <para> This method is required by programming languages
      that support the <see cref="T:System.Collections.IEnumerator" /> interface to iterate through members of a
      collection.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Char* value)" />
      <MemberSignature Language="C#" Value="public String (char* value);" />
      <MemberType>Constructor</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.CLSCompliant(false)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue />
      <Parameters>
        <Parameter Name="value" Type="System.Char*" />
      </Parameters>
      <Docs>
        <summary>
          <para>Constructs and initializes a new instance of <see cref="T:System.String" /> using a specified pointer to a sequence of Unicode characters.</para>
        </summary>
        <param name="value">A pointer to a null-terminated array of Unicode characters. If <paramref name="value" /> is a null pointer, <see cref="F:System.String.Empty" /> is created.</param>
        <remarks>
          <para>This member is not CLS-compliant. For a CLS-compliant alternative,
      use the <see cref="T:System.String" />(<see cref="T:System.Char" /> ) constructor.</para>
          <para>This constructor copies the sequence of Unicode characters at the specified
      pointer until a null character (hexadecimal 0x00) is reached.</para>
          <para>If the specified array is not null-terminated, the
      behavior of this constructor is system dependent. For example, such a situation
      might cause
      an access violation.</para>
          <para>
            <block subset="none" type="note"> In C# this
      constructor is defined only in the context of unmanaged code.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Char* value, int32 startIndex, int32 length)" />
      <MemberSignature Language="C#" Value="public String (char* value, int startIndex, int length);" />
      <MemberType>Constructor</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.CLSCompliant(false)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue />
      <Parameters>
        <Parameter Name="value" Type="System.Char*" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para>Constructs and initializes a new instance of <see cref="T:System.String" /> using a specified
   pointer to a sequence of Unicode characters, the index within that sequence at
   which to start copying characters, and the number of characters to be copied to
   construct the <see cref="T:System.String" />
   .</para>
        </summary>
        <param name="value">A pointer to an array of Unicode characters.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index within the array referenced by <paramref name="value" /> from which to start copying.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters to copy from <paramref name="value" /> to the new <see cref="T:System.String" />. If <paramref name="length" /> is zero, <see cref="F:System.String.Empty" /> is created.</param>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.</para>
          <para> -or-</para>
          <para>
            <paramref name="value" /> is a null pointer and <paramref name="length" /> is not zero.</para>
        </exception>
        <remarks>
          <para>This member is not CLS-compliant. For a CLS-compliant alternative, use the 
   <see cref="T:System.String" />(<see cref="T:System.Char" />, <see cref="T:System.Int32" />, <see cref="T:System.Int32" />) constructor. </para>
          <para>This constructor copies Unicode characters from
   <paramref name="value" />, starting at <paramref name="startIndex" /> and ending at
      (<paramref name="startIndex" /> + <paramref name="length" /> - 1).</para>
          <para>If the specified range is outside of the memory
      allocated for the sequence of characters, the behavior of this constructor is
      system dependent. For example, such a situation might cause an access violation.</para>
          <para>
            <block subset="none" type="note"> In C# this
      constructor is defined only in the context of unmanaged code.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.SByte* value, int32 startIndex, int32 length, class System.Text.Encoding enc)" />
      <MemberSignature Language="C#" Value="public String (sbyte* value, int startIndex, int length, System.Text.Encoding enc);" />
      <MemberType>Constructor</MemberType>
      <Attributes>
        <Attribute>
          <AttributeName>System.CLSCompliant(false)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue />
      <Parameters>
        <Parameter Name="value" Type="System.SByte*" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
        <Parameter Name="enc" Type="System.Text.Encoding" />
      </Parameters>
      <Docs>
        <param name="value">A pointer to a <see cref="T:System.SByte" /> array.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the starting position within <paramref name="value" />.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters within <paramref name="value" /> to use. If <paramref name="length" /> is zero, <see cref="F:System.String.Empty" /> is created.</param>
        <param name="enc">A <see cref="T:System.Text.Encoding" /> object that specifies how the array referenced by <paramref name="value" /> is encoded.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see langword="String" /> class to the value indicated by a specified pointer to an array of
   8-bit signed integers, a starting character position within that array, a
   length, and an <see langword="Encoding" />
   object.</para>
        </summary>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.</para>
          <para>-or-</para>
          <para>
            <paramref name="value" /> is a null pointer and <paramref name="length" /> is not zero.</para>
        </exception>
        <remarks>
          <para>If <paramref name="value" /> is a
<see langword="null" /> pointer, a <see cref="F:System.String.Empty" /> instance is constructed.</para>
        </remarks>
        <param name="enc">To be added.</param>
      </Docs>
      <Excluded>1</Excluded>
      <ExcludedLibrary>RuntimeInfrastructure</ExcludedLibrary>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Char[] value, int32 startIndex, int32 length)" />
      <MemberSignature Language="C#" Value="public String (char[] val, int startIndex, int length);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="val" Type="System.Char[]" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
      <Docs>
        <param name="val">To be added.</param>
        <param name="startIndex">A <see cref="T:System.Int32" /> containing the index within the array referenced by <paramref name="value" /> from which to start copying.</param>
        <param name="length">A <see cref="T:System.Int32" /> containing the number of characters to copy from the <paramref name="value" /> array. If <paramref name="length" /> is zero, <see cref="F:System.String.Empty" /> is created.</param>
        <summary>
          <para>Constructs and initializes a new instance of <see cref="T:System.String" /> using an array of Unicode characters, the index within array at which to start
   copying characters, and the number of characters
   to be copied.</para>
        </summary>
        <param name="value">An array of Unicode characters.</param>
        <exception cref="T:System.ArgumentNullException">
          <paramref name="value" /> is a null reference.</exception>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <para>
            <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.</para>
          <para> -or-</para>
          <para>The sum of <paramref name="startIndex" /> and <paramref name="length" /> is greater than the number of elements in <paramref name="value" /> .</para>
        </exception>
        <remarks>
          <para>This constructor copies the sequence Unicode characters
      found at <paramref name="value" /> between indexes <paramref name="startIndex" /> and
   <paramref name="startIndex" /> + <paramref name="length" /> - 1.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Char[] value)" />
      <MemberSignature Language="C#" Value="public String (char[] val);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="val" Type="System.Char[]" />
      </Parameters>
      <Docs>
        <summary>
          <para>Constructs and initializes a new instance of <see cref="T:System.String" />
by copying the specified array of Unicode characters.</para>
        </summary>
        <param name="val">An array of Unicode characters.</param>
        <remarks>
          <para>If the specified array is a null reference or contains
      no elements, <see cref="F:System.String.Empty" /> is created.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(valuetype System.Char c, int32 count)" />
      <MemberSignature Language="C#" Value="public String (char c, int count);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="c" Type="System.Char" />
        <Parameter Name="count" Type="System.Int32" />
      </Parameters>
      <Docs>
        <param name="c">A <see cref="T:System.Char" /> . </param>
        <param name="count">A <see cref="T:System.Int32" /> containing the number of occurrences of <paramref name="c" />. </param>
        <summary>
          <para>Constructs and initializes a new instance of <see cref="T:System.String" />
.</para>
        </summary>
        <exception cref="T:System.ArgumentOutOfRangeException">
          <paramref name="count" /> is less than zero.</exception>
        <remarks>
          <para>If the specified number is 0, <see cref="F:System.String.Empty" /> is
   created.</para>
        </remarks>
        <example>
          <para>The following example demonstrates using this constructor.</para>
          <code lang="C#">using System;

public class StringExample {
 public static void Main() {
 
 string s = new String('a', 10);

 Console.WriteLine(s);            
 }
}
   </code>
          <para>The output is</para>
          <para>
            <c>aaaaaaaaaa</c>
          </para>
        </example>
        <param name="count">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Chars">
      <MemberSignature Language="ILASM" Value=".property valuetype System.Char Chars[int32 index] { public hidebysig specialname instance valuetype System.Char get_Chars(int32 index) }" />
      <MemberSignature Language="C#" Value="public char Chars[int index] { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Char</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="index" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>
          <para> Gets the character at a specified position in the current
      instance.</para>
        </summary>
        <value>
          <para>A Unicode character at the location index in the current instance.</para>
        </value>
        <exception cref="T:System.IndexOutOfRangeException">
          <paramref name="index" /> is greater than or equal to the length of the current instance or less than zero.</exception>
        <remarks>
          <para>This property is read-only.</para>
          <para>
            <paramref name="index" /> is the position of a character within a
   string. The first character in the string is at index 0. The length of a string
   is the number of characters it is made up of. The last accessible <paramref name="index" />
   of a string instance is its length
   - 1.</para>
        </remarks>
        <param name="index">To be added.</param>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Length">
      <MemberSignature Language="ILASM" Value=".property int32 Length { public hidebysig specialname instance int32 get_Length() }" />
      <MemberSignature Language="C#" Value="public int Length { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para> Gets the number of characters in the current instance.</para>
        </summary>
        <value>
          <para>A <see cref="T:System.Int32" /> containing the number of characters in the current instance.</para>
        </value>
        <remarks>
          <para>This property is read-only.</para>
        </remarks>
        <example>
          <para>The following example demonstrates the <see cref="P:System.String.Length" /> property.</para>
          <code lang="C#">using System;
public class StringLengthExample {
 public static void Main() {
 string str = "STRING";
 Console.WriteLine( "The length of string {0} is {1}", str, str.Length );
 }
}
</code>
          <para>The output is</para>
          <para>
            <c>The length
   of string STRING is 6</c>
          </para>
        </example>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
  <Member MemberName=".ctor">
			<MemberSignature Language="C#" Value="public String (sbyte* value);" />
			<MemberType>Constructor</MemberType>
			<Attributes>
        <Attribute>
          <AttributeName>System.CLSCompliant(false)</AttributeName>
        </Attribute>
      </Attributes>
			<Parameters>
        <Parameter Name="value" Type="System.SByte*" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="value">To be added.</param>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName=".ctor">
			<MemberSignature Language="C#" Value="public String (sbyte* value, int startIndex, int length);" />
			<MemberType>Constructor</MemberType>
			<Attributes>
        <Attribute>
          <AttributeName>System.CLSCompliant(false)</AttributeName>
        </Attribute>
      </Attributes>
			<Parameters>
        <Parameter Name="value" Type="System.SByte*" />
        <Parameter Name="startIndex" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
      </Parameters>
			<Docs>
        <param name="value">To be added.</param>
        <param name="startIndex">To be added.</param>
        <param name="length">To be added.</param>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Equals">
			<MemberSignature Language="C#" Value="public bool Equals (string value);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="value">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="GetTypeCode">
			<MemberSignature Language="C#" Value="public TypeCode GetTypeCode ();" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.TypeCode</ReturnType>
      </ReturnValue>
			<Parameters />
			<Docs>
        <summary>To be added.</summary>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Compare">
			<MemberSignature Language="C#" Value="public static int Compare (string strA, string strB, bool ignoreCase, System.Globalization.CultureInfo culture);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="ignoreCase" Type="System.Boolean" />
        <Parameter Name="culture" Type="System.Globalization.CultureInfo" />
      </Parameters>
			<Docs>
        <param name="strA">To be added.</param>
        <param name="strB">To be added.</param>
        <param name="ignoreCase">To be added.</param>
        <param name="culture">To be added.</param>
        <summary>To be added.</summary>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Compare">
			<MemberSignature Language="C#" Value="public static int Compare (string strA, int indexA, string strB, int indexB, int length, bool ignoreCase, System.Globalization.CultureInfo culture);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="strA" Type="System.String" />
        <Parameter Name="indexA" Type="System.Int32" />
        <Parameter Name="strB" Type="System.String" />
        <Parameter Name="indexB" Type="System.Int32" />
        <Parameter Name="length" Type="System.Int32" />
        <Parameter Name="ignoreCase" Type="System.Boolean" />
        <Parameter Name="culture" Type="System.Globalization.CultureInfo" />
      </Parameters>
			<Docs>
        <param name="strA">To be added.</param>
        <param name="indexA">To be added.</param>
        <param name="strB">To be added.</param>
        <param name="indexB">To be added.</param>
        <param name="length">To be added.</param>
        <param name="ignoreCase">To be added.</param>
        <param name="culture">To be added.</param>
        <summary>To be added.</summary>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="CompareTo">
			<MemberSignature Language="C#" Value="public int CompareTo (string strB);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="strB" Type="System.String" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
        <param name="strB">To be added.</param>
      </Docs>
		</Member>
  <Member MemberName="ToLower">
			<MemberSignature Language="C#" Value="public string ToLower (System.Globalization.CultureInfo culture);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="culture" Type="System.Globalization.CultureInfo" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="culture">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="ToUpper">
			<MemberSignature Language="C#" Value="public string ToUpper (System.Globalization.CultureInfo culture);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="culture" Type="System.Globalization.CultureInfo" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="culture">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Concat">
			<MemberSignature Language="C#" Value="public static string Concat (object obj);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="obj" Type="System.Object" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="obj">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Concat">
			<MemberSignature Language="C#" Value="public static string Concat (object obj1, object obj2, object obj3, object obj4);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="obj1" Type="System.Object" />
        <Parameter Name="obj2" Type="System.Object" />
        <Parameter Name="obj3" Type="System.Object" />
        <Parameter Name="obj4" Type="System.Object" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="obj1">To be added.</param>
        <param name="obj2">To be added.</param>
        <param name="obj3">To be added.</param>
        <param name="obj4">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  <Member MemberName="Concat">
			<MemberSignature Language="C#" Value="public static string Concat (string s1, string s2, string s3, string s4);" />
			<MemberType>Method</MemberType>
			<ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
			<Parameters>
        <Parameter Name="s1" Type="System.String" />
        <Parameter Name="s2" Type="System.String" />
        <Parameter Name="s3" Type="System.String" />
        <Parameter Name="s4" Type="System.String" />
      </Parameters>
			<Docs>
        <summary>To be added.</summary>
        <param name="s1">To be added.</param>
        <param name="s2">To be added.</param>
        <param name="s3">To be added.</param>
        <param name="s4">To be added.</param>
        <returns>To be added.</returns>
        <remarks>To be added.</remarks>
      </Docs>
		</Member>
  </Members>
  <TypeExcluded>0</TypeExcluded>
</Type>