Mega Code Archive

 
Categories / C# Tutorial / Class
 

Use this to reference shadowed member variables

using System; class MyObject {     int x;     int y;     public MyObject(int x, int y)     {         this.x = x;         this.y = y;     } }