DecimalExtensionsPow(Decimal, Int32) Method

Returns the specified value raised to the specified power.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
C#
public static decimal Pow(
	this decimal value,
	int power
)

Parameters

value  Decimal
The value to be raised to a power.
power  Int32
The specified power.

Return Value

Decimal
The specified value raised to the specified power.

Usage Note

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).

Exceptions

OverflowExceptionpower is too large for the result to fit in a Decimal value.

See Also