In many of the samples I have seen that the programmer use
this.DataContext =x;
vs simply using DataContext = x;
in the page code behind . I always use
DataContext = x;
in my code behind page to set the datacontext. The same is with other variables on the page, many use
this.Variable
to refer to it instead of simply using Variable . Whats the difference ?Or there is no difference and just programming practice .