Exemplo n.º 1
0
 public Stream OpenRead(string file) =>
 Path.IsPathRooted(file) ? File.OpenRead(file) : _impl.OpenRead(file);
Exemplo n.º 2
0
 public static StreamReader OpenReadText(this IFileAbstractLayer fal, string file) =>
 new StreamReader(fal.OpenRead(file));