Пример #1
0
 public void F(StructTest st)
 {
     Console.WriteLine(this.GetHashCode());
     Console.WriteLine(st.GetHashCode());
     this = st;
     Console.WriteLine(this.GetHashCode());
     Console.WriteLine(st.GetHashCode());
 }
Пример #2
0
        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();
        }