public static Integer32 operator +(Integer16 firstInt, Integer32 secondInt) { IntegerTools.CheckForNull(firstInt); return(new Integer32(firstInt.Value + secondInt.Value)); }
public override bool Equals(object obj) { return(IntegerTools.CompareWithInteger32(this, obj)); }
public static bool operator ==(Integer32 firstInt, object secondInt) { return(IntegerTools.CompareWithInteger32(firstInt, secondInt)); }
public override bool Equals(object obj) { return(obj is not null && IntegerTools.CompareWithUInteger8(this, obj)); }