BigInteger.UnsignedRightShift(BigInteger, Int32) Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déplace une valeur à droite d’un montant donné.
public:
static System::Numerics::BigInteger op_UnsignedRightShift(System::Numerics::BigInteger value, int shiftAmount) = System::Numerics::IShiftOperators<System::Numerics::BigInteger, int, System::Numerics::BigInteger>::op_UnsignedRightShift;
public static System.Numerics.BigInteger op_UnsignedRightShift(System.Numerics.BigInteger value, int shiftAmount);
static member op_UnsignedRightShift : System.Numerics.BigInteger * int -> System.Numerics.BigInteger
Public Shared op_UnsignedRightShift (value As BigInteger, shiftAmount As Integer) As BigInteger
Paramètres
- value
- BigInteger
Valeur qui est décalée vers la droite par shiftAmount.
- shiftAmount
- Int32
Montant par lequel value est décalé vers la droite.
Retours
Résultat du déplacement value vers la droite par shiftAmount.
Implémente
Remarques
Cette opération effectue un décalage droit non signé (autrement appelé logique) sur tous les types.