Exemple #1
0
 public static IEnumerable <BlockCommandComment.Argument> GetArguments(this BlockCommandComment comment)
 {
     for (var x = 0; x < comment.ArgumentsCount; x++)
     {
         var argument = comment.getArguments((uint)x);
         yield return(argument);
     }
 }