Can the following loop be implemented using IQueryable, IEnumerable or lambda expressions with linq
private bool functionName(int r, int c)
{
foreach (S s in sList)
{
if (s.L.R == r && s.L.C == c)
{
return true;
}
}
return false;
}
if so how?