Complete these tasks to reinforce what you learned in this module.
Write a class Book with Title and Author properties and a constructor taking both. Create a book with 1984 and Orwell, then print exactly Book: 1984 by Orwell.
public Book(string title, string author) and has no return type.using System;
// Write the Book class here
class Program
{
static void Main()
{
// Create the book and print the description
}
}