C# Класс Deveel.Data.Util.BytesUtil

Показать файл Открыть проект

Открытые методы

Метод Описание
ReadInt4 ( byte arr, int offset ) : int
ReadInt8 ( byte arr, int offset ) : long
URShift ( int number, int bits ) : int

Operates a shift on the given integer by the number of bits specified.

WriteInt8 ( long value, byte arr, int offset ) : void

Описание методов

ReadInt4() публичный статический Метод

public static ReadInt4 ( byte arr, int offset ) : int
arr byte
offset int
Результат int

ReadInt8() публичный статический Метод

public static ReadInt8 ( byte arr, int offset ) : long
arr byte
offset int
Результат long

URShift() публичный статический Метод

Operates a shift on the given integer by the number of bits specified.
public static URShift ( int number, int bits ) : int
number int The number to shift.
bits int The number of bits to shift the given number.
Результат int

WriteInt8() публичный статический Метод

public static WriteInt8 ( long value, byte arr, int offset ) : void
value long
arr byte
offset int
Результат void