Program in C# to Store Sentences in a Text File

This program will ask the user to input multiple sentences. Each sentence will be stored in a text file named "sentences.txt". The program will keep asking for new sentences until the user simply presses Enter without typing anything. Once the user finishes entering the sentences, the program will save them to the file and notify the user.



Group

File Handling in C#

Objective

1. Prompt the user to enter a sentence.
2. If the sentence is not empty, save it to a text file named "sentences.txt".
3. Continue asking the user for sentences until they press Enter without typing anything.
4. After collecting all the sentences, write them to the file and display a message confirming the data was saved.

Create a program to ask the user for several sentences (until they just press Enter) and store them in a text file named "sentences.txt".

Example C# Exercise

 Copy C# Code
using System;
using System.IO;

class Program
{
    static void Main()
    {
        // Define the file path where sentences will be stored
        string filePath = "sentences.txt";

        // Open the file to write the sentences
        using (StreamWriter writer = new StreamWriter(filePath))
        {
            string sentence;
            
            // Loop until the user presses Enter without typing anything
            while (true)
            {
                // Prompt the user to enter a sentence
                Console.WriteLine("Enter a sentence (or press Enter to finish): ");
                sentence = Console.ReadLine();

                // Check if the sentence is empty, if so, break out of the loop
                if (string.IsNullOrEmpty(sentence))
                {
                    break;
                }

                // Write the sentence to the text file
                writer.WriteLine(sentence);
            }
        }

        // Notify the user that the sentences have been saved
        Console.WriteLine("Sentences have been saved to 'sentences.txt'.");
    }
}

 Output

//Code Output:
Enter a sentence (or press Enter to finish): Hello, how are you?
Enter a sentence (or press Enter to finish): I am learning C#.
Enter a sentence (or press Enter to finish): This is fun!
Enter a sentence (or press Enter to finish): 
Sentences have been saved to 'sentences.txt'.

//Contents of "sentences.txt"
Hello, how are you?
I am learning C#.
This is fun!

Share this C# Exercise

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

  • Program in C# to Append Sentences to a Text File

    This program prompts the user to input several sentences and stores them in a text file named "sentences.txt". If the file already exists, the new sentences will be appended to the...

  • Program in C# to Display the Contents of a Text File

    This program reads and displays the contents of a specified text file on the screen. The name of the file can either be provided as a command line argument or, if no argument is gi...

  • Convert Text to HTML and Dump to File in C#

    This program implements a class TextToHtml that can convert several user-entered lines of text into an HTML sequence. The program will have methods to add text to an array, display...

  • Logger Class to Append Text with Date and Time in C#

    This program creates a Logger class with a static method Write. The Write method appends a specified text message to a log file, including the current date and time before the mess...

  • Simulating Unix 'More' Command in C#

    Create a C# program that mimics the functionality of the Unix command more, which allows the user to view content from a text file one screen at a time. The program will display 24...

  • Word Replacement Program in C#

    This program is designed to replace all occurrences of a specific word in a text file and save the result into a new file. The user provides the original file, the word to search f...