Ejemplo n.º 1
0
 public ParameterChangedAction(GenericBaseParameter <int> param, int old, int @new) : base(param, old, @new)
 {
 }
Ejemplo n.º 2
0
 public GenericParameterChangedAction(GenericBaseParameter <T> param, T old, T @new)
 {
     _param = param;
     _old   = old;
     _new   = @new;
 }