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

Converts an Int16 to an SByte.

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

Parameters

value
The number to be converted.

Return Value

The value as an SByte .

Exceptions

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

See Also

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