Beispiel #1
0
 public Action(string name, DelegatePerform performFunction , string description) : this(name, performFunction)
 {
     this.Description = description;
 }
Beispiel #2
0
 public Action(string name, DelegatePerform performFunction)
 {
     this.Name = name;
     this.PerformFuntion = performFunction;
 }