T
Tony Johansson
Hello!
I have this simple Lambda expression and I just wonder if its possible
to modify the first row in such a way that I get string subfile as output so
I can skip row number 2.
There will always be only one match from this p.ID == workSheetID
var temp1 = ccrFormObj.myWorksheetList.Where(p => p.ID == workSheetID);
string subfile1 = temp1.ToArray()[0].ToString();
//Tony
I have this simple Lambda expression and I just wonder if its possible
to modify the first row in such a way that I get string subfile as output so
I can skip row number 2.
There will always be only one match from this p.ID == workSheetID
var temp1 = ccrFormObj.myWorksheetList.Where(p => p.ID == workSheetID);
string subfile1 = temp1.ToArray()[0].ToString();
//Tony