Esempio n. 1
0
 private static void On(DestroyCommand command)
 {
     fileSystem.Destroy(command.LogicalName);
     WriteSuccessLine(string.Format("file {0} destroyed", command.LogicalName));
 }
Esempio n. 2
0
 public override bool TryBuildCommand(string[] args, out object command)
 {
     var de = (command = new DestroyCommand()) as DestroyCommand;
     return RequireLogicalName(args, 0, out de.LogicalName);
 }