/// <summary> /// Initialize a new instance of this class from an instance of "Hex" data. /// </summary> /// <param name="hexData">Hexadecimal data that will be used to create a bit array.</param> public Bits(Hex hexData) { createArray(hexData.ToBytes()); }
/// <summary> /// Initialize a new instance of this class from another instance of "Hex" value. /// </summary> /// <param name="hexData">Hex value.</param> public Hex(Hex hexData) { bytes = hexData.ToBytes(); }