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