public static async Task <string[]> ReadAllLines(string filePath, string lineSeparator) { using (var streamReader = StreamReaderHelper.New(filePath)) { var output = await StreamReaderHelper.ReadAllLines(streamReader, lineSeparator); return(output); } }
public static Task <string[]> ReadAllLines(string filePath) { return(StreamReaderHelper.ReadAllLines(filePath)); }
public static Task <string[]> ReadAllLines(string filePath) { return(StreamReaderHelper.ReadAllLines(filePath, Strings.NewLineForEnvironment)); }