C Sharp (C#) - Classes and Objects
Identify the error in this C# class constructor and how to fix it:
class Book {
public string Title;
public Book(string title) {
title = Title;
}
}