// 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 class Book
public string Title { get; set; }
public int NumberOfPages { get; set; }
}
public static void Main()
Console.WriteLine("ASP.Net 2-2");
// Copy your Book class code from ASP.Net 2-1 into this fiddle.
// Instantiate a book object from the Book class.
Book book = new Book();
// Assign the book Title property to your favorite book title.
book.Title = "An Ember in the Ashes";
// Assign the book NumberOfPages to the number of pages for your favorite book title.
book.NumberOfPages = 382;
// Output the title and number of pages on 1 line using the class exactly.
Console.WriteLine(book.Title + ":" )
// Example : Lords of the Rings: The Return of the King (544 pages)