Convert Byte to Integer
using System; public class Utility { public static int bytesToInt(byte a) { return (int)a; } }