Convert.ToChar Method (SByte)
.NET Framework (current version)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Converts the value of the specified 8-bit signed integer to its equivalent Unicode character.
This API is not CLS-compliant.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.SByte
The 8-bit signed integer to convert.
Exception | Condition |
---|---|
OverflowException | value is less than Char.MinValue. |
The following example converts an array of signed bytes to Char values.
sbyte[] numbers = { SByte.MinValue, -1, 40, 80, 120, SByte.MaxValue }; char result; foreach (sbyte number in numbers) { try { result = Convert.ToChar(number); Console.WriteLine("{0} converts to '{1}'.", number, result); } catch (OverflowException) { Console.WriteLine("{0} is outside the range of the Char data type.", number); } } // The example displays the following output: // -128 is outside the range of the Char data type. // -1 is outside the range of the Char data type. // 40 converts to '('. // 80 converts to 'P'. // 120 converts to 'x'. // 127 converts to '⌂'.
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: