please could you explain me what is the difference between this two implementation of constructors:
public User(string a, string b)
{
name = a;
location = b;
}
and this one:
public User(string a, string b)
{
this.name = a;
this.location = b;
}
From the compiler point of view I don't see any difference. Please explain it.