C Sharp _ How would I print the contents from my file ? using System;using System.Collections.Generic;using System.IO; // for streamreader using System.Linq;using System.Text;using System.Threading.Tasks; namespace SullivanS_Assignement6{ class Program { static void Main(string[] args) { Console.Write("Please enter the file path: "); string filePath = Console.ReadLine(); Console.Write("Please enter the location: "); string location = Console.ReadLine(); // Use the file path and location as needed Console.WriteLine($"You have entered file path: {filePath} and location: {location}"); Console.ReadKey(); }//main //Use StreamReader to asynchronously read a text file. - Pick any text file you want. //"C:\Users\shari\OneDrive\Desktop\Top 100 Movie List .txt" public async Task ReadFileAsync(string filePath) { using (StreamReader reader = new StreamReader(filePath)) { string content = await reader.ReadToEndAsync(); Console.WriteLine(content); } } //print Once given print the contents to the terminal }//program }//Namespace
C Sharp _ How would I print the contents from my file ?
using System;
using System.Collections.Generic;
using System.IO; // for streamreader
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SullivanS_Assignement6
{
class
{
static void Main(string[] args)
{
Console.Write("Please enter the file path: ");
string filePath = Console.ReadLine();
Console.Write("Please enter the location: ");
string location = Console.ReadLine();
// Use the file path and location as needed
Console.WriteLine($"You have entered file path: {filePath} and location: {location}");
Console.ReadKey();
}//main
//Use StreamReader to asynchronously read a text file. - Pick any text file you want.
//"C:\Users\shari\OneDrive\Desktop\Top 100 Movie List .txt"
public async Task ReadFileAsync(string filePath)
{
using (StreamReader reader = new StreamReader(filePath))
{
string content = await reader.ReadToEndAsync();
Console.WriteLine(content);
}
}
//print Once given print the contents to the terminal
}//program
}
//Namespace
Step by step
Solved in 2 steps