Converts a numeric value to a String.
Converts a numeric value to a String with specified format string.
[Visual Basic] Overloads Public Shared Function Format(Single, String) As String
[C#] public static string Format(float, String);
[C++] public: static String* Format(float, String);
[JScript] public static function Format(float, String) : String;
This method converts a numeric value to a String with the specified format string provided by IServiceObjectProvider.
[Visual Basic] Overloads Overridable Public Function Format(String, IServiceObjectProvider) As String
[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 with the specified format string provided by NumberFormatInfo.
[Visual Basic] Overloads Public Shared Function Format(Single, String, NumberFormatInfo) As String
[C#] public static string Format(float, String, NumberFormatInfo);
[C++] public: static String* Format(float, String, NumberFormatInfo);
[JScript] public static function Format(float, String, NumberFormatInfo) : String;