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