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