Пример #1
0
 public Actuals(IList theActualValues, ListMatchStrategy theStrategy)
 {
     myActuals = new List <ActualItem>(theActualValues.Count);
     foreach (object actualValue in theActualValues)
     {
         myActuals.Add(new ActualItem(actualValue));
     }
     myStrategy     = theStrategy;
     UnmatchedCount = theActualValues.Count;
 }
Пример #2
0
 public ListMatcher(CellProcessor processor, ListMatchStrategy strategy)
 {
     this.strategy = strategy;
     this.processor = processor;
 }
Пример #3
0
 public Actuals(IEnumerable<object> theActualValues, ListMatchStrategy theStrategy)
 {
     myActuals = new List<ActualItem>(theActualValues.Select(o => new ActualItem(o)));
     myStrategy = theStrategy;
     UnmatchedCount = myActuals.Count;
 }
Пример #4
0
 public ListMatcher(CellProcessor processor, ListMatchStrategy strategy)
 {
     this.strategy  = strategy;
     this.processor = processor;
 }
Пример #5
0
 public Actuals(IEnumerable <object> theActualValues, ListMatchStrategy theStrategy)
 {
     myActuals      = new List <ActualItem>(theActualValues.Select(o => new ActualItem(o)));
     myStrategy     = theStrategy;
     UnmatchedCount = myActuals.Count;
 }
Пример #6
0
 public Actuals(IList theActualValues, ListMatchStrategy theStrategy)
 {
     myActuals = new List<ActualItem>(theActualValues.Count);
     foreach (object actualValue in theActualValues) {
         myActuals.Add(new ActualItem(actualValue));
     }
     myStrategy = theStrategy;
     UnmatchedCount = theActualValues.Count;
 }