Class BitHelper
Helps perform certain operations on primative types that deal with bits
Namespace: System.Dynamic.ExpandoObject
Assembly: ManagedBass.dll
Syntax
public static class BitHelper : object
Methods
HiByte(Int16)
The return value is the high-order byte of the specified value.
Declaration
public static byte HiByte(this short Word)
Parameters
Int16
Word
|
Returns
Byte
|
HiDword(Int64)
The return value is the high-order double word of the specified value.
Declaration
public static int HiDword(this long DWord)
Parameters
Int64
DWord
|
Returns
Int32
|
HiWord(Int32)
The return value is the high-order word of the specified value.
Declaration
public static short HiWord(this int DWord)
Parameters
Int32
DWord
|
Returns
Int16
|
LoByte(Int16)
The return value is the low-order byte of the specified value.
Declaration
public static byte LoByte(this short Word)
Parameters
Int16
Word
|
Returns
Byte
|
LoDword(Int64)
The return value is the low-order word of the specified value.
Declaration
public static int LoDword(this long DWord)
Parameters
Int64
DWord
|
Returns
Int32
|
LoWord(Int32)
The return value is the low-order word of the specified value.
Declaration
public static short LoWord(this int DWord)
Parameters
Int32
DWord
|
Returns
Int16
|
MakeLong(Int16, Int16)
Make an integer putting Low
in low 2-bytes and High
in high 2-bytes.
Declaration
public static int MakeLong(short Low, short High)
Parameters
Int16
Low
|
Int16
High
|
Returns
Int32
|