int[] ar = new int[] { 1, 5, 2, 4, 7 };
var v = ar.First(x => x > 7);
MessageBox.Show(v.ToString());
It is not throwing any exception , why ?
i Want it to throw an exception but how?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
brunda kPosted Mar 16, 2013, 2:38 AM