Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
5  
Question doesn't make sense and is too open ended. Please read tinyurl.com/so-hints and revise your question. – Richard Apr 20 '11 at 7:47
2  
Interview question? – Marc Gravell Apr 20 '11 at 7:48
10  
The fun part is that even with these incomplete homework questions, we are answering to grab a tiny little bit of reputation :) The system works too well! – Philippe Apr 20 '11 at 7:50

4 Answers

up vote 7 down vote accepted

Try:

private bool functionName(int r, int c)
{
    return sList.Any(s => s.L.R == r && s.L.C == c);
}

The Any extension method in Linq applies to an IEnumerable sequence (which could be a List for example) and returns true if any of the items in the sequence return true for the given predicate (in this case a Lambda function s => s.L.R == r && s.L.C == c).

share|improve this answer

something like:

return sList.Any(s => s.L.R == r && s.L.C == c);
share|improve this answer

One example

private bool functionName(int r,int c)
{
  var ret = from s in sList where s.L.R==r&&s.L.C==c select s;
  return ret.Count()>0;
}
share|improve this answer

since you should provide more information about the classes (s.L.R ??) you use and I don't know what you really want as outcome of the function, this is not 100 percent sure:

return sList.Any(s => s.L.R == r && s.L.C == c);

/e: seems like I was a bit to late, sorry guys. Was not copiying yours.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.