Improved Version of Tasks Database with Functions

This C# program demonstrates an improved version of a tasks database by splitting it into different functions. It allows the user to manage a list of tasks such as adding, displaying, and removing tasks from the database. The program makes use of several functions to handle these tasks, making the code more organized and maintainable. The user interacts with the program via a simple text-based menu, where they can choose different operations on the task list.



Group

Functions in C#

Objective

1. Define a Task class to represent a task with properties like task name, description, and due date.
2. Create a function to display all tasks in the list.
3. Implement a function to add new tasks to the list.
4. Create a function to remove a task by its index.
5. Implement a simple text-based user interface that allows the user to choose different operations: add task, display tasks, remove task, or exit.
6. The program should be organized in such a way that each task operation (add, remove, display) is encapsulated within its respective function.

Write in C# an improved version of the "tasks database", splitting it into functions.

Example C# Exercise

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

class Program
{
    // Define the Task class
    public class Task
    {
        public string Name { get; set; }
        public string Description { get; set; }
        public DateTime DueDate { get; set; }

        // Constructor to initialize a new task
        public Task(string name, string description, DateTime dueDate)
        {
            Name = name;
            Description = description;
            DueDate = dueDate;
        }
    }

    // Create a list to store tasks
    static List taskList = new List();

    // Function to display all tasks in the list
    public static void DisplayTasks()
    {
        if (taskList.Count == 0)
        {
            Console.WriteLine("No tasks available.");
            return;
        }

        Console.WriteLine("Tasks List:");
        foreach (var task in taskList)
        {
            Console.WriteLine($"Task: {task.Name}, Description: {task.Description}, Due Date: {task.DueDate.ToShortDateString()}");
        }
    }

    // Function to add a new task to the list
    public static void AddTask(string name, string description, DateTime dueDate)
    {
        taskList.Add(new Task(name, description, dueDate));
        Console.WriteLine("Task added successfully.");
    }

    // Function to remove a task by its index
    public static void RemoveTask(int index)
    {
        if (index >= 0 && index < taskList.Count)
        {
            taskList.RemoveAt(index);
            Console.WriteLine("Task removed successfully.");
        }
        else
        {
            Console.WriteLine("Invalid index. Task not found.");
        }
    }

    // Main method to display the menu and handle user input
    public static void Main()
    {
        int choice;

        do
        {
            // Display the menu
            Console.WriteLine("\nTask Manager Menu:");
            Console.WriteLine("1. Display Tasks");
            Console.WriteLine("2. Add Task");
            Console.WriteLine("3. Remove Task");
            Console.WriteLine("4. Exit");
            Console.Write("Enter your choice: ");
            choice = int.Parse(Console.ReadLine());

            switch (choice)
            {
                case 1:
                    DisplayTasks();
                    break;

                case 2:
                    // Prompt user for task details
                    Console.Write("Enter task name: ");
                    string name = Console.ReadLine();
                    Console.Write("Enter task description: ");
                    string description = Console.ReadLine();
                    Console.Write("Enter task due date (MM/DD/YYYY): ");
                    DateTime dueDate = DateTime.Parse(Console.ReadLine());

                    // Add the task
                    AddTask(name, description, dueDate);
                    break;

                case 3:
                    // Prompt user for task index to remove
                    Console.Write("Enter task index to remove: ");
                    int index = int.Parse(Console.ReadLine());

                    // Remove the task
                    RemoveTask(index);
                    break;

                case 4:
                    Console.WriteLine("Exiting the program.");
                    break;

                default:
                    Console.WriteLine("Invalid choice. Please try again.");
                    break;
            }

        } while (choice != 4);
    }
}

 Output

Task Manager Menu:
1. Display Tasks
2. Add Task
3. Remove Task
4. Exit
Enter your choice: 2
Enter task name: Finish homework
Enter task description: Complete the math assignment
Enter task due date (MM/DD/YYYY): 05/10/2025
Task added successfully.

Task Manager Menu:
1. Display Tasks
2. Add Task
3. Remove Task
4. Exit
Enter your choice: 1
Tasks List:
Task: Finish homework, Description: Complete the math assignment, Due Date: 05/10/2025

Task Manager Menu:
1. Display Tasks
2. Add Task
3. Remove Task
4. Exit
Enter your choice: 3
Enter task index to remove: 0
Task removed successfully.

Task Manager Menu:
1. Display Tasks
2. Add Task
3. Remove Task
4. Exit
Enter your choice: 4
Exiting the program.

Share this C# Exercise

More C# Practice Exercises of Functions 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#.

  • Find the Maximum Value in an Array of Real Numbers in C#

    This C# program demonstrates how to write a function that receives an array of real numbers as a parameter and returns the greatest value from that array. The function iterates thr...

  • Calculate Factorial Using an Iterative Approach in C#

    This C# program demonstrates how to calculate the factorial of a number using an iterative approach. The factorial of a number is the product of all integers from 1 to that number....

  • Write a Centered Title with Lines in C#

    In this C# program, we will create a function named "WriteTitle" that takes a string as input and displays it centered on the screen with a line above and below the text. The text ...

  • Command Line Title Writer in C#

    This C# program allows the user to provide a title from the command line. The program uses the previously created "WriteTitle" function to display the title in uppercase, centered ...

  • Count Digits and Vowels in a String in C#

    This C# function is designed to calculate the number of numeric digits and vowels within a given text string. The function, named "CountDV", accepts three parameters: the string to...

  • Check if a Character is Alphabetic in C#

    This C# function is designed to check if a given character is alphabetic, meaning it falls within the range of letters A to Z (both uppercase and lowercase). The function should re...