Let me just preface this with the fact that I'm pretty green to C#. That being said, I'm looking for a way to pass a method with a parameters as a parameter. Ideally, what I want to do is:
static void Main(string[] args)
{
methodQueue ( methodOne( x, y ));
}
static void methodOne (var x, var y)
{
//...do stuff
}
static void methodQueue (method parameter)
{
//...wait
//...execute the parameter statement
}
Can anyone point me in the right direction?