Display Book Data from Previous Program in C#

This program will display the data about books that were stored by the previous program. It will retrieve and show each book's details, including the title, author, and year of publication. This exercise helps you understand how to retrieve and present stored data in C# and work with collections such as lists.



Group

Working with Relational Databases in C#

Objective

1. Retrieve the list of books from the previous program where data is stored.
2. Loop through the list of books and display each book's title, author, and year of publication.
3. Use a method to display the details in a formatted way.
4. Ensure the program handles the case where no books are available to display.

Create a program to display the data about books which your previous program has stored.

Example C# Exercise

 Copy C# Code
using System;
using System.Collections.Generic;

class Book
{
    // Book class to store book details
    public string Title { get; set; }
    public string Author { get; set; }
    public int Year { get; set; }

    // Constructor to initialize a new book
    public Book(string title, string author, int year)
    {
        Title = title;
        Author = author;
        Year = year;
    }
}

class Program
{
    static void Main()
    {
        // Create a list of books (this is from the previous program)
        List books = new List
        {
            new Book("The Great Gatsby", "F. Scott Fitzgerald", 1925),
            new Book("1984", "George Orwell", 1949),
            new Book("To Kill a Mockingbird", "Harper Lee", 1960)
        };

        // Check if there are any books to display
        if (books.Count == 0)
        {
            Console.WriteLine("No books available to display.");
        }
        else
        {
            // Loop through each book and display its details
            foreach (var book in books)
            {
                Console.WriteLine("Title: " + book.Title);
                Console.WriteLine("Author: " + book.Author);
                Console.WriteLine("Year of Publication: " + book.Year);
                Console.WriteLine();
            }
        }
    }
}

 Output

Title: The Great Gatsby
Author: F. Scott Fitzgerald
Year of Publication: 1925

Title: 1984
Author: George Orwell
Year of Publication: 1949

Title: To Kill a Mockingbird
Author: Harper Lee
Year of Publication: 1960

Share this C# Exercise

More C# Practice Exercises of Working with Relational Databases in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Book Information Management Program in C#

    This program allows the user to enter information about books, such as title, author, and year of publication. The user can also browse the existing data to view the list of entere...

  • Storing Book Information in SQLite Database in C#

    This exercise focuses on creating a program that asks the user for data about books, such as the title, author, genre, and summary, and stores this data in a SQLite database. The p...