NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SByte.Format

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.

Overload List [C#, C++, JScript]

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;

See Also

SByte Structure | SByte Members | System Namespace