NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Convert.ToChar (Int32)

Converts an Int32 to a character.

[Visual Basic]
Overloads Public Shared Function ToChar( _
   ByVal value As Integer _
) As Char
[C#]
public static char ToChar(
   int value
);
[C++]
public: static __wchar_t ToChar(
   int value
);
[JScript]
public static function ToChar(
   value : int
) : Char;

Parameters

value
The number to be converted.

Return Value

The converted value.

Exceptions

Exception Type Condition
OverflowException is thrown if value is greater than Char.MaxValue or less than Char.MinValue.

See Also

Convert Class | Convert Members | System Namespace | Convert.ToChar Overload List