Magazine, Novel, ReferenceBook , Miscellaneous
public static void Main ()
Console.Write("\n\nInsert the information of books :\n");
Console.WriteLine("Information of book :");
Console.Write("Input name of the book : ");
books.title= Console.ReadLine();
Console.Write("enter price of the book : ");
books.price = Convert.ToInt32(Console.ReadLine());
Console.Write("enter BookID : ");
books.book_id= Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Book name is {0}\nBook price is:{1}\nBook id is:{2}\nBooktype is:{3}", books.title,books.price,books.book_id,(int)Booktype.Miscellaneous);