예제 #1
0
 public FluentAstBuilder AtCommand(AtCommandType command, string parameter)
 {
     children.Add(new AtCommandNode(command, parameter));
     return(this);
 }
예제 #2
0
 public AtCommandNode(AtCommandType command, string parameter)
 {
     Command   = command;
     Parameter = parameter;
 }