RatioMaster_source.RM.ToHexString C# (CSharp) Method

ToHexString() static private method

static private ToHexString ( byte bytes ) : string
bytes byte
return string
        internal static string ToHexString(byte[] bytes)
        {
            char[] hexDigits = {
                    '0', '1', '2', '3', '4', '5', '6', '7',
                    '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'
                    };

            char[] chars = new char[bytes.Length * 2];
            for (int i = 0; i < bytes.Length; i++)
            {
                int b = bytes[i];
                chars[i * 2] = hexDigits[b >> 4];
                chars[i * 2 + 1] = hexDigits[b & 0xF];
            }

            return new string(chars);
        }