StrictMath.PowExact Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
| Nome | Descrizione |
|---|---|
| PowExact(Int32, Int32) |
Restituisce |
| PowExact(Int64, Int32) |
Restituisce |
PowExact(Int32, Int32)
Restituisce x la potenza di , generando un'eccezione se il risultato esegue l'overflow di nun oggetto int.
[Android.Runtime.Register("powExact", "(II)I", "", ApiSince=37)]
public static int PowExact(int x, int n);
[<Android.Runtime.Register("powExact", "(II)I", "", ApiSince=37)>]
static member PowExact : int * int -> int
Parametri
- x
- Int32
base.
- n
- Int32
esponente.
Valori restituiti
x elevato alla potenza di n.
- Attributi
Si applica a
PowExact(Int64, Int32)
Restituisce x la potenza di , generando un'eccezione se il risultato esegue l'overflow di nun oggetto long.
[Android.Runtime.Register("powExact", "(JI)J", "", ApiSince=37)]
public static long PowExact(long x, int n);
[<Android.Runtime.Register("powExact", "(JI)J", "", ApiSince=37)>]
static member PowExact : int64 * int -> int64
Parametri
- x
- Int64
base.
- n
- Int32
esponente.
Valori restituiti
x elevato alla potenza di n.
- Attributi