Answers for "create list of functions c#"

C#
24

create List c#

using System.Collections.Generic
//type is your data type (Ej. int, string, double, bool...)
List<type> newList = new List<type>();
Posted by: Guest on September-27-2020
0

list of function in c#

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

foreach (Action func in functions)
   func();
Posted by: Guest on June-13-2021

C# Answers by Framework

Browse Popular Code Answers by Language