or
Hey :)
I made a radgridview that displays too multiple columns
And within this radgridview , it has a column FirstNAme, MiddleName, LastName, QuizAverage, Quiz1, Quiz2, Quiz3 etc
How can I get the columns that contains the string "Quiz" such as QuizAverage, Quiz1, Quiz2, Quiz3 etc.. without specifying their indexes?
Just by mere Identifying wheter a ceratin column name contains "Quiz"
Thanks for help in this regard :)
TRACKING[] data = (from t in context.TRACKINGs
where SqlMethods.Like(t.EHT_ISO_DWG, "%02-02%")
select t).ToArray();
return new BindingList<
TRACKING
>(data);