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 (Int16)

Converts an Int16 to a character.

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

Parameters

value
The Int16 to be converted.

Return Value

value as a character.

Exceptions

Exception Type Condition
OverflowException if value is less than Char.MinValue.

See Also

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