Beispiel #1
0
 private void btnCommandArgs_Click(object sender, EventArgs e)
 {
     try
     {
         var args = this.txtCommandArgs.Text.Split(new char[] {' '} ,StringSplitOptions.RemoveEmptyEntries);
         var conf = new CommandArgsConfiguration(args);
         this.resultCommandArgs.Text = conf.ToLaconicString();
     }
     catch (Exception ex)
     {
         this.resultCommandArgs.Text = ex.ToMessageWithType();
     }
 }