C Sharp (C#) - Classes and Objects
What will be the output of this C# code?
class Book {
public string Title = "C# Basics";
}
Book b = new Book();
Console.WriteLine(b.Title);