I\'m coming to F# from a C# background and a little behind on the different lists and collections. I recently ran into a case where I needed to go from a string[] to \'T lis
Here's another way to do it:
let listOfLines = [yield! File.ReadAllLines(@"C:\LinesOText.txt")]