public static void Main()
var fileName = "filename.txt";
var s = ReadAllText(fileName);
public static void WriteFile(string path)
File.WriteAllText(path, ".NET Fiddle is AWESOME!!!");
public static string ReadAllText(string path)
return File.ReadAllText(path);