I have stored a lot of text lines like this:
1|1000|1|0|Text Message|||
1|1000|1|1|Text Message|||
1|1000|2|0|Text Message|||
1|1000|2|1|Text Message|||
1|1000|3|0|Text Message|||
1|1001|1|0|Text Message|||
in a Collection: List<ObjRow> listRows
and this is the corresponding Class:
public class ObjRow
{
private string n_Par { get; set; }
private string n_Rad { get; set; }
private string n_Lang { get; set; }
private string n_Line_Mex { get; set; }
private string text_Mex { get; set; }
private int n_Row { get; set; }
}
I would like to find which groups of lines (grouped by property n_Rad
, 2° PIPE value) which have not the value n_Lang == 3
(3° PIPE value).
How to do this with LINQ?