|
UtilsExtensionsToStringInv Method
|
output a double precision number using '.' as decimal separator
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static string ToStringInv(
this double v
)
<ExtensionAttribute>
Public Shared Function ToStringInv (
v As Double
) As String
public:
[ExtensionAttribute]
static String^ ToStringInv(
double v
)
[<ExtensionAttribute>]
static member ToStringInv :
v : float -> string
Parameters
- v
- Type: SystemDouble
value to be converted to string
Return Value
Type:
Stringnumber as string with '.' as decimal separator
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also