public void F(StructTest st) { Console.WriteLine(this.GetHashCode()); Console.WriteLine(st.GetHashCode()); this = st; Console.WriteLine(this.GetHashCode()); Console.WriteLine(st.GetHashCode()); }
static void Main(string[] args) { // Point m; //// p.x = 10; // int x = new int(); // Point p =new Point(); // Console.WriteLine(p); // m.y = 15; // Console.WriteLine(x); // Point p1=new Point(); // Point p2= new Point(); // p1 = p2; // p1.x = 10; // Console.WriteLine(p2.x); StructTest st = new StructTest(10); st.F(st); ClassTest ct = new ClassTest(30); ct.F(ct); Console.ReadKey(); }