Icing.Diagnostics.Algorithm.Algorithm C# (CSharp) Method

Algorithm() public method

Initializes a new instance of the Algorithm class.
public Algorithm ( System.Action action ) : System
action System.Action The action, or the code of the algorithm itself.
return System
        public Algorithm(Action action)
            : this(null, action)
        {
        }

Same methods

Algorithm::Algorithm ( string name, System.Action action ) : System