namespace PMS5003
{
public class Utils
{
///
/// Combines two bytes and returns the results ((High RSHIFT 8) | Low)
///
/// The high byte.
/// The low byte.
///
public static uint CombineBytes(byte high, byte low)
{
return (uint)(low | (high << 8));;
}
}
}