Operators.RightShiftObject(Object, Object) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mewakili operator Visual Basic aritmetika right shift (>>).
API ini mendukung infrastruktur produk dan tidak dimaksudkan untuk digunakan langsung dari kode Anda.
public:
static System::Object ^ RightShiftObject(System::Object ^ Operand, System::Object ^ Amount);
public static object RightShiftObject(object Operand, object Amount);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The object types cannot be statically analyzed so their operators may be trimmed")]
public static object? RightShiftObject(object? Operand, object? Amount);
public static object? RightShiftObject(object? Operand, object? Amount);
static member RightShiftObject : obj * obj -> obj
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The object types cannot be statically analyzed so their operators may be trimmed")>]
static member RightShiftObject : obj * obj -> obj
Public Shared Function RightShiftObject (Operand As Object, Amount As Object) As Object
Parameter
- Operand
- Object
Required. Ekspresi numerik integral. Pola bit yang akan digeser. Jenis data harus merupakan jenis integral (SByte, , , Byte, Short, UShortInteger, , UInteger, atau LongULong).
- Amount
- Object
Required. Ekspresi numerik. Jumlah bit untuk menggeser pola bit. Jenis data harus atau diperluas Integer ke Integer.
Mengembalikan
Nilai numerik integral. Hasil pergeseran pola bit. Jenis data sama Operanddengan .
- Atribut
Keterangan
Kelas ini mendukung pengkompilasi Visual Basic dan tidak dimaksudkan untuk digunakan langsung dari kode Anda.
Berlaku untuk
Lihat juga
- Operator >> (Visual Basic)