public UInt128(byte[] vch, bool lendian = true) { this.value = new UIntBase(WIDTH, vch, lendian); }
internal UInt128(BigInteger value) { this.value = new UIntBase(WIDTH, value); }
public UInt128(string hex) { this.value = new UIntBase(WIDTH, hex); }
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)); }