This is C# version:
public static IEnumerable ReadLinesEnumerable(string path) { using ( var reader = new StreamReader(path) ) { var line
On .NET 2/3 you can do:
let readLines filePath = File.ReadAllLines(filePath) |> Seq.cast
and on .NET 4:
let readLines filePath = File.ReadLines(filePath);;