コード例 #1
0
ファイル: ComposedMission.cs プロジェクト: renanaya48/exe1-c-
 /**
  * add a function to the list of the functions.
  * @param func - the function to add
  * @return ComposedMission
  */
 public ComposedMission Add(FunctionsContainer.FuncToDo func)
 {
     this.listOfFunc.Add(func);
     return(this);
 }
コード例 #2
0
 //constructor
 public SingleMission(FunctionsContainer.FuncToDo func, string name1)
 {
     this.function = func;
     this.name     = name1;
     this.type     = "Single";
 }