@@ -446,6 +446,18 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
446446 </AssemblyInfo >
447447 <Docs >
448448 <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 >
449461 </Docs >
450462 </MemberGroup >
451463 <Member MemberName =" ConvertToUtf32" >
@@ -498,15 +510,6 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
498510
499511 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.
500512
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-
510513 ]]> </format >
511514 </remarks >
512515 <exception cref =" T:System.ArgumentOutOfRangeException" >
@@ -564,15 +567,6 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
564567## Remarks
565568 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.
566569
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-
576570 ]]> </format >
577571 </remarks >
578572 <exception cref =" T:System.ArgumentNullException" >
@@ -1178,9 +1172,9 @@ When a managed <xref:System.Char> type, which is represented as a Unicode UTF-16
11781172## Examples
11791173 The following example lists the Unicode code point of each of the control characters.
11801174
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":::
11841178
11851179 ]]> </format >
11861180 </remarks >
@@ -1743,8 +1737,15 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
17431737
17441738## Remarks
17451739 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 >
17481749 </remarks >
17491750 </Docs >
17501751 </MemberGroup >
@@ -1801,15 +1802,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
18011802## Remarks
18021803 Valid letters and decimal digits are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `UppercaseLetter`, `LowercaseLetter`, `TitlecaseLetter`, `ModifierLetter`, `OtherLetter`, or `DecimalDigitNumber`.
18031804
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-
18131805 ]]> </format >
18141806 </remarks >
18151807 <altmember cref =" M:System.Text.Rune.IsLetterOrDigit(System.Text.Rune)" />
@@ -1873,15 +1865,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
18731865
18741866 Valid letters and decimal digits are members of the following categories in <xref:System.Globalization.UnicodeCategory>: `UppercaseLetter`, `LowercaseLetter`, `TitlecaseLetter`, `ModifierLetter`, `OtherLetter`, or `DecimalDigitNumber`.
18751867
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-
18851868 ]]> </format >
18861869 </remarks >
18871870 <exception cref =" T:System.ArgumentNullException" >
@@ -2406,6 +2389,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
24062389|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
24072390|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
24082391
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+
24092399 ]]> </format >
24102400 </remarks >
24112401 </Docs >
@@ -2485,15 +2475,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
24852475|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
24862476|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
24872477
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-
24972478 ]]> </format >
24982479 </remarks >
24992480 <altmember cref =" M:System.Text.Rune.IsPunctuation(System.Text.Rune)" />
@@ -2584,15 +2565,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
25842565|U+05C6|U+17D4 to U+17D6|U+3001 to U+3003|U+FF5F to U+FF65|
25852566|U+05F3 and U+05F4|U+17D8 to U+17DA|U+3008 to U+3011||
25862567
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-
25962568 ]]> </format >
25972569 </remarks >
25982570 <exception cref =" T:System.ArgumentNullException" >
@@ -3121,6 +3093,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
31213093
31223094- Dingbats.
31233095
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+
31243103 ]]> </format >
31253104 </remarks >
31263105 </Docs >
@@ -3191,15 +3170,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
31913170
31923171- Dingbats.
31933172
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-
32033173 ]]> </format >
32043174 </remarks >
32053175 <altmember cref =" M:System.Text.Rune.IsSymbol(System.Text.Rune)" />
@@ -3281,15 +3251,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
32813251
32823252- Dingbats.
32833253
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-
32933254 ]]> </format >
32943255 </remarks >
32953256 <exception cref =" T:System.ArgumentNullException" >
@@ -3460,6 +3421,13 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
34603421
34613422- 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).
34623423
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+
34633431 ]]> </format >
34643432 </remarks >
34653433 </Docs >
@@ -3525,15 +3493,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
35253493
35263494- 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).
35273495
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-
35373496 ]]> </format >
35383497 </remarks >
35393498 <altmember cref =" M:System.Text.Rune.IsWhiteSpace(System.Text.Rune)" />
@@ -3606,15 +3565,6 @@ The following code example demonstrates <xref:System.Char.IsLetter%2A>.
36063565
36073566- 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).
36083567
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-
36183568 ]]> </format >
36193569 </remarks >
36203570 <exception cref =" T:System.ArgumentNullException" >
@@ -4698,6 +4648,18 @@ This member is an explicit interface member implementation. It can be used only
46984648 </AssemblyInfo >
46994649 <Docs >
47004650 <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 >
47014663 </Docs >
47024664 </MemberGroup >
47034665 <Member MemberName =" ToLower" >
@@ -4749,15 +4711,6 @@ This member is an explicit interface member implementation. It can be used only
47494711
47504712 Use <xref:System.String.ToLower%2A?displayProperty=nameWithType> to convert a string to lowercase.
47514713
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-
47614714 ]]> </format >
47624715 </remarks >
47634716 <block subset =" none" type =" usage" >
@@ -4819,15 +4772,6 @@ This member is an explicit interface member implementation. It can be used only
48194772## Remarks
48204773 Use <xref:System.String.ToLower%2A?displayProperty=nameWithType> to convert a string to lowercase.
48214774
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-
48314775 ]]> </format >
48324776 </remarks >
48334777 <exception cref =" T:System.ArgumentNullException" >
@@ -4911,6 +4855,18 @@ This member is an explicit interface member implementation. It can be used only
49114855 </AssemblyInfo >
49124856 <Docs >
49134857 <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 >
49144870 </Docs >
49154871 </MemberGroup >
49164872 <Member MemberName =" ToString" >
@@ -4959,13 +4915,6 @@ This member is an explicit interface member implementation. It can be used only
49594915 <remarks >
49604916 <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-
49694918 ]]> </format >
49704919 </remarks >
49714920 <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
50164965 <remarks >
50174966 <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-
50264968 ]]> </format >
50274969 </remarks >
50284970 <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
50755017## Remarks
50765018 The `provider` parameter is ignored; it does not participate in this operation.
50775019
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-
50875020 ]]> </format >
50885021 </remarks >
50895022 <altmember cref =" M:System.Char.Parse(System.String)" />
0 commit comments