예제 #1
0
 /// <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());
 }
예제 #2
0
파일: Bits.cs 프로젝트: fishxz/omni-bot
 /// <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());
 }
예제 #3
0
파일: Hex.cs 프로젝트: fishxz/omni-bot
 /// <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();
 }
예제 #4
0
 /// <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();
 }