DecimalExtensionsPow(Decimal, Int32) Method
Returns the specified value raised to the specified power.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
public static decimal Pow(
decimal value,
int power
)
Public Shared Function Pow (
value As Decimal,
power As Integer
) As Decimal
public:
static Decimal Pow(
Decimal value,
int power
)
static member Pow :
value : decimal *
power : int -> decimal
- value Decimal
- The value to be raised to a power.
- power Int32
- The specified power.
DecimalThe specified
value raised to the specified
power.