Library for reading csv file in F#
问题 F# I am interested to read a csv file and output a List< List< string > > let readCsv (filepath:string) : string list list = //....................... input file: Quote1,Quote2,Quote3 "Hello,World","He said:""Yes""",Example Output: // Type: string list list [["Quote1";"Quote2";"Quote3"]; ["Hello,World"; "He said:"Yes"";"Example"]] Input2: 1,2,3,4,5,6 7,8,9,10,11,12 Output2: // Type: string list list [["1";"2";"3";"4";"5";"6"]; ["7";"8";"9";"10";"11";"12"]] However, some of the Nuget packages,