I have a tab delimited file with some columns and rows for example: some rows might not have value for some columns. What we know is that the \"order\" doe
var list = from row in System.IO.File.ReadLines("file.txt") let arr = row.Split('\t') select new Tuple(arr[2], arr[12], arr[45]);