Example #1
0
 void AddSDK_Execute(object parameters)
 {
     this.Items.Add(new SDK()
     {
         Name = this.Name, Path = this.Path
     });
     ConfigFileManager.AddSDK(this.Path, this.Name);
     this.Name = string.Empty;
     this.Path = string.Empty;
 }