C Sharp (C#) - Classes and Objects
What is wrong with this C# class?
class Employee {
public string name;
public void Employee(string n) {
name = n;
}
}