Beispiel #1
0
 /// <summary>
 ///     Update the current recursive instructions and set it null if there are none left
 /// </summary>
 /// <returns>True if we have anymore instructions</returns>
 private bool UpdateCurrentInstructions()
 {
     RecursiveInstructions.RemoveLast();
     CurrentInstructions = RecursiveInstructions.Last?.Value;
     return(true);
 }