Esempio n. 1
0
 internal MeepOutputControl(string funcName, object[] additionalArguments, IList <MeepStepFunction> childFunctions)
     : base(funcName)
 {
     if (additionalArguments == null)
     {
         throw new ArgumentNullException();
     }
     _AdditionalArguments = additionalArguments;
     ChildFunctions       = new StepFunctionCollection();
     if (childFunctions != null)
     {
         ChildFunctions.AddRange(childFunctions);
     }
 }
Esempio n. 2
0
 private MeepRunFunction()
 {
     _Time         = 0;
     StepFunctions = new StepFunctionCollection();
 }