personal knowledgebase
This page is a collection of interesting phrases used in MSDN .NET documentation that can be used to help write your own source code documentation in a more user-friendly and consistent manner. The phrases are organized into the types of code elements they describe. Interesting parts of phrases have been emphasized in bold.
Perhaps in future this could serve as a basis for some kind of online/offline tool to assist in writing code documentation by suggesting common phrases.
ICollection<T>
IComparer<T>
IEnumerable<T>
ISet<T>
IDictionary<TKey, TValue>
IEnumerator<T>
IComparer<T>
generic interface. - Comparer<T>
KeyedByTypeCollection<TItem>
SynchronizedCollection<T>
Dictionary<TKey, TValue>
HashSet<T>
List<T>
IComparer<T>
implementation. - SortedList<TKey, TValue>
Stack<T>
KeyNotFoundException
KeyValuePair<TKey, TValue>
Dictionary<TKey, TValue>
. - Dictionary<TKey, TValue>.Enumerator
List<T>
class that is empty and has the default initial capacity. -[‘ListList<T>
class that is empty and has the specified initial capacity.. -[‘ListICollection<T>
- IList<T>.Add(T)
IList<T>
. - IList<T>.IndexOf(T)
ICollection<T>
contains a specific value. - IList<T>.Contains(T)
ICollection<T>
to an Array
, starting at a particular Array
index. - IList<T>.CopyTo(T[], Int32)
ICollection<T>
- IList<T>.Count
IList<T>.Item[Int32]
ICollection<T> is read-only.
- IList<T>.IsReadOnly