C Sharp (C#) - Classes and Objects
Identify the error in this constructor overloading code:
class Person {
public string name;
public Person(string n) { name = n; }
public Person(string n) { name = n.ToUpper(); }
}