vote up 0 vote down star

I took the following example from Jrista's answer to a post.

Finding Twentyone count

int[] numbers = new[] { 1, 3, 11, 21, 9, 23, 7, 4, 18, 7, 7, 3, 21 };

var twentyoneCount = numbers.Where(n => n == 21).Count();

Suppose i use "Func" delegate how can i get the count ?

I tried as (pardon me for the bad syntax)

var otherway= Func  <int> numbers= x => x==21;

flag

4 Answers

vote up 5 vote down check

You are using an anonymous delegate with the same signature as Func<int, bool> right now. If you wanted to use a method instead, you could write:

// a method that takes int and returns bool is
// a Func<int, bool> delegate
public bool IsEqualTo21(int x)
{ 
    return (x == 21);
}

And then use it as:

var twentyoneCount = numbers.Where(IsEqualTo21).Count();
link|flag
vote up 2 vote down
 int[] numbers = new[] { 1, 3, 11, 21, 9, 23, 7, 4, 18, 7, 7, 3, 21 };
 int twentyoneCount = numbers.Count(delegate(int i)
 {
     return (i == 21);
 });
link|flag
This being the C# 2.0 form of the syntax -- the "n => n == 21" style simply being syntactic sugar for exactly what you have written. – Steve Gilham Oct 12 at 7:41
vote up 1 vote down

Maybe something like:

Func<bool, int, int[]> method = MyMethod

int[] numbers = new[] { 1, 3, 11, 21, 9, 23, 7, 4, 18, 7, 7, 3, 21 };
int count = method(21, numbers);


private bool MyMethod(int numberToCheck, int[] numbers)
{
    int count = 0;
    foreach (var number in numbers)
    {
        if (number == numberToCheck)
            {
                count++;
            }
    }
    return count;
}
link|flag
1  
Well, if you are using a delegate, then I would recommend sticking with LINQ to do the actual iteration, and only implement the test in a delegate. – Groo Oct 12 at 7:36
vote up 0 vote down

Also this

var numbers = new[] { 1, 3, 11, 21, 9, 23, 7, 4, 18, 7, 7, 3, 21 }; numbers.Count(i => (i == 21));

link|flag

Your Answer

Get an OpenID
or

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