Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to store an operator inside a variable? I want to do something like this (pseudo code):

void MyLoop(int start, int finish, operator op)
{
    for(var i = start; i < finish; op)
    {
        //do stuff with i
    }
}

I could then call this method like so:

MyLoop(15, 45, ++);
MyLoop(60, 10, --);

Does something like this exist in C#?

share|improve this question
Possible duplicate ? – Bridge Jan 10 at 10:25
dont know, but do the same with an increment parameter +1 or -1. Or with a lambda Func<int, int> and your loop will looks like: (int i = start; i < finish; i = op(i)). – tschmit007 Jan 10 at 10:26

5 Answers

up vote 14 down vote accepted

I suppose something like this. You do not define the operator, but a function (lambda) which does the change for you.

void MyLoop(int start, int finish, Func<int, int> op)
{
    for(var i = start; i < finish; i = op(i))
    {
        //do stuff with i
    }
}

I could then call this method like so:

MyLoop(15, 45, x => x+1);
MyLoop(60, 10, x => x-1);
share|improve this answer
Yourself and Soner gave identical answers, but you were first, cheers! – JMK Jan 10 at 10:39

Use a Function delegate;

Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.

void MyLoop(int start, int finish, Func<int, int> op)
{
    for(var i = start; i < finish; i = op(i))
    {
        //do stuff with i
    }
}

Then;

MyLoop(15, 45, x => ++x);
MyLoop(60, 10, x => --x);

Here is a DEMO.

share|improve this answer
1  
Thanks very much, Maarten got in just before you but the demo link was cool! – JMK Jan 10 at 23:15

You could wrap the operators with regular methods and use delegates.

share|improve this answer

use something like Func<int, int> op

or change the type of op to string, then check the value and according to it build your for loop like:

void MyLoop(int start, int finish, string op)
{
    if ((op.Equals("++") && (start < finish))
    {
      for(var i = start; i < finish; i++)
      {
          //processMethod(i)
      }
    }
    else if ((op.Equals("--") && (start > finish))
    {
      for(var i = start; i < finish; i--)
      {
          //processMethod(i)
      }
    }
}
share|improve this answer
public class Program {
    public static void Main(String[] args) {
        Looper(x => x + 1);
        Looper(x => ++x);
        //Looper(x => x++); will not works
        Looper(x => x * 2);
    }

    public static void Looper(Func<int, int> op) {
        for (int i = 1; i < 10; i = op(i)) {
            Console.WriteLine(i);
        }
        Console.WriteLine("----------");
    }

} 
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.