Convert.ToSByte Method (Object)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Converts the value of the specified Object to an 8-bit signed integer.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <CLSCompliantAttribute(False)> _ Public Shared Function ToSByte ( _ value As Object _ ) As SByte
Parameters
- value
- Type: System.Object
An Object that implements the IConvertible interface or Nothing.
Return Value
Type: System.SByteAn 8-bit signed integer equivalent to the value of value, or zero if value is Nothing.
| Exception | Condition |
|---|---|
| InvalidCastException | value does not implement IConvertible. |
Show: