c# how to read string from console code example
Example: c# read file store in String
using System;
using System.IO;
public class Example
{
public static void Main()
{
string fileName = @"C:\some\path\file.txt";
string text = File.ReadAllText(fileName);
Console.WriteLine(text);
}
}