C Sharp (C#) - Classes and Objects
Find the error in this constructor overloading example:
class Book {
public Book(string title) {}
public Book(string title, string author) {}
public Book(string author) {}
}