SByte::ToString Method (String)
Converts the numeric value of this instance to its equivalent string representation, using the specified format.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- format
- Type: System::String
A standard or custom numeric format string.
Return Value
Type: System::StringThe string representation of the value of this instance as specified by format.
| Exception | Condition |
|---|---|
| FormatException | format is invalid. |
The format parameter can be any valid standard numeric format specifier, or any combination of custom numeric format specifiers. If format is equal to String::Empty or is nullptr, the return value of the current SByte object is formatted with the general format specifier ("G"). If format is any other value, the method throws a FormatException.
The .NET Framework provides extensive formatting support, which is described in greater detail in the following formatting topics:
For more information about numeric format specifiers, see Standard Numeric Format Strings and Custom Numeric Format Strings.
For more information about support for formatting in the .NET Framework, see Formatting Types.
The format of the returned string is determined by the NumberFormatInfo object for the current culture. Depending on the format parameter, this object controls symbols such as the negative sign, the group separator, and the decimal point symbol in the output string. To provide formatting information for cultures other than the current culture, call the ToString(String, IFormatProvider) overload.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.