C# | Convert.ToChar(String, IFormatProvider) Method
Last Updated :
27 Nov, 2019
This method is used to convert the value of the specified object to its equivalent Unicode character, using the specified culture-specific formatting information.
Syntax:
public static char ToChar (object value, IFormatProvider provider);
Parameters:
- value: It is an string of length 1 or null.
- provider: It is an object that supplies culture-specific formatting information.
Return Value: This method returns a Unicode character which is equivalent to the first and only character in
value.
Exceptions:
- ArgumentNullException: If the value is null.
- FormatException: If the length of value is not 1.
Below programs illustrate the use of
Convert.ToChar(String, IFormatProvider) Method:
Example 1:
csharp
// C# program to demonstrate the
// Convert.ToChar() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of CultureInfo
CultureInfo cultures = new CultureInfo("en-US");
// declaring and initializing
// String array
string[] values = {"A", "B", "a",
"b", "x", "z"};
// calling get() Method
Console.WriteLine("Converted char value "+
"of specified strings: ");
for (int j = 0; j < values.Length; j++) {
get(values[j], cultures);
}
}
catch (FormatException e) {
Console.WriteLine("\n");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (OverflowException e) {
Console.WriteLine("\n");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining get() method
public static void get(string s,
CultureInfo cultures)
{
// converting string to specified char
char val = Convert.ToChar(s, cultures);
// display the converted char value
Console.Write(" {0}, ", val);
}
}
Output:
Converted char value of specified strings:
A, B, a, b, x, z,
Example 2: For
ArgumentNullException
csharp
// C# program to demonstrate the
// Convert.ToChar() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of CultureInfo
CultureInfo cultures = new CultureInfo("en-US");
// declaring and initializing String array
string[] values = {"A", "B", "a",
"b", "x", "z"};
// calling get() Method
Console.WriteLine("Converted char value "+
"of specified strings: ");
for (int j = 0; j < values.Length; j++) {
get(values[j], cultures);
}
Console.WriteLine("\n");
string s = null;
Console.WriteLine("s is null ");
// converting string to specified char
char val = Convert.ToChar(s, cultures);
// display the converted char value
Console.Write(" {0}, ", val);
}
catch (FormatException e) {
Console.WriteLine("\n");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining get() method
public static void get(string s, CultureInfo cultures)
{
// converting string to specified char
char val = Convert.ToChar(s, cultures);
// display the converted char value
Console.Write(" {0}, ", val);
}
}
Output:
Converted char value of specified strings:
A, B, a, b, x, z,
s is null
Exception Thrown: System.ArgumentNullException
Example 3: For
FormatException
csharp
// C# program to demonstrate the
// Convert.ToChar() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of CultureInfo
CultureInfo cultures = new CultureInfo("en-US");
// declaring and initializing String array
string value1 = "x";
string value2 = "xyz";
get(value1, cultures);
Console.WriteLine("\nlength of value2 is not 1");
get(value2, cultures);
}
catch (FormatException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
catch (ArgumentNullException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
// Defining get() method
public static void get(string s,
CultureInfo cultures)
{
// converting string to specified char
char val = Convert.ToChar(s, cultures);
// display the converted char value
Console.WriteLine("string to char value : {0} ", val);
}
}
Output:
string to char value : x
length of value2 is not 1
Exception Thrown: System.FormatException
Reference:
Similar Reads
C# | Convert.ToDecimal(String, IFormatProvider) Method This method is used to convert the specified string representation of a number to an equivalent decimal number, using the specified culture-specific formatting information. Syntax: public static decimal ToDecimal (string value, IFormatProvider provider); Parameters: value: It is a string that contai
4 min read
C# | Convert.ToString(String, IFormatProvider) Method This method is used to returns the specified string instance and no actual conversion is performed.Syntax: public static string ToString (String, IFormatProvider); Parameters: value: It is the string to return.provider: It is an object that supplies culture-specific formatting information. This para
2 min read
C# | Convert.ToByte(String, IFormatProvider) Method This method is used to convert the specified string representation of a number to an equivalent 8-bit unsigned integer, using specified culture-specific formatting information.Syntax: public static byte ToByte (string value, IFormatProvider provider); Parameters: value: It is a string that contains
4 min read
C# | Convert.ToBoolean(String, IFormatProvider) Method This method is used to convert the specified string representation of a logical value to its Boolean equivalent, using the specified culture-specific formatting information.Syntax: public static bool ToBoolean (string value, IFormatProvider provider); Parameters: value: It is a string that contains
2 min read
C# | Convert.ToSByte(String, IFormatProvider) Method This method is used to convert the specified string representation of a number to an equivalent 8-bit signed integer, using the specified culture-specific formatting information. Syntax: public static sbyte ToSByte (string value, IFormatProvider provider); Parameters: value: It is a string that cont
4 min read