Example #1
0
 public DictionaryContentReader(IContentReaderCollection contentReaderCollection)
 {
     arrayContentReader = new ArrayContentReader <DictionaryKeyValuePair <TKey, TValue> >(contentReaderCollection);
 }
Example #2
0
 public ListContentReader(IContentReaderCollection contentReaderCollection)
 {
     arrayContentReader = new ArrayContentReader <T>(contentReaderCollection);
 }