using static System.Console;
public Complex(int i, int j) {
public override bool Equals(object o) {
return ((Complex)o).real == this.real && ((Complex)o).imaginary == this.imaginary;
public override string ToString() {
return string.Format("{0} + {1}i", real, imaginary);
public override int GetHashCode() {
return this.ToString().GetHashCode();
public static bool operator == (Complex x, Complex y) {
public static bool operator != (Complex x, Complex y) {
public static Complex operator +(Complex x, Complex y) {
return new Complex(x.real + y.real, x.imaginary + y.imaginary);
public static void Main() {
var x = new Complex(10,20);
var y = new Complex(10,20);
WriteLine("x diferente y");
WriteLine("y diferente z");