BitSharp.Common.Bits.ToString C# (CSharp) Method

ToString() public static method

public static ToString ( byte value, int startIndex ) : string
value byte
startIndex int
return string
        public static string ToString(byte[] value, int startIndex = 0)
        {
            return BitConverter.ToString(Order(value), startIndex);
        }