Decimal.IConvertible.ToSByte(IFormatProvider) Method

Definition

Important

This API is not CLS-compliant.

For a description of this member, see ToSByte(IFormatProvider).

 virtual System::SByte System.IConvertible.ToSByte(IFormatProvider ^ provider) = IConvertible::ToSByte;
sbyte IConvertible.ToSByte (IFormatProvider provider);
[System.CLSCompliant(false)]
sbyte IConvertible.ToSByte (IFormatProvider provider);
abstract member System.IConvertible.ToSByte : IFormatProvider -> sbyte
override this.System.IConvertible.ToSByte : IFormatProvider -> sbyte
[<System.CLSCompliant(false)>]
abstract member System.IConvertible.ToSByte : IFormatProvider -> sbyte
override this.System.IConvertible.ToSByte : IFormatProvider -> sbyte
Function ToSByte (provider As IFormatProvider) As SByte Implements IConvertible.ToSByte

Parameters

provider
IFormatProvider

This parameter is ignored.

Returns

The value of the current instance, converted to a SByte.

Implements

Attributes

Exceptions

The resulting integer value is less than SByte.MinValue or greater than SByte.MaxValue.

Remarks

This member is an explicit interface member implementation. It can be used only when the Decimal instance is cast to an IConvertible interface. The recommended alternative is to call either the Decimal.ToSByte method or the Convert.ToSByte method.

Applies to