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

Converts a Object to an SByte.

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

Parameters

value
The number to be converted.

Return Value

value as an SByte .

Exceptions

Exception Type Condition
InvalidCastException if this object cannot be coerced to an SByte.

See Also

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