Skip to content

Commit fbacc54

Browse files
committed
Update README.md
1 parent 43a6a31 commit fbacc54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DataCommander.Foundation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ See [```IndexableCollection<T>```](Collections/IndexableCollection/IndexableColl
1313
|Index class|Class implementing the index|Unique|Sorted|Enumerable|T this[int index]|
1414
|-----------|----------------------------|------|------|----------|-----------------|
1515
|[```LinkedListIndex<T>```](Collections/IndexableCollection/LinkedListIndex.cs)|LinkedList<T>|false|false|true|false|
16-
|[```ListIndex<T>```](Collections/IndexableCollection/LinkedListIndex.cs)|List<T>|false|false|true|true|
16+
|[```ListIndex<T>```](Collections/IndexableCollection/LinkedListIndex.cs)|[```IList<T>```](https://msdn.microsoft.com/en-us/library/5y536ey6(v=vs.110).aspx)|false|false|true|true|
1717
|[```NonUniqueIndex<TKey,T>```](Collections/IndexableCollection/NonUniqueIndex.cs)|IDictionary<TKey, ICollection<T>>|false|true/false|false|false|
1818
|[```SequenceIndex```](Collections/IndexableCollection/SequenceIndex.cs)|IDictionary<>|true|true/false|false|false|
1919
|[```UniqueIndex<TKey,T>```](Collections/IndexableCollection/UniqueIndex.cs)|Dictionary<>|false|false|false|false|
2020
|```UniqueIndex<TKey,T>```|SortedDictionary<>|false|true|false|false|
21-
|[```UniqueListIndex<T>```](Collections/IndexableCollection/UniqueListIndex.cs)|IList<T>|true|true/false|true|false|
21+
|[```UniqueListIndex<T>```](Collections/IndexableCollection/UniqueListIndex.cs)|[```IList<T>```](https://msdn.microsoft.com/en-us/library/5y536ey6(v=vs.110).aspx)|true|true/false|true|false|
2222

2323
###How to create memory indexes for static (read only) collections
2424

0 commit comments

Comments
 (0)