Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

list of function in c#

List<Action> functions = new List<Action>();
functions.Add(Move);

foreach (Action func in functions)
   func();
 
PREVIOUS NEXT
Tagged: #list #function
ADD COMMENT
Topic
Name
9+7 =