Data Types C#

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