DecimalExtensionsLog(Decimal) Method
Returns the natural (base
e) logarithm of a
Decimal value.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static decimal Log(
this decimal value
)
<ExtensionAttribute>
Public Shared Function Log (
value As Decimal
) As Decimal
public:
[ExtensionAttribute]
static Decimal Log(
Decimal value
)
[<ExtensionAttribute>]
static member Log :
value : decimal -> decimal
- value Decimal
- The value whose logarithm is to be found. Must be greater than zero.
DecimalThe natural logarithm of
value.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).