I have a csv file that looks like this
Names.csv
"Name1", "Name2", "Name8", "Name4", "Name5", "Name6" , "Name7", "Name3" , "Name9"
In C# I would like to user Linq to do the following
open file read the names, parse them out and strip off the double quotes then order them by name and write them to Name.out file.
output
1- Name1
2- Name2
3- Name3