public ExtendedInt(ExtendedInt instance, bool isConst = false) : this(isConst) { Value = instance.Value; IsNegative = instance.IsNegative; }
public void Mul(ExtendedInt instance) { Mul(instance.Value); }
public void Sub(ExtendedInt instance) { Sub(instance.Value); }
public void Div(ExtendedInt instance) { Div(instance.Value); }
public void Add(ExtendedInt instance) { Add(instance.Value); }