C# 클래스 ManagedBass.BitHelper

Helps perform certain operations on primative types that deal with bits
파일 보기 프로젝트 열기: webmaster442/TCPlayer 1 사용 예제들

공개 메소드들

메소드 설명
HiByte ( short Word ) : byte

The return value is the high-order byte of the specified value.

HiDword ( long DWord ) : long

The return value is the high-order double word of the specified value.

HiWord ( int DWord ) : int

The return value is the high-order word of the specified value.

LoByte ( short Word ) : byte

The return value is the low-order byte of the specified value.

LoDword ( long DWord ) : long

The return value is the low-order word of the specified value.

LoWord ( int DWord ) : int

The return value is the low-order word of the specified value.

MakeLong ( short Low, short High ) : int

Make an integer putting Low in low 2-bytes and High in high 2-bytes.

MakeWord ( byte Low, byte High ) : short

Make an short from 2-bytes.

메소드 상세

HiByte() 공개 정적인 메소드

The return value is the high-order byte of the specified value.
public static HiByte ( short Word ) : byte
Word short
리턴 byte

HiDword() 공개 정적인 메소드

The return value is the high-order double word of the specified value.
public static HiDword ( long DWord ) : long
DWord long
리턴 long

HiWord() 공개 정적인 메소드

The return value is the high-order word of the specified value.
public static HiWord ( int DWord ) : int
DWord int
리턴 int

LoByte() 공개 정적인 메소드

The return value is the low-order byte of the specified value.
public static LoByte ( short Word ) : byte
Word short
리턴 byte

LoDword() 공개 정적인 메소드

The return value is the low-order word of the specified value.
public static LoDword ( long DWord ) : long
DWord long
리턴 long

LoWord() 공개 정적인 메소드

The return value is the low-order word of the specified value.
public static LoWord ( int DWord ) : int
DWord int
리턴 int

MakeLong() 공개 정적인 메소드

Make an integer putting Low in low 2-bytes and High in high 2-bytes.
public static MakeLong ( short Low, short High ) : int
Low short
High short
리턴 int

MakeWord() 공개 정적인 메소드

Make an short from 2-bytes.
public static MakeWord ( byte Low, byte High ) : short
Low byte
High byte
리턴 short