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

Converts a UInt32 to a character.

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

Parameters

value
The UInt32 to be converted.

Return Value

value as a character.

Exceptions

Exception Type Condition
OverflowException if value is greater than Char.MaxValue.

See Also

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