ILRepack/FileWrapper.cs (15 lines of code) (raw):
using System.IO;
namespace ILRepacking
{
internal class FileWrapper : IFile
{
public bool Exists(string path)
{
return File.Exists(path);
}
public string[] ReadAllLines(string path)
{
return File.ReadAllLines(path);
}
}
}