Skip to content

Instantly share code, notes, and snippets.

@CopperStarSystems
Created October 7, 2019 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CopperStarSystems/8a39494e89df1663634e78ce312749d8 to your computer and use it in GitHub Desktop.
Save CopperStarSystems/8a39494e89df1663634e78ce312749d8 to your computer and use it in GitHub Desktop.
FileReader.cs
using System.IO;
using System.Net;
namespace Tdd.FrameworkWrappers.Lib
{
public class FileReader
{
public string ReadText(string filePath)
{
return File.ReadAllText(filePath);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment