I want to do something like... So where there is a list of function delegates and access the 0 index, invoke it and return the value.
public static bool methodOne()
{
return true;
}
var methods_list = new List<Func<Delegate>>();
methods_list.Add( () => methodOne() );
// print true
Console.WriteLine(methods_list[0].Invoke());