How to exchange two variables for the value without the third variable -------------------- Method 1 ---------- ----------- i = i j; j = ij; i = IJ; ------------------- Method 2-- ------------------- Public String i {get {return j;} set {i = j;}} public string j {get {Return i;} set {j = I;}}