Group
Dynamic Memory Management in C#
Objective
1. Read the contents of two text files.
2. Merge the contents from both files into a single collection (e.g., a list).
3. Sort the collection alphabetically.
4. Display the sorted contents to the user.
5. Handle any errors or exceptions that may occur during file reading or writing.
Create a program that reads the contents of two different files, merges them, and sorts them alphabetically.
Example C# Exercise
Show C# Code
using System;
using System.Collections.Generic;
using System.IO;
class FileMerger
{
// Method to read the contents of a file and return it as a list of strings
static List ReadFile(string fileName)
{
// Create a list to hold the file contents
List lines = new List();
try
{
// Read all lines from the file and add them to the list
lines.AddRange(File.ReadAllLines(fileName));
}
catch (Exception ex)
{
// Handle any errors that may occur during file reading
Console.WriteLine($"Error reading file {fileName}: {ex.Message}");
}
return lines;
}
// Method to merge and sort the contents of two files
static void MergeAndSortFiles(string file1, string file2)
{
// Read the contents of both files
List file1Contents = ReadFile(file1);
List file2Contents = ReadFile(file2);
// Combine the contents of both files
List mergedContents = new List();
mergedContents.AddRange(file1Contents);
mergedContents.AddRange(file2Contents);
// Sort the merged contents alphabetically
mergedContents.Sort();
// Display the sorted contents
Console.WriteLine("Sorted Contents:");
foreach (var item in mergedContents)
{
Console.WriteLine(item);
}
}
static void Main()
{
// Specify the file names (modify these paths according to your files)
string file1 = "file1.txt";
string file2 = "file2.txt";
// Merge and sort the files
MergeAndSortFiles(file1, file2);
}
}
Output
Sorted Contents:
Cat
Chair
Dog
Table