Ejemplo n.º 1
0
 public UInt128(byte[] vch, bool lendian = true)
 {
     this.value = new UIntBase(WIDTH, vch, lendian);
 }
Ejemplo n.º 2
0
 internal UInt128(BigInteger value)
 {
     this.value = new UIntBase(WIDTH, value);
 }
Ejemplo n.º 3
0
 public UInt128(string hex)
 {
     this.value = new UIntBase(WIDTH, hex);
 }
Ejemplo n.º 4
0
 public static bool operator ==(UInt128 a, UInt128 b)
 {
     return(UIntBase.Comparison(a.value, b.value) == 0);
 }
Ejemplo n.º 5
0
 public UIntBase(int width, UIntBase value) : this(width)
 {
     SetValue(value.value);
 }
Ejemplo n.º 6
0
 public static int Comparison(UIntBase a, UIntBase b)
 {
     return(a.CompareTo(b));
 }