Skip to content

Instantly share code, notes, and snippets.

@CopperStarSystems
Created October 7, 2019 17:37
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/c52e6b0278d7906d7f9335d8a7d71157 to your computer and use it in GitHub Desktop.
Save CopperStarSystems/c52e6b0278d7906d7f9335d8a7d71157 to your computer and use it in GitHub Desktop.
FileImpl.cs
using System.IO;
namespace Tdd.FrameworkWrappers.Lib.FrameworkWrappers
{
public class FileImpl : IFile
{
public string ReadAllText(string filePath)
{
return File.ReadAllText(filePath);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment