YurikoCS.Triad.ToInt32 C# (CSharp) Method

ToInt32() public method

public ToInt32 ( ) : int
return int
        public int ToInt32()
        {
            return (int)(bytes[0] + (bytes[1] << 8) + (bytes[2] << 16));
        }