This seems to be a tough nut to crack. I'm hoping that it's pretty easy for you gurus. I was wondering if this is possible using LINQ.
Here's my list:
ABC,1,RON,26,73
CDE,13,JON,21,18
ERROR,ERROR LINE,ERROR LINE,DEF
DEF,NOT AVAILABLE,"",JANE,32,13
GHI,23,DAWN,14,25
I need to accomplish 2 things with this list:
- Move the line with the ERROR and the next line to the bottom of the list
- The next line after the ERROR (the ones that started with "DEF") has to modified so that the fields all line up as the ones that are correct. However, I should still remain after the ERROR line.
The final list should look like this:
ABC,1,RON,26,73
CDE,13,JON,21,18
GHI,23,DAWN,14,25
ERROR,ERROR LINE,ERROR LINE,DEF
DEF,NOT AVAILABLE,JANE,32,13
Right now, my complete, detailed LINQ query looks like this:
var myList = (File.ReadLines(myFile.ToString(), Encoding.GetEncoding(1250)))
.ToList()
.OrderBy(l => l[0].ToString())
.Select(l => new specialclass {
Comp = l[0].ToString(),
Place = Convert.ToInt32(l[1].ToString()),
Name = l[2].ToString(),
Limit = Convert.ToInt32(l[3].ToString()),
Limit2 = Convert.ToInt32(l[4].ToString())
});