Esempio n. 1
0
 public static string GetActionsString(List <Action> performedActions)
 {
     if (performedActions != null)
     {
         String str = String.Empty;
         for (int i = 0; i < performedActions.Count; i++)
         {
             Action currentAction = performedActions[i];
             str += currentAction.ToString() + " ";
         }
         return(str);
     }
     else
     {
         return(String.Empty);
     }
 }
Esempio n. 2
0
 public ActionNode(Action a)
 {
     this.Action = a;
 }