using System; public class Test { public static void Main() { byte[] myBytes = BitConverter.GetBytes(255); ushort myVal = 0; myVal = BitConverter.ToUInt16(myBytes, 0); Console.WriteLine(myVal); } }