@@ -446,6 +446,18 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
446
446
</AssemblyInfo >
447
447
<Docs >
448
448
<summary >Converts the value of a UTF-16 encoded surrogate pair into a Unicode code point.</summary >
449
+ <remarks >
450
+ <format type =" text/markdown" ><![CDATA[
451
+
452
+ ## Examples
453
+ The following code example demonstrates the <xref:System.Char.ConvertToUtf32%2A> and <xref:System.Char.ConvertFromUtf32%2A> methods.
454
+
455
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR/char.cvtutf32/CPP/utf.cpp" id="Snippet1":::
456
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR/char.cvtutf32/CS/utf.cs" interactive="try-dotnet" id="Snippet1":::
457
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR/char.cvtutf32/VB/utf.vb" id="Snippet1":::
458
+
459
+ ]]> </format >
460
+ </remarks >
449
461
</Docs >
450
462
</MemberGroup >
451
463
<Member MemberName =" ConvertToUtf32" >
@@ -498,15 +510,6 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
498
510
499
511
Ordinarily, UTF-16 encoding represents a single Unicode character as a 16-bit code unit. However, it also supports surrogate pairs, which allow a single abstract character to be represented as two 16-bit code units. These two <xref:System.Char> objects must have code units that range from U+D800 to U+DBFF for the first (high) surrogate and from U+DC00 to U+DFFF for the second (low) surrogate. Surrogate pairs are supported only by UTF-16 encoding. This method allows a character represented by a UTF-16 surrogate pair to be converted to a character using UTF-32 encoding.
500
512
501
-
502
-
503
- ## Examples
504
- The following code example demonstrates the <xref:System.Char.ConvertToUtf32%2A> and <xref:System.Char.ConvertFromUtf32%2A> methods.
505
-
506
- [!code-cpp[char.cvtutf32#1](~/samples/snippets/cpp/VS_Snippets_CLR/char.cvtutf32/CPP/utf.cpp#1)]
507
- [!code-csharp[char.cvtutf32#1](~/samples/snippets/csharp/VS_Snippets_CLR/char.cvtutf32/CS/utf.cs#1)]
508
- [!code-vb[char.cvtutf32#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/char.cvtutf32/VB/utf.vb#1)]
509
-
510
513
]]> </format >
511
514
</remarks >
512
515
<exception cref =" T:System.ArgumentOutOfRangeException" >
@@ -564,15 +567,6 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
564
567
## Remarks
565
568
Use this method to convert a character or surrogate pair into a 21-bit Unicode code point. To convert UTF-16 data into UTF-32 data, use the <xref:System.Text.UTF32Encoding?displayProperty=nameWithType> class.
566
569
567
-
568
-
569
- ## Examples
570
- The following code example demonstrates the <xref:System.Char.ConvertToUtf32%2A> and <xref:System.Char.ConvertFromUtf32%2A> methods.
571
-
572
- [!code-cpp[char.cvtutf32#1](~/samples/snippets/cpp/VS_Snippets_CLR/char.cvtutf32/CPP/utf.cpp#1)]
573
- [!code-csharp[char.cvtutf32#1](~/samples/snippets/csharp/VS_Snippets_CLR/char.cvtutf32/CS/utf.cs#1)]
574
- [!code-vb[char.cvtutf32#1](~/samples/snippets/visualbasic/VS_Snippets_CLR/char.cvtutf32/VB/utf.vb#1)]
575
-
576
570
]]> </format >
577
571
</remarks >
578
572
<exception cref =" T:System.ArgumentNullException" >
@@ -1178,9 +1172,9 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
1178
1172
## Examples
1179
1173
The following example lists the Unicode code point of each of the control characters.
1180
1174
1181
- [! code- cpp[System.Char.IsControl#1]( ~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsControl/CPP/iscontrol1.cpp#1)]
1182
- [! code- csharp[System.Char.IsControl#1]( ~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsControl/CS/IsControl1.cs#1)]
1183
- [! code-vb[System.Char.IsControl#1]( ~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsControl/VB/IsControl1.vb#1)]
1175
+ ::: code language=" cpp" source=" ~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsControl/CPP/iscontrol1.cpp" id="Snippet1":::
1176
+ ::: code language=" csharp" source=" ~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsControl/CS/IsControl1.cs" interactive="try-dotnet" id="Snippet1":::
1177
+ ::: code language="vb" source=" ~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsControl/VB/IsControl1.vb" id="Snippet1":::
1184
1178
1185
1179
]]> </format >
1186
1180
</remarks >
@@ -1743,8 +1737,15 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
1743
1737
1744
1738
## Remarks
1745
1739
Valid letters and decimal digits are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `UppercaseLetter`, `LowercaseLetter`, `TitlecaseLetter`, `ModifierLetter`, `OtherLetter`, or `DecimalDigitNumber`.
1746
-
1747
- ]]> </format >
1740
+
1741
+ ## Examples
1742
+ The following code example demonstrates <xref:System.Char.IsLetterOrDigit%2A>.
1743
+
1744
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CPP/isletterordigit.cpp" id="Snippet6":::
1745
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CS/isletterordigit.cs" interactive="try-dotnet" id="Snippet6":::
1746
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/VB/isletterordigit.vb" id="Snippet6":::
1747
+
1748
+ ]]> </format >
1748
1749
</remarks >
1749
1750
</Docs >
1750
1751
</MemberGroup >
@@ -1801,15 +1802,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
1801
1802
## Remarks
1802
1803
Valid letters and decimal digits are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `UppercaseLetter`, `LowercaseLetter`, `TitlecaseLetter`, `ModifierLetter`, `OtherLetter`, or `DecimalDigitNumber`.
1803
1804
1804
-
1805
-
1806
- ## Examples
1807
- The following code example demonstrates <xref:System.Char.IsLetterOrDigit%2A>.
1808
-
1809
- [!code-cpp[System.Char.IsLetterOrDigit#6](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CPP/isletterordigit.cpp#6)]
1810
- [!code-csharp[System.Char.IsLetterOrDigit#6](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CS/isletterordigit.cs#6)]
1811
- [!code-vb[System.Char.IsLetterOrDigit#6](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/VB/isletterordigit.vb#6)]
1812
-
1813
1805
]]> </format >
1814
1806
</remarks >
1815
1807
<altmember cref =" M:System.Text.Rune.IsLetterOrDigit(System.Text.Rune)" />
@@ -1873,15 +1865,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
1873
1865
1874
1866
Valid letters and decimal digits are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `UppercaseLetter`, `LowercaseLetter`, `TitlecaseLetter`, `ModifierLetter`, `OtherLetter`, or `DecimalDigitNumber`.
1875
1867
1876
-
1877
-
1878
- ## Examples
1879
- The following code example demonstrates <xref:System.Char.IsLetterOrDigit%2A>.
1880
-
1881
- [!code-cpp[System.Char.IsLetterOrDigit#6](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CPP/isletterordigit.cpp#6)]
1882
- [!code-csharp[System.Char.IsLetterOrDigit#6](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/CS/isletterordigit.cs#6)]
1883
- [!code-vb[System.Char.IsLetterOrDigit#6](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsLetterOrDigit/VB/isletterordigit.vb#6)]
1884
-
1885
1868
]]> </format >
1886
1869
</remarks >
1887
1870
<exception cref =" T:System.ArgumentNullException" >
@@ -2406,6 +2389,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
2406
2389
|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
2407
2390
|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
2408
2391
2392
+ ## Examples
2393
+ The following code example demonstrates <xref:System.Char.IsPunctuation%2A>.
2394
+
2395
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CPP/ispunctuation.cpp" id="Snippet9":::
2396
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CS/ispunctuation.cs" interactive="try-dotnet" id="Snippet9":::
2397
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsPunctuation/VB/ispunctuation.vb" id="Snippet9":::
2398
+
2409
2399
]]> </format >
2410
2400
</remarks >
2411
2401
</Docs >
@@ -2485,15 +2475,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
2485
2475
|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
2486
2476
|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
2487
2477
2488
-
2489
-
2490
- ## Examples
2491
- The following code example demonstrates <xref:System.Char.IsPunctuation%2A>.
2492
-
2493
- [!code-cpp[System.Char.IsPunctuation#9](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CPP/ispunctuation.cpp#9)]
2494
- [!code-csharp[System.Char.IsPunctuation#9](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CS/ispunctuation.cs#9)]
2495
- [!code-vb[System.Char.IsPunctuation#9](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsPunctuation/VB/ispunctuation.vb#9)]
2496
-
2497
2478
]]> </format >
2498
2479
</remarks >
2499
2480
<altmember cref =" M:System.Text.Rune.IsPunctuation(System.Text.Rune)" />
@@ -2584,15 +2565,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
2584
2565
|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
2585
2566
|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
2586
2567
2587
-
2588
-
2589
- ## Examples
2590
- The following code example demonstrates <xref:System.Char.IsPunctuation%2A>.
2591
-
2592
- [!code-cpp[System.Char.IsPunctuation#9](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CPP/ispunctuation.cpp#9)]
2593
- [!code-csharp[System.Char.IsPunctuation#9](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsPunctuation/CS/ispunctuation.cs#9)]
2594
- [!code-vb[System.Char.IsPunctuation#9](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsPunctuation/VB/ispunctuation.vb#9)]
2595
-
2596
2568
]]> </format >
2597
2569
</remarks >
2598
2570
<exception cref =" T:System.ArgumentNullException" >
@@ -3121,6 +3093,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3121
3093
3122
3094
- Dingbats.
3123
3095
3096
+ ## Examples
3097
+ The following code example demonstrates <xref:System.Char.IsSymbol%2A>.
3098
+
3099
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsSymbol/CPP/issymbol.cpp" id="Snippet12":::
3100
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsSymbol/CS/issymbol.cs" interactive="try-dotnet" id="Snippet12":::
3101
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsSymbol/VB/issymbol.vb" id="Snippet12":::
3102
+
3124
3103
]]> </format >
3125
3104
</remarks >
3126
3105
</Docs >
@@ -3191,15 +3170,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3191
3170
3192
3171
- Dingbats.
3193
3172
3194
-
3195
-
3196
- ## Examples
3197
- The following code example demonstrates <xref:System.Char.IsSymbol%2A>.
3198
-
3199
- [!code-cpp[System.Char.IsSymbol#12](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsSymbol/CPP/issymbol.cpp#12)]
3200
- [!code-csharp[System.Char.IsSymbol#12](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsSymbol/CS/issymbol.cs#12)]
3201
- [!code-vb[System.Char.IsSymbol#12](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsSymbol/VB/issymbol.vb#12)]
3202
-
3203
3173
]]> </format >
3204
3174
</remarks >
3205
3175
<altmember cref =" M:System.Text.Rune.IsSymbol(System.Text.Rune)" />
@@ -3281,15 +3251,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3281
3251
3282
3252
- Dingbats.
3283
3253
3284
-
3285
-
3286
- ## Examples
3287
- The following code example demonstrates <xref:System.Char.IsSymbol%2A>.
3288
-
3289
- [!code-cpp[System.Char.IsSymbol#12](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsSymbol/CPP/issymbol.cpp#12)]
3290
- [!code-csharp[System.Char.IsSymbol#12](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsSymbol/CS/issymbol.cs#12)]
3291
- [!code-vb[System.Char.IsSymbol#12](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsSymbol/VB/issymbol.vb#12)]
3292
-
3293
3254
]]> </format >
3294
3255
</remarks >
3295
3256
<exception cref =" T:System.ArgumentNullException" >
@@ -3460,6 +3421,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3460
3421
3461
3422
- The characters CHARACTER TABULATION (U+0009), LINE FEED (U+000A), LINE TABULATION (U+000B), FORM FEED (U+000C), CARRIAGE RETURN (U+000D), and NEXT LINE (U+0085).
3462
3423
3424
+ ## Examples
3425
+ The following example demonstrates the <xref:System.Char.IsWhiteSpace%28System.Char%29> method.
3426
+
3427
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CPP/iswhitespace.cpp" id="Snippet14":::
3428
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CS/iswhitespace.cs" interactive="try-dotnet" id="Snippet14":::
3429
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/VB/iswhitespace.vb" id="Snippet14":::
3430
+
3463
3431
]]> </format >
3464
3432
</remarks >
3465
3433
</Docs >
@@ -3525,15 +3493,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3525
3493
3526
3494
- The characters CHARACTER TABULATION (U+0009), LINE FEED (U+000A), LINE TABULATION (U+000B), FORM FEED (U+000C), CARRIAGE RETURN (U+000D), and NEXT LINE (U+0085).
3527
3495
3528
-
3529
-
3530
- ## Examples
3531
- The following example demonstrates the <xref:System.Char.IsWhiteSpace%28System.Char%29> method.
3532
-
3533
- [!code-cpp[System.Char.IsWhiteSpace#14](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CPP/iswhitespace.cpp#14)]
3534
- [!code-csharp[System.Char.IsWhiteSpace#14](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CS/iswhitespace.cs#14)]
3535
- [!code-vb[System.Char.IsWhiteSpace#14](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/VB/iswhitespace.vb#14)]
3536
-
3537
3496
]]> </format >
3538
3497
</remarks >
3539
3498
<altmember cref =" M:System.Text.Rune.IsWhiteSpace(System.Text.Rune)" />
@@ -3606,15 +3565,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
3606
3565
3607
3566
- The characters CHARACTER TABULATION (U+0009), LINE FEED (U+000A), LINE TABULATION (U+000B), FORM FEED (U+000C), CARRIAGE RETURN (U+000D), and NEXT LINE (U+0085).
3608
3567
3609
-
3610
-
3611
- ## Examples
3612
- The following code example demonstrates <xref:System.Char.IsWhiteSpace%2A>.
3613
-
3614
- [!code-cpp[System.Char.IsWhiteSpace#14](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CPP/iswhitespace.cpp#14)]
3615
- [!code-csharp[System.Char.IsWhiteSpace#14](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/CS/iswhitespace.cs#14)]
3616
- [!code-vb[System.Char.IsWhiteSpace#14](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.IsWhiteSpace/VB/iswhitespace.vb#14)]
3617
-
3618
3568
]]> </format >
3619
3569
</remarks >
3620
3570
<exception cref =" T:System.ArgumentNullException" >
@@ -4698,6 +4648,18 @@ This member is an explicit interface member implementation. It can be used only
4698
4648
</AssemblyInfo >
4699
4649
<Docs >
4700
4650
<summary >Converts the value of a Unicode character to its lowercase equivalent.</summary >
4651
+ <remarks >
4652
+ <format type =" text/markdown" ><![CDATA[
4653
+
4654
+ ## Examples
4655
+ The following example demonstrates <xref:System.Char.ToLower%2A>.
4656
+
4657
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.ToLower/CPP/tolower.cpp" id="Snippet16":::
4658
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToLower/CS/tolower.cs" interactive="try-dotnet" id="Snippet16":::
4659
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToLower/VB/tolower.vb" id="Snippet16":::
4660
+
4661
+ ]]> </format >
4662
+ </remarks >
4701
4663
</Docs >
4702
4664
</MemberGroup >
4703
4665
<Member MemberName =" ToLower" >
@@ -4749,15 +4711,6 @@ This member is an explicit interface member implementation. It can be used only
4749
4711
4750
4712
Use <xref:System.String.ToLower%2A?displayProperty=nameWithType> to convert a string to lowercase.
4751
4713
4752
-
4753
-
4754
- ## Examples
4755
- The following example demonstrates <xref:System.Char.ToLower%2A>.
4756
-
4757
- [!code-cpp[System.Char.ToLower#16](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.ToLower/CPP/tolower.cpp#16)]
4758
- [!code-csharp[System.Char.ToLower#16](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToLower/CS/tolower.cs#16)]
4759
- [!code-vb[System.Char.ToLower#16](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToLower/VB/tolower.vb#16)]
4760
-
4761
4714
]]> </format >
4762
4715
</remarks >
4763
4716
<block subset =" none" type =" usage" >
@@ -4819,15 +4772,6 @@ This member is an explicit interface member implementation. It can be used only
4819
4772
## Remarks
4820
4773
Use <xref:System.String.ToLower%2A?displayProperty=nameWithType> to convert a string to lowercase.
4821
4774
4822
-
4823
-
4824
- ## Examples
4825
- The following code example demonstrates <xref:System.Char.ToLower%2A>.
4826
-
4827
- [!code-cpp[System.Char.ToLower#16](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.ToLower/CPP/tolower.cpp#16)]
4828
- [!code-csharp[System.Char.ToLower#16](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToLower/CS/tolower.cs#16)]
4829
- [!code-vb[System.Char.ToLower#16](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToLower/VB/tolower.vb#16)]
4830
-
4831
4775
]]> </format >
4832
4776
</remarks >
4833
4777
<exception cref =" T:System.ArgumentNullException" >
@@ -4911,6 +4855,18 @@ This member is an explicit interface member implementation. It can be used only
4911
4855
</AssemblyInfo >
4912
4856
<Docs >
4913
4857
<summary >Converts the value of this instance to its equivalent string representation.</summary >
4858
+ <remarks >
4859
+ <format type =" text/markdown" ><![CDATA[
4860
+
4861
+ ## Examples
4862
+ The following code example demonstrates <xref:System.Char.ToString%2A>.
4863
+
4864
+ :::code language="cpp" source="~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.ToString/CPP/tostring.cpp" id="Snippet17":::
4865
+ :::code language="csharp" source="~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToString/CS/tostring.cs" interactive="try-dotnet" id="Snippet17":::
4866
+ :::code language="vb" source="~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToString/VB/tostring.vb" id="Snippet17":::
4867
+
4868
+ ]]> </format >
4869
+ </remarks >
4914
4870
</Docs >
4915
4871
</MemberGroup >
4916
4872
<Member MemberName =" ToString" >
@@ -4959,13 +4915,6 @@ This member is an explicit interface member implementation. It can be used only
4959
4915
<remarks >
4960
4916
<format type =" text/markdown" ><]
4966
- [!code-csharp[System.Char.ToString#17](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToString/CS/tostring.cs#17)]
4967
- [!code-vb[System.Char.ToString#17](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToString/VB/tostring.vb#17)]
4968
-
4969
4918
]]> </format >
4970
4919
</remarks >
4971
4920
<altmember cref =" M:System.Char.Parse(System.String)" />
@@ -5016,13 +4965,6 @@ This member is an explicit interface member implementation. It can be used only
5016
4965
<remarks >
5017
4966
<format type =" text/markdown" ><]
5023
- [!code-csharp[System.Char.ToString#17](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToString/CS/tostring.cs#17)]
5024
- [!code-vb[System.Char.ToString#17](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToString/VB/tostring.vb#17)]
5025
-
5026
4968
]]> </format >
5027
4969
</remarks >
5028
4970
<altmember cref =" M:System.Char.Parse(System.String)" />
@@ -5075,15 +5017,6 @@ This member is an explicit interface member implementation. It can be used only
5075
5017
## Remarks
5076
5018
The `provider` parameter is ignored; it does not participate in this operation.
5077
5019
5078
-
5079
-
5080
- ## Examples
5081
- The following code example demonstrates an overload of <xref:System.Char.ToString%2A>.
5082
-
5083
- [!code-cpp[System.Char.ToString#17](~/samples/snippets/cpp/VS_Snippets_CLR_System/system.Char.ToString/CPP/tostring.cpp#17)]
5084
- [!code-csharp[System.Char.ToString#17](~/samples/snippets/csharp/VS_Snippets_CLR_System/system.Char.ToString/CS/tostring.cs#17)]
5085
- [!code-vb[System.Char.ToString#17](~/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Char.ToString/VB/tostring.vb#17)]
5086
-
5087
5020
]]> </format >
5088
5021
</remarks >
5089
5022
<altmember cref =" M:System.Char.Parse(System.String)" />
0 commit comments