IShiftOperators<TSelf,TOther,TResult>.RightShift(TSelf, TOther) Operatore

Definizione

Sposta un valore a destra di una determinata quantità.

public:
 static TResult operator >>(TSelf value, TOther shiftAmount);
public static abstract TResult operator >>(TSelf value, TOther shiftAmount);
static member ( >>> ) : 'Self * 'Other -> 'Result
Public Shared Operator >> (value As TSelf, shiftAmount As TOther) As TResult

Parametri

value
TSelf

Valore spostato a destra da shiftAmount.

shiftAmount
TOther

Quantità in base alla quale value viene spostato a destra.

Valori restituiti

TResult

Risultato dello spostamento value verso destra da shiftAmount.

Commenti

Questa operazione è destinata a eseguire uno spostamento a destra con segno (altrimenti noto come aritmetico) sui tipi con segno.

Si applica a