protected bool Equals(AssemblerLine other) { var x = this.ToString(); var y = other.ToString(); var result = x == y; return(result); }
protected bool Equals(AssemblerLine other) { return(ToString() == other.ToString()); }