DecimalExtensionsToRoundtripString Method
Returns a culture-invariant
String representation of the given
Decimal value,
from which the original value can be parsed without losing any information.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static string ToRoundtripString(
this decimal value
)
<ExtensionAttribute>
Public Shared Function ToRoundtripString (
value As Decimal
) As String
public:
[ExtensionAttribute]
static String^ ToRoundtripString(
Decimal value
)
[<ExtensionAttribute>]
static member ToRoundtripString :
value : decimal -> string
- value Decimal
- A Decimal value to be converted to String.
StringA
Decimal value, from which the original value can be parsed without losing any information.In Visual Basic and C#, you can call this method as an instance method on any object of type
Decimal. 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).