Converts a numeric value to a String. The SByte type is not CLS compliant. The CLS-compliant alternative is Byte.
[Visual Basic] The SByte type cannot be used in Visual Basic.
This method converts a numeric value to a String that is formatted using the specified format.
[C#] public virtual string Format(String, IServiceObjectProvider);
[C++] public: virtual String* Format(String*, IServiceObjectProvider);
[JScript] public function Format(String, IServiceObjectProvider) : String;
This method converts a numeric value to a String that is formatted using the specified number format.
[C#] public static string Format(sbyte, String, NumberFormatInfo);
[C++] public: static String* Format(char, String, NumberFormatInfo);
[JScript] public static function Format(SByte, String, NumberFormatInfo) : String;
Converts a numeric value to a formatted String.
[C#] public static string Format(sbyte, String);
[C++] public: static String* Format(char, String);
[JScript] public static function Format(SByte, String) : String;