public FunctionDescriptor(string theName, FunctionGroup theGroup, string[] theAlternates, Functor theFunctor, string description) { Name = theName; Group = theGroup; Alternates = theAlternates; Functor = theFunctor; Description = description; }
private void AddFunction(string name, FunctionDescriptor.FunctionGroup functionGroup, string[] alternates, Functor functor, string description) { _functionList.Add( new FunctionDescriptor( name, functionGroup, alternates, functor, description ) ); }
public FunctionItemData(string name, string[] alternates, Functor fkt, string descr) { FunctionName = name; AlternateNames = alternates; Funct = fkt; Description = descr; }