示例#1
0
        TaskCollection(IEnumerable <IIdentificable> Collection)
        {
            Comparer    = new IdentifyComparer();
            _collection = new HashSet <IIdentificable> (Collection, Comparer);

            Initialize();
        }
示例#2
0
 /// <summary>
 /// </summary>
 public TaskCollection()
 {
     Comparer    = new IdentifyComparer();
     _collection = new HashSet <IIdentificable> (Comparer);
 }