// C# syntax
// Login and Fork to a new fiddle.
// Add code lines under each direction.
// Hit Save.
// Copy your fiddle link and submit it into the Blackboard assignment.
using System;
public class Program
{
public static void Main()
// Copy your Book class code from ASP.Net 2-1 into this fiddle.
// Instantiate a book object from the Book class.
// Assign the book Title property to your favorite book title.
// Assign the book NumberOfPages to the number of pages for your favorite book title.
// Output the title and number of pages on 1 line using the class exactly.
// Example : Lords of the Rings: The Return of the King (544 pages)
Book testBook = new Book();
testBook.Title = "Watchmen";
testBook.NumberOfPages = 145;
Console.WriteLine(testBook.Title + " (" + testBook.NumberOfPages + " pages)");
}
public class Book
public string Title;
public int NumberOfPages;