public CollectionProperty(List <T> unifiables, GetUnifiable <T> noResult)
 {
     list        = unifiables;
     EmptyResult = noResult;
     provider    = new GetSetProperty <T>(GetTopicInt, SetTopicInt);
 }
Exemple #2
0
 public GetSetProperty(GetUnifiable <T> g, Action <T> s)
 {
     getter = g;
     setter = s;
 }