ToSByte Method (Object, IFormatProvider)

Convert.ToSByte Method (Object, IFormatProvider)

[ 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 using the specified culture-specific formatting information.

This API is not CLS-compliant. 

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
<CLSCompliantAttribute(False)> _
Public Shared Function ToSByte ( _
	value As Object, _
	provider As IFormatProvider _
) As SByte

Parameters

value
Type: System.Object
An Object that implements the IConvertible interface.
provider
Type: System.IFormatProvider
An IFormatProvider interface implementation that supplies culture-specific formatting information.

Return Value

Type: System.SByte
An 8-bit signed integer equivalent to the value of value, or zero if value is Nothing.

provider enables the user to specify culture-specific conversion information about the contents of value. For example, if value is a String that represents a number, provider could supply culture-specific information about the notation used to represent that number.

The base types ignore provider; however, it is honored if value is a user-defined type that implements the IConvertible interface.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft