var rows = File.ReadAllLines(tempPath).Skip(1).Select(c =>
{
string[] args = c.Split('\t');
return new
{
foo = args[3]
};
}).Distinct();
How Can I add a where condition
so it only returns foo
values that their value is not "N/A"
and is not string.empty
?