I'm trying to create a list that contains methods, and after I add some methods I want to execute them, is this possible?
I tried something like this:
List<object> methods = new List<object>();
Then:
methods.Add(Move());
But When I add, the program will call the methods, for example, in this case it called for Move();