summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml')
-rwxr-xr-x.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml2770
1 files changed, 2770 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml
new file mode 100755
index 0000000000..8729b6dc6c
--- /dev/null
+++ b/.packages/microsoft.netcore.app/2.0.0/ref/netcoreapp2.0/System.Collections.xml
@@ -0,0 +1,2770 @@
+<?xml version="1.0" encoding="utf-8"?><span>
+<doc>
+ <assembly>
+ <name>System.Collections</name>
+ </assembly>
+ <members>
+ <member name="T:System.Collections.BitArray">
+ <summary>Manages a compact array of bit values, which are represented as Booleans, where true indicates that the bit is on (1) and false indicates the bit is off (0).</summary>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Boolean[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that contains bit values copied from the specified array of Booleans.</summary>
+ <param name="values">An array of Booleans to copy.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Byte[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that contains bit values copied from the specified array of bytes.</summary>
+ <param name="bytes">An array of bytes containing the values to copy, where each byte represents eight consecutive bits.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="bytes">bytes</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The length of <paramref name="bytes">bytes</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Collections.BitArray)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that contains bit values copied from the specified <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <param name="bits">The <see cref="T:System.Collections.BitArray"></see> to copy.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="bits">bits</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that can hold the specified number of bit values, which are initially set to false.</summary>
+ <param name="length">The number of bit values in the new <see cref="T:System.Collections.BitArray"></see>.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="length">length</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Int32[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that contains bit values copied from the specified array of 32-bit integers.</summary>
+ <param name="values">An array of integers containing the values to copy, where each integer represents 32 consecutive bits.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="values">values</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The length of <paramref name="values">values</paramref> is greater than <see cref="F:System.Int32.MaxValue"></see></exception>
+ </member>
+ <member name="M:System.Collections.BitArray.#ctor(System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.BitArray"></see> class that can hold the specified number of bit values, which are initially set to the specified value.</summary>
+ <param name="length">The number of bit values in the new <see cref="T:System.Collections.BitArray"></see>.</param>
+ <param name="defaultValue">The Boolean value to assign to each bit.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="length">length</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.And(System.Collections.BitArray)">
+ <summary>Performs the bitwise AND operation between the elements of the current <see cref="T:System.Collections.BitArray"></see> object and the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray"></see> object will be modified to store the result of the bitwise AND operation.</summary>
+ <param name="value">The array with which to perform the bitwise AND operation.</param>
+ <returns>An array containing the result of the bitwise AND operation, which is a reference to the current <see cref="T:System.Collections.BitArray"></see> object.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="value">value</paramref> and the current <see cref="T:System.Collections.BitArray"></see> do not have the same number of elements.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.Clone">
+ <summary>Creates a shallow copy of the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <returns>A shallow copy of the <see cref="T:System.Collections.BitArray"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.BitArray.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the entire <see cref="T:System.Collections.BitArray"></see> to a compatible one-dimensional <see cref="T:System.Array"></see>, starting at the specified index of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.BitArray"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- The number of elements in the source <see cref="T:System.Collections.BitArray"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.BitArray"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.BitArray.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.BitArray"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.BitArray.Get(System.Int32)">
+ <summary>Gets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <param name="index">The zero-based index of the value to get.</param>
+ <returns>The value of the bit at position <paramref name="index">index</paramref>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero. -or- <paramref name="index">index</paramref> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> for the entire <see cref="T:System.Collections.BitArray"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.BitArray.IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.BitArray"></see> is read-only.</summary>
+ <returns>This property is always false.</returns>
+ </member>
+ <member name="P:System.Collections.BitArray.IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.BitArray"></see> is synchronized (thread safe).</summary>
+ <returns>This property is always false.</returns>
+ </member>
+ <member name="P:System.Collections.BitArray.Item(System.Int32)">
+ <summary>Gets or sets the value of the bit at a specific position in the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <param name="index">The zero-based index of the value to get or set.</param>
+ <returns>The value of the bit at position <paramref name="index">index</paramref>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero. -or- <paramref name="index">index</paramref> is equal to or greater than <see cref="P:System.Collections.BitArray.Count"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.LeftShift(System.Int32)">
+ <param name="count"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.BitArray.Length">
+ <summary>Gets or sets the number of elements in the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <returns>The number of elements in the <see cref="T:System.Collections.BitArray"></see>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The property is set to a value that is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.Not">
+ <summary>Inverts all the bit values in the current <see cref="T:System.Collections.BitArray"></see>, so that elements set to true are changed to false, and elements set to false are changed to true.</summary>
+ <returns>The current instance with inverted bit values.</returns>
+ </member>
+ <member name="M:System.Collections.BitArray.Or(System.Collections.BitArray)">
+ <summary>Performs the bitwise OR operation between the elements of the current <see cref="T:System.Collections.BitArray"></see> object and the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray"></see> object will be modified to store the result of the bitwise OR operation.</summary>
+ <param name="value">The array with which to perform the bitwise OR operation.</param>
+ <returns>An array containing the result of the bitwise OR operation, which is a reference to the current <see cref="T:System.Collections.BitArray"></see> object.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="value">value</paramref> and the current <see cref="T:System.Collections.BitArray"></see> do not have the same number of elements.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.RightShift(System.Int32)">
+ <param name="count"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.BitArray.Set(System.Int32,System.Boolean)">
+ <summary>Sets the bit at a specific position in the <see cref="T:System.Collections.BitArray"></see> to the specified value.</summary>
+ <param name="index">The zero-based index of the bit to set.</param>
+ <param name="value">The Boolean value to assign to the bit.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero. -or- <paramref name="index">index</paramref> is greater than or equal to the number of elements in the <see cref="T:System.Collections.BitArray"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.SetAll(System.Boolean)">
+ <summary>Sets all bits in the <see cref="T:System.Collections.BitArray"></see> to the specified value.</summary>
+ <param name="value">The Boolean value to assign to all bits.</param>
+ </member>
+ <member name="P:System.Collections.BitArray.SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.BitArray"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.BitArray.Xor(System.Collections.BitArray)">
+ <summary>Performs the bitwise exclusive OR operation between the elements of the current <see cref="T:System.Collections.BitArray"></see> object against the corresponding elements in the specified array. The current <see cref="T:System.Collections.BitArray"></see> object will be modified to store the result of the bitwise exclusive OR operation.</summary>
+ <param name="value">The array with which to perform the bitwise exclusive OR operation.</param>
+ <returns>An array containing the result of the bitwise exclusive OR operation, which is a reference to the current <see cref="T:System.Collections.BitArray"></see> object.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="value">value</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="value">value</paramref> and the current <see cref="T:System.Collections.BitArray"></see> do not have the same number of elements.</exception>
+ </member>
+ <member name="M:System.Collections.BitArray.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <param name="array"></param>
+ <param name="index"></param>
+ </member>
+ <member name="P:System.Collections.BitArray.System#Collections#ICollection#Count">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.BitArray.System#Collections#ICollection#IsSynchronized">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.BitArray.System#Collections#ICollection#SyncRoot">
+ <returns></returns>
+ </member>
+ <member name="T:System.Collections.StructuralComparisons">
+ <summary>Provides objects for performing a structural comparison of two collection objects.</summary>
+ </member>
+ <member name="P:System.Collections.StructuralComparisons.StructuralComparer">
+ <summary>Gets a predefined object that performs a structural comparison of two objects.</summary>
+ <returns>A predefined object that is used to perform a structural comparison of two collection objects.</returns>
+ </member>
+ <member name="P:System.Collections.StructuralComparisons.StructuralEqualityComparer">
+ <summary>Gets a predefined object that compares two objects for structural equality.</summary>
+ <returns>A predefined object that is used to compare two collection objects for structural equality.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.CollectionExtensions">
+
+ </member>
+ <member name="M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0)">
+ <param name="dictionary"></param>
+ <param name="key"></param>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.CollectionExtensions.GetValueOrDefault``2(System.Collections.Generic.IReadOnlyDictionary{``0,``1},``0,``1)">
+ <param name="dictionary"></param>
+ <param name="key"></param>
+ <param name="defaultValue"></param>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.CollectionExtensions.Remove``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1@)">
+ <param name="dictionary"></param>
+ <param name="key"></param>
+ <param name="value"></param>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.CollectionExtensions.TryAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,``1)">
+ <param name="dictionary"></param>
+ <param name="key"></param>
+ <param name="value"></param>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ <returns></returns>
+ </member>
+ <member name="T:System.Collections.Generic.Comparer`1">
+ <summary>Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IComparer`1"></see> generic interface.</summary>
+ <typeparam name="T">The type of objects to compare.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Comparer`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Comparer`1"></see> class.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Comparer`1.Compare(`0,`0)">
+ <summary>When overridden in a derived class, performs a comparison of two objects of the same type and returns a value indicating whether one object is less than, equal to, or greater than the other.</summary>
+ <param name="x">The first object to compare.</param>
+ <param name="y">The second object to compare.</param>
+ <returns><p sourcefile="System.Collections.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Collections.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed integer that indicates the relative values of <code data-dev-comment-type="paramref">x</code> and <code data-dev-comment-type="paramref">y</code>, as shown in the following table. </p>
+ <table><thead><tr><th> Value <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Meaning <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td><code data-dev-comment-type="paramref">x</code> is less than <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td><code data-dev-comment-type="paramref">x</code> equals <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td><code data-dev-comment-type="paramref">x</code> is greater than <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> </td></tr></tbody></table></p>
+</returns>
+ <exception cref="T:System.ArgumentException">Type <paramref name="T">T</paramref> does not implement either the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Comparer`1.Create(System.Comparison{`0})">
+ <summary>Creates a comparer by using the specified comparison.</summary>
+ <param name="comparison">The comparison to use.</param>
+ <returns>The new comparer.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Comparer`1.Default">
+ <summary>Returns a default sort order comparer for the type specified by the generic argument.</summary>
+ <returns>An object that inherits <see cref="T:System.Collections.Generic.Comparer`1"></see> and serves as a sort order comparer for type <paramref name="T">T</paramref>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Comparer`1.System#Collections#IComparer#Compare(System.Object,System.Object)">
+ <summary>Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
+ <param name="x">The first object to compare.</param>
+ <param name="y">The second object to compare.</param>
+ <returns><p sourcefile="System.Collections.yml" sourcestartlinenumber="1" sourceendlinenumber="2"><p sourcefile="System.Collections.yml" sourcestartlinenumber="1" sourceendlinenumber="1">A signed integer that indicates the relative values of <code data-dev-comment-type="paramref">x</code> and <code data-dev-comment-type="paramref">y</code>, as shown in the following table. </p>
+ <table><thead><tr><th> Value <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="4" sourceendlinenumber="4"> </th><th> Meaning <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="6" sourceendlinenumber="6"> </th></tr></thead><tbody><tr><td> Less than zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="8" sourceendlinenumber="8"> </td><td><code data-dev-comment-type="paramref">x</code> is less than <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="10" sourceendlinenumber="10"> </td></tr><tr><td> Zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="12" sourceendlinenumber="12"> </td><td><code data-dev-comment-type="paramref">x</code> equals <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="14" sourceendlinenumber="14"> </td></tr><tr><td> Greater than zero <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="16" sourceendlinenumber="16"> </td><td><code data-dev-comment-type="paramref">x</code> is greater than <code data-dev-comment-type="paramref">y</code>. <p>
+<p sourcefile="System.Collections.yml" sourcestartlinenumber="18" sourceendlinenumber="18"> </td></tr></tbody></table></p>
+</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="x">x</paramref> or <paramref name="y">y</paramref> is of a type that cannot be cast to type <paramref name="T">T</paramref>. -or- <paramref name="x">x</paramref> and <paramref name="y">y</paramref> do not implement either the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the dictionary at the current position of the enumerator, as a <see cref="T:System.Collections.DictionaryEntry"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
+ <summary>Gets the key of the element at the current position of the enumerator.</summary>
+ <returns>The key of the element in the dictionary at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
+ <summary>Gets the value of the element at the current position of the enumerator.</summary>
+ <returns>The value of the element in the dictionary at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator, as an <see cref="T:System.Object"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2.KeyCollection">
+ <summary>Represents the collection of keys in a <see cref="T:System.Collections.Generic.Dictionary`2"></see>. This class cannot be inherited.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.Dictionary`2"></see> whose keys are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see> elements to an existing one-dimensional <see cref="T:System.Array"></see>, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>. Retrieving the value of this property is an O(1) operation.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection.Enumerator"></see> for the <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Add(`0)">
+ <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Clear">
+ <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Contains(`0)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> contains a specific value.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>, this property always returns true.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Remove(`0)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false. This method also returns false if item was not found in the original <see cref="T:System.Collections.Generic.ICollection`1"></see>.</returns>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{TKey}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2.ValueCollection">
+ <summary>Represents the collection of values in a <see cref="T:System.Collections.Generic.Dictionary`2"></see>. This class cannot be inherited.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.#ctor(System.Collections.Generic.Dictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see> class that reflects the values in the specified <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.Dictionary`2"></see> whose values are reflected in the new <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see> elements to an existing one-dimensional <see cref="T:System.Array"></see>, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection.Enumerator"></see> for the <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Add(`1)">
+ <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Clear">
+ <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Contains(`1)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> contains a specific value.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>, this property always returns true.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Remove(`1)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false. This method also returns false if <paramref name="item">item</paramref> was not found in the original <see cref="T:System.Collections.Generic.ICollection`1"></see>.</returns>
+ <exception cref="T:System.NotSupportedException">Always thrown.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{TValue}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.Dictionary`2">
+ <summary>Represents a collection of keys and values.</summary>
+ <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
+ <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that is empty, has the default initial capacity, and uses the default equality comparer for the key type.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see> and uses the default equality comparer for the key type.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}})">
+ <param name="collection"></param>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see>.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> for the type of the key.</param>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that is empty, has the specified initial capacity, and uses the default equality comparer for the key type.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2"></see> can contain.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than 0.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see> and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> for the type of the key.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{`0,`1}},System.Collections.Generic.IEqualityComparer{`0})">
+ <param name="collection"></param>
+ <param name="comparer"></param>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see>.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Dictionary`2"></see> can contain.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> for the type of the key.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than 0.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Dictionary`2"></see> class with serialized data.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object containing the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</param>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Add(`0,`1)">
+ <summary>Adds the specified key and value to the dictionary.</summary>
+ <param name="key">The key of the element to add.</param>
+ <param name="value">The value of the element to add. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Clear">
+ <summary>Removes all keys and values from the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Comparer">
+ <summary>Gets the <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> that is used to determine equality of keys for the dictionary.</summary>
+ <returns>The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> generic interface implementation that is used to determine equality of keys for the current <see cref="T:System.Collections.Generic.Dictionary`2"></see> and to provide hash values for the keys.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ContainsKey(`0)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2"></see> contains the specified key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.ContainsValue(`1)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.Dictionary`2"></see> contains a specific value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>. The value can be null for reference types.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2"></see> contains an element with the specified value; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Count">
+ <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.Enumerator"></see> structure for the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.Dictionary`2"></see> instance.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.Dictionary`2"></see> instance.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.Dictionary`2"></see> instance.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Item(`0)">
+ <summary>Gets or sets the value associated with the specified key.</summary>
+ <param name="key">The key of the value to get or set.</param>
+ <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException"></see>, and a set operation creates a new element with the specified key.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key">key</paramref> does not exist in the collection.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Keys">
+ <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see> containing the keys in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.Dictionary`2"></see> instance is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0)">
+ <summary>Removes the value with the specified key from the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <returns>true if the element is successfully found and removed; otherwise, false. This method returns false if <paramref name="key">key</paramref> is not found in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.Remove(`0,`1@)">
+ <param name="key"></param>
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.TryAdd(`0,`1)">
+ <param name="key"></param>
+ <param name="value"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.TryGetValue(`0,`1@)">
+ <summary>Gets the value associated with the specified key.</summary>
+ <param name="key">The key of the value to get.</param>
+ <param name="value">When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.Dictionary`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.Values">
+ <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.Dictionary`2.ValueCollection"></see> containing the values in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
+ <param name="array"></param>
+ <param name="index"></param>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey,TValue}}#GetEnumerator">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"></see> to an array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.Generic.ICollection`1"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
+ <summary>Adds the specified key and value to the dictionary.</summary>
+ <param name="key">The object to use as the key.</param>
+ <param name="value">The object to use as the value.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.Dictionary`2"></see>. -or- <paramref name="value">value</paramref> is of a type that is not assignable to <paramref name="TValue">TValue</paramref>, the type of values in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>. -or- A value with the same key already exists in the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IDictionary"></see> contains an element with the specified key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Item(System.Object)">
+ <summary>Gets or sets the value with the specified key.</summary>
+ <param name="key">The key of the value to get.</param>
+ <returns>The value associated with the specified key, or null if <paramref name="key">key</paramref> is not in the dictionary or <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.Dictionary`2"></see>. -or- A value is being assigned, and <paramref name="value">value</paramref> is of a type that is not assignable to the value type <paramref name="TValue">TValue</paramref> of the <see cref="T:System.Collections.Generic.Dictionary`2"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Keys">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Remove(System.Object)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Dictionary`2.System#Collections#IDictionary#Values">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Dictionary`2.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.EqualityComparer`1">
+ <summary>Provides a base class for implementations of the <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> generic interface.</summary>
+ <typeparam name="T">The type of objects to compare.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.EqualityComparer`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> class.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.EqualityComparer`1.Default">
+ <summary>Returns a default equality comparer for the type specified by the generic argument.</summary>
+ <returns>The default instance of the <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> class for type <paramref name="T">T</paramref>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.EqualityComparer`1.Equals(`0,`0)">
+ <summary>When overridden in a derived class, determines whether two objects of type <paramref name="T">T</paramref> are equal.</summary>
+ <param name="x">The first object to compare.</param>
+ <param name="y">The second object to compare.</param>
+ <returns>true if the specified objects are equal; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.EqualityComparer`1.GetHashCode(`0)">
+ <summary>When overridden in a derived class, serves as a hash function for the specified object for hashing algorithms and data structures, such as a hash table.</summary>
+ <param name="obj">The object for which to get a hash code.</param>
+ <returns>A hash code for the specified object.</returns>
+ <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj">obj</paramref> is a reference type and <paramref name="obj">obj</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
+ <summary>Determines whether the specified objects are equal.</summary>
+ <param name="x">The first object to compare.</param>
+ <param name="y">The second object to compare.</param>
+ <returns>true if the specified objects are equal; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="x">x</paramref> or <paramref name="y">y</paramref> is of a type that cannot be cast to type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.EqualityComparer`1.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
+ <summary>Returns a hash code for the specified object.</summary>
+ <param name="obj">The <see cref="T:System.Object"></see> for which a hash code is to be returned.</param>
+ <returns>A hash code for the specified object.</returns>
+ <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj">obj</paramref> is a reference type and <paramref name="obj">obj</paramref> is null. -or- <paramref name="obj">obj</paramref> is of a type that cannot be cast to type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.HashSet`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.HashSet`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.HashSet`1"></see> collection at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Enumerator.Dispose">
+ <summary>Releases all resources used by a <see cref="T:System.Collections.Generic.HashSet`1.Enumerator"></see> object.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.HashSet`1"></see> collection.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator, as an <see cref="T:System.Object"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.HashSet`1">
+ <summary>Represents a set of values.</summary>
+ <typeparam name="T">The type of elements in the hash set.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1"></see> class that is empty and uses the default equality comparer for the set type.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1"></see> class that uses the default equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The collection whose elements are copied to the new set.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1"></see> class that is empty and uses the specified equality comparer for the set type.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> implementation to use when comparing values in the set, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> implementation for the set type.</param>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Int32)">
+ <param name="capacity"></param>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1"></see> class that uses the specified equality comparer for the set type, contains elements copied from the specified collection, and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The collection whose elements are copied to the new set.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> implementation to use when comparing values in the set, or null to use the default <see cref="T:System.Collections.Generic.EqualityComparer`1"></see> implementation for the set type.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Int32,System.Collections.Generic.IEqualityComparer{`0})">
+ <param name="capacity"></param>
+ <param name="comparer"></param>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.HashSet`1"></see> class with serialized data.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Add(`0)">
+ <summary>Adds the specified element to a set.</summary>
+ <param name="item">The element to add to the set.</param>
+ <returns>true if the element is added to the <see cref="T:System.Collections.Generic.HashSet`1"></see> object; false if the element is already present.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Clear">
+ <summary>Removes all elements from a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.HashSet`1.Comparer">
+ <summary>Gets the <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> object that is used to determine equality for the values in the set.</summary>
+ <returns>The <see cref="T:System.Collections.Generic.IEqualityComparer`1"></see> object that is used to determine equality for the values in the set.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Contains(`0)">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object contains the specified element.</summary>
+ <param name="item">The element to locate in the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object contains the specified element; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[])">
+ <summary>Copies the elements of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object to an array.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1"></see> object. The array must have zero-based indexing.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the elements of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object to an array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1"></see> object. The array must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="arrayIndex">arrayIndex</paramref> is greater than the length of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.CopyTo(`0[],System.Int32,System.Int32)">
+ <summary>Copies the specified number of elements of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object to an array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.HashSet`1"></see> object. The array must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <param name="count">The number of elements to copy to array.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="arrayIndex">arrayIndex</paramref> is greater than the length of the destination <paramref name="array">array</paramref>. -or- <paramref name="count">count</paramref> is greater than the available space from the <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.HashSet`1.Count">
+ <summary>Gets the number of elements that are contained in a set.</summary>
+ <returns>The number of elements that are contained in the set.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.CreateSetComparer">
+ <summary>Returns an <see cref="T:System.Collections.IEqualityComparer"></see> object that can be used for equality testing of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <returns>An <see cref="T:System.Collections.IEqualityComparer"></see> object that can be used for deep equality testing of the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Removes all elements in the specified collection from the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <param name="other">The collection of items to remove from the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.GetEnumerator">
+ <summary>Returns an enumerator that iterates through a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.HashSet`1.Enumerator"></see> object for the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data needed to serialize a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object to contain only elements that are present in that object and in the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a proper subset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a proper subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a proper superset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a proper superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a subset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a superset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object is a superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object and a specified collection share common elements.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object and <paramref name="other">other</paramref> share at least one common element; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.Remove(`0)">
+ <summary>Removes the specified element from a <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</summary>
+ <param name="item">The element to remove.</param>
+ <returns>true if the element is successfully found and removed; otherwise, false. This method returns false if <paramref name="item">item</paramref> is not found in the <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.RemoveWhere(System.Predicate{`0})">
+ <summary>Removes all elements that match the conditions defined by the specified predicate from a <see cref="T:System.Collections.Generic.HashSet`1"></see> collection.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the elements to remove.</param>
+ <returns>The number of elements that were removed from the <see cref="T:System.Collections.Generic.HashSet`1"></see> collection.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.HashSet`1"></see> object and the specified collection contain the same elements.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.HashSet`1"></see> object is equal to <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object to contain only elements that are present either in that object or in the specified collection, but not both.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.TrimExcess">
+ <summary>Sets the capacity of a <see cref="T:System.Collections.Generic.HashSet`1"></see> object to the actual number of elements it contains, rounded up to a nearby, implementation-specific value.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.TryGetValue(`0,`0@)">
+ <param name="equalValue"></param>
+ <param name="actualValue"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object to contain all elements that are present in itself, the specified collection, or both.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.HashSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
+ <summary>Adds an item to an <see cref="T:System.Collections.Generic.ICollection`1"></see> object.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see> object.</param>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.HashSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
+ <summary>Gets a value indicating whether a collection is read-only.</summary>
+ <returns>true if the collection is read-only; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> object that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.HashSet`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> object that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.LinkedList`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.LinkedList`1"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Enumerator.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.LinkedList`1">
+ <summary>Represents a doubly linked list.</summary>
+ <typeparam name="T">Specifies the element type of the linked list.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1"></see> class that is empty.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1"></see> class that contains elements copied from the specified <see cref="T:System.Collections.IEnumerable"></see> and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The <see cref="T:System.Collections.IEnumerable"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedList`1"></see> class that is serializable with the specified <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> and <see cref="T:System.Runtime.Serialization.StreamingContext"></see>.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object containing the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
+ <summary>Adds the specified new node after the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> after which to insert newNode.</param>
+ <param name="newNode">The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> to add to the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null. -or- <paramref name="newNode">newNode</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1"></see>. -or- <paramref name="newNode">newNode</paramref> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddAfter(System.Collections.Generic.LinkedListNode{`0},`0)">
+ <summary>Adds a new node containing the specified value after the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> after which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing value.</param>
+ <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing <paramref name="value">value</paramref>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},System.Collections.Generic.LinkedListNode{`0})">
+ <summary>Adds the specified new node before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> before which to insert newNode.</param>
+ <param name="newNode">The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> to add to the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null. -or- <paramref name="newNode">newNode</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1"></see>. -or- <paramref name="newNode">newNode</paramref> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddBefore(System.Collections.Generic.LinkedListNode{`0},`0)">
+ <summary>Adds a new node containing the specified value before the specified existing node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> before which to insert a new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing value.</param>
+ <param name="value">The value to add to the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing <paramref name="value">value</paramref>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(System.Collections.Generic.LinkedListNode{`0})">
+ <summary>Adds the specified new node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddFirst(`0)">
+ <summary>Adds a new node containing the specified value at the start of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="value">The value to add at the start of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing <paramref name="value">value</paramref>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddLast(System.Collections.Generic.LinkedListNode{`0})">
+ <summary>Adds the specified new node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> belongs to another <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.AddLast(`0)">
+ <summary>Adds a new node containing the specified value at the end of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="value">The value to add at the end of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The new <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> containing <paramref name="value">value</paramref>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Clear">
+ <summary>Removes all nodes from the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Contains(`0)">
+ <summary>Determines whether a value is in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>. The value can be null for reference types.</param>
+ <returns>true if <paramref name="value">value</paramref> is found in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the entire <see cref="T:System.Collections.Generic.LinkedList`1"></see> to a compatible one-dimensional <see cref="T:System.Array"></see>, starting at the specified index of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.LinkedList`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.LinkedList`1"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.Count">
+ <summary>Gets the number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>The number of nodes actually contained in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Find(`0)">
+ <summary>Finds the first node that contains the specified value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> that contains the specified value, if found; otherwise, null.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.FindLast(`0)">
+ <summary>Finds the last node that contains the specified value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>The last <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> that contains the specified value, if found; otherwise, null.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.First">
+ <summary>Gets the first node of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>The first <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.LinkedList`1.Enumerator"></see> for the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.Last">
+ <summary>Gets the last node of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>The last <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.LinkedList`1"></see> instance is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Remove(System.Collections.Generic.LinkedListNode{`0})">
+ <summary>Removes the specified node from the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="node">The <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> to remove from the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="node">node</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="node">node</paramref> is not in the current <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.Remove(`0)">
+ <summary>Removes the first occurrence of the specified value from the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <param name="value">The value to remove from the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</param>
+ <returns>true if the element containing <paramref name="value">value</paramref> is successfully removed; otherwise, false. This method also returns false if <paramref name="value">value</paramref> was not found in the original <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.RemoveFirst">
+ <summary>Removes the node at the start of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.RemoveLast">
+ <summary>Removes the node at the end of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.LinkedList`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#Add(`0)">
+ <summary>Adds an item at the end of the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</summary>
+ <param name="value">The value to add at the end of the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedList`1.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.LinkedList`1"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedList`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the linked list as a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the linked list as a collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.LinkedListNode`1">
+ <summary>Represents a node in a <see cref="T:System.Collections.Generic.LinkedList`1"></see>. This class cannot be inherited.</summary>
+ <typeparam name="T">Specifies the element type of the linked list.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.LinkedListNode`1.#ctor(`0)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> class, containing the specified value.</summary>
+ <param name="value">The value to contain in the <see cref="T:System.Collections.Generic.LinkedListNode`1"></see>.</param>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedListNode`1.List">
+ <summary>Gets the <see cref="T:System.Collections.Generic.LinkedList`1"></see> that the <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> belongs to.</summary>
+ <returns>A reference to the <see cref="T:System.Collections.Generic.LinkedList`1"></see> that the <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> belongs to, or null if the <see cref="T:System.Collections.Generic.LinkedListNode`1"></see> is not linked.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedListNode`1.Next">
+ <summary>Gets the next node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>A reference to the next node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>, or null if the current node is the last element (<see cref="P:System.Collections.Generic.LinkedList`1.Last"></see>) of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedListNode`1.Previous">
+ <summary>Gets the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</summary>
+ <returns>A reference to the previous node in the <see cref="T:System.Collections.Generic.LinkedList`1"></see>, or null if the current node is the first element (<see cref="P:System.Collections.Generic.LinkedList`1.First"></see>) of the <see cref="T:System.Collections.Generic.LinkedList`1"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.LinkedListNode`1.Value">
+ <summary>Gets the value contained in the node.</summary>
+ <returns>The value contained in the node.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.List`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.List`1"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.List`1.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.List`1"></see> at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.List`1">
+ <summary>Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists.</summary>
+ <typeparam name="T">The type of elements in the list.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1"></see> class that is empty and has the default initial capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1"></see> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The collection whose elements are copied to the new list.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.List`1"></see> class that is empty and has the specified initial capacity.</summary>
+ <param name="capacity">The number of elements that the new list can initially store.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than 0.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Add(`0)">
+ <summary>Adds an object to the end of the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="item">The object to be added to the end of the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Adds the elements of the specified collection to the end of the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="collection">The collection whose elements should be added to the end of the <see cref="T:System.Collections.Generic.List`1"></see>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.AsReadOnly">
+ <summary>Returns a read-only <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1"></see> wrapper for the current collection.</summary>
+ <returns>An object that acts as a read-only wrapper around the current <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.BinarySearch(`0)">
+ <summary>Searches the entire sorted <see cref="T:System.Collections.Generic.List`1"></see> for an element using the default comparer and returns the zero-based index of the element.</summary>
+ <param name="item">The object to locate. The value can be null for reference types.</param>
+ <returns>The zero-based index of <paramref name="item">item</paramref> in the sorted <see cref="T:System.Collections.Generic.List`1"></see>, if <paramref name="item">item</paramref> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item">item</paramref> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find an implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.BinarySearch(`0,System.Collections.Generic.IComparer{`0})">
+ <summary>Searches the entire sorted <see cref="T:System.Collections.Generic.List`1"></see> for an element using the specified comparer and returns the zero-based index of the element.</summary>
+ <param name="item">The object to locate. The value can be null for reference types.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing elements. -or- null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see>.</param>
+ <returns>The zero-based index of <paramref name="item">item</paramref> in the sorted <see cref="T:System.Collections.Generic.List`1"></see>, if <paramref name="item">item</paramref> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item">item</paramref> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find an implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0})">
+ <summary>Searches a range of elements in the sorted <see cref="T:System.Collections.Generic.List`1"></see> for an element using the specified comparer and returns the zero-based index of the element.</summary>
+ <param name="index">The zero-based starting index of the range to search.</param>
+ <param name="count">The length of the range to search.</param>
+ <param name="item">The object to locate. The value can be null for reference types.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see>.</param>
+ <returns>The zero-based index of <paramref name="item">item</paramref> in the sorted <see cref="T:System.Collections.Generic.List`1"></see>, if <paramref name="item">item</paramref> is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than <paramref name="item">item</paramref> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.Generic.List`1.Count"></see>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find an implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.Capacity">
+ <summary>Gets or sets the total number of elements the internal data structure can hold without resizing.</summary>
+ <returns>The number of elements that the <see cref="T:System.Collections.Generic.List`1"></see> can contain before resizing is required.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><see cref="P:System.Collections.Generic.List`1.Capacity"></see> is set to a value that is less than <see cref="P:System.Collections.Generic.List`1.Count"></see>.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Clear">
+ <summary>Removes all elements from the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Contains(`0)">
+ <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.List`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.ConvertAll``1(System.Converter{`0,``0})">
+ <summary>Converts the elements in the current <see cref="T:System.Collections.Generic.List`1"></see> to another type, and returns a list containing the converted elements.</summary>
+ <param name="converter">A <see cref="T:System.Converter`2"></see> delegate that converts each element from one type to another type.</param>
+ <typeparam name="TOutput">The type of the elements of the target array.</typeparam>
+ <returns>A <see cref="T:System.Collections.Generic.List`1"></see> of the target type containing the converted elements from the current <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="converter">converter</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the entire <see cref="T:System.Collections.Generic.List`1"></see> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.List`1"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.CopyTo(System.Int32,`0[],System.Int32,System.Int32)">
+ <summary>Copies a range of elements from the <see cref="T:System.Collections.Generic.List`1"></see> to a compatible one-dimensional array, starting at the specified index of the target array.</summary>
+ <param name="index">The zero-based index in the source <see cref="T:System.Collections.Generic.List`1"></see> at which copying begins.</param>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <param name="count">The number of elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="arrayIndex">arrayIndex</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> is equal to or greater than the <see cref="P:System.Collections.Generic.List`1.Count"></see> of the source <see cref="T:System.Collections.Generic.List`1"></see>. -or- The number of elements from <paramref name="index">index</paramref> to the end of the source <see cref="T:System.Collections.Generic.List`1"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.CopyTo(`0[])">
+ <summary>Copies the entire <see cref="T:System.Collections.Generic.List`1"></see> to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.List`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.List`1"></see> is greater than the number of elements that the destination <paramref name="array">array</paramref> can contain.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Exists(System.Predicate{`0})">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.List`1"></see> contains elements that match the conditions defined by the specified predicate.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the elements to search for.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.List`1"></see> contains one or more elements that match the conditions defined by the specified predicate; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Find(System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindAll(System.Predicate{`0})">
+ <summary>Retrieves all the elements that match the conditions defined by the specified predicate.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the elements to search for.</param>
+ <returns>A <see cref="T:System.Collections.Generic.List`1"></see> containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindIndex(System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from the specified index to the last element.</summary>
+ <param name="startIndex">The zero-based starting index of the search.</param>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindIndex(System.Int32,System.Int32,System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that starts at the specified index and contains the specified number of elements.</summary>
+ <param name="startIndex">The zero-based starting index of the search.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the first occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>. -or- <paramref name="count">count</paramref> is less than 0. -or- <paramref name="startIndex">startIndex</paramref> and <paramref name="count">count</paramref> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindLast(System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T">T</paramref>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from the first element to the specified index.</summary>
+ <param name="startIndex">The zero-based starting index of the backward search.</param>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.FindLastIndex(System.Int32,System.Int32,System.Predicate{`0})">
+ <summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that contains the specified number of elements and ends at the specified index.</summary>
+ <param name="startIndex">The zero-based starting index of the backward search.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the element to search for.</param>
+ <returns>The zero-based index of the last occurrence of an element that matches the conditions defined by <paramref name="match">match</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="startIndex">startIndex</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>. -or- <paramref name="count">count</paramref> is less than 0. -or- <paramref name="startIndex">startIndex</paramref> and <paramref name="count">count</paramref> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.ForEach(System.Action{`0})">
+ <summary>Performs the specified action on each element of the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="action">The <see cref="T:System.Action`1"></see> delegate to perform on each element of the <see cref="T:System.Collections.Generic.List`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="action">action</paramref> is null.</exception>
+ <exception cref="T:System.InvalidOperationException">An element in the collection has been modified.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.List`1.Enumerator"></see> for the <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.GetRange(System.Int32,System.Int32)">
+ <summary>Creates a shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="index">The zero-based <see cref="T:System.Collections.Generic.List`1"></see> index at which the range starts.</param>
+ <param name="count">The number of elements in the range.</param>
+ <returns>A shallow copy of a range of elements in the source <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32)">
+ <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from the specified index to the last element.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="item">item</paramref> within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from <paramref name="index">index</paramref> to the last element, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.IndexOf(`0,System.Int32,System.Int32)">
+ <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that starts at the specified index and contains the specified number of elements.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <param name="index">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="item">item</paramref> within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that starts at <paramref name="index">index</paramref> and contains <paramref name="count">count</paramref> number of elements, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>. -or- <paramref name="count">count</paramref> is less than 0. -or- <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.IndexOf(`0)">
+ <summary>Searches for the specified object and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="item">item</paramref> within the entire <see cref="T:System.Collections.Generic.List`1"></see>, if found; otherwise, –1.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Insert(System.Int32,`0)">
+ <summary>Inserts an element into the <see cref="T:System.Collections.Generic.List`1"></see> at the specified index.</summary>
+ <param name="index">The zero-based index at which item should be inserted.</param>
+ <param name="item">The object to insert. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="index">index</paramref> is greater than <see cref="P:System.Collections.Generic.List`1.Count"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0})">
+ <summary>Inserts the elements of a collection into the <see cref="T:System.Collections.Generic.List`1"></see> at the specified index.</summary>
+ <param name="index">The zero-based index at which the new elements should be inserted.</param>
+ <param name="collection">The collection whose elements should be inserted into the <see cref="T:System.Collections.Generic.List`1"></see>. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="index">index</paramref> is greater than <see cref="P:System.Collections.Generic.List`1.Count"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="index">index</paramref> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0)">
+ <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the entire the <see cref="T:System.Collections.Generic.List`1"></see>, if found; otherwise, –1.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32)">
+ <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from the first element to the specified index.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <param name="index">The zero-based starting index of the backward search.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that extends from the first element to <paramref name="index">index</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.LastIndexOf(`0,System.Int32,System.Int32)">
+ <summary>Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that contains the specified number of elements and ends at the specified index.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <param name="index">The zero-based starting index of the backward search.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="item">item</paramref> within the range of elements in the <see cref="T:System.Collections.Generic.List`1"></see> that contains <paramref name="count">count</paramref> number of elements and ends at <paramref name="index">index</paramref>, if found; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is outside the range of valid indexes for the <see cref="T:System.Collections.Generic.List`1"></see>. -or- <paramref name="count">count</paramref> is less than 0. -or- <paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not specify a valid section in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Remove(`0)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.List`1"></see>. The value can be null for reference types.</param>
+ <returns>true if <paramref name="item">item</paramref> is successfully removed; otherwise, false. This method also returns false if <paramref name="item">item</paramref> was not found in the <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.RemoveAll(System.Predicate{`0})">
+ <summary>Removes all the elements that match the conditions defined by the specified predicate.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions of the elements to remove.</param>
+ <returns>The number of elements removed from the <see cref="T:System.Collections.Generic.List`1"></see> .</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.RemoveAt(System.Int32)">
+ <summary>Removes the element at the specified index of the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="index">The zero-based index of the element to remove.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="index">index</paramref> is equal to or greater than <see cref="P:System.Collections.Generic.List`1.Count"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.RemoveRange(System.Int32,System.Int32)">
+ <summary>Removes a range of elements from the <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ <param name="index">The zero-based starting index of the range of elements to remove.</param>
+ <param name="count">The number of elements to remove.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Reverse">
+ <summary>Reverses the order of the elements in the entire <see cref="T:System.Collections.Generic.List`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Reverse(System.Int32,System.Int32)">
+ <summary>Reverses the order of the elements in the specified range.</summary>
+ <param name="index">The zero-based starting index of the range to reverse.</param>
+ <param name="count">The number of elements in the range to reverse.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not denote a valid range of elements in the <see cref="T:System.Collections.Generic.List`1"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Sort(System.Comparison{`0})">
+ <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1"></see> using the specified <see cref="T:System.Comparison`1"></see>.</summary>
+ <param name="comparison">The <see cref="T:System.Comparison`1"></see> to use when comparing elements.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="comparison">comparison</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">The implementation of <paramref name="comparison">comparison</paramref> caused an error during the sort. For example, <paramref name="comparison">comparison</paramref> might not return 0 when comparing an item with itself.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0})">
+ <summary>Sorts the elements in a range of elements in <see cref="T:System.Collections.Generic.List`1"></see> using the specified comparer.</summary>
+ <param name="index">The zero-based starting index of the range to sort.</param>
+ <param name="count">The length of the range to sort.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see>.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0. -or- <paramref name="count">count</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="index">index</paramref> and <paramref name="count">count</paramref> do not specify a valid range in the <see cref="T:System.Collections.Generic.List`1"></see>. -or- The implementation of <paramref name="comparer">comparer</paramref> caused an error during the sort. For example, <paramref name="comparer">comparer</paramref> might not return 0 when comparing an item with itself.</exception>
+ <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Sort">
+ <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1"></see> using the default comparer.</summary>
+ <exception cref="T:System.InvalidOperationException">The default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find an implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.Sort(System.Collections.Generic.IComparer{`0})">
+ <summary>Sorts the elements in the entire <see cref="T:System.Collections.Generic.List`1"></see> using the specified comparer.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing elements, or null to use the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see>.</param>
+ <exception cref="T:System.InvalidOperationException"><paramref name="comparer">comparer</paramref> is null, and the default comparer <see cref="P:System.Collections.Generic.Comparer`1.Default"></see> cannot find implementation of the <see cref="T:System.IComparable`1"></see> generic interface or the <see cref="T:System.IComparable"></see> interface for type <paramref name="T">T</paramref>.</exception>
+ <exception cref="T:System.ArgumentException">The implementation of <paramref name="comparer">comparer</paramref> caused an error during the sort. For example, <paramref name="comparer">comparer</paramref> might not return 0 when comparing an item with itself.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.ToArray">
+ <summary>Copies the elements of the <see cref="T:System.Collections.Generic.List`1"></see> to a new array.</summary>
+ <returns>An array containing copies of the elements of the <see cref="T:System.Collections.Generic.List`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.TrimExcess">
+ <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.List`1"></see>, if that number is less than a threshold value.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.TrueForAll(System.Predicate{`0})">
+ <summary>Determines whether every element in the <see cref="T:System.Collections.Generic.List`1"></see> matches the conditions defined by the specified predicate.</summary>
+ <param name="match">The <see cref="T:System.Predicate`1"></see> delegate that defines the conditions to check against the elements.</param>
+ <returns>true if every element in the <see cref="T:System.Collections.Generic.List`1"></see> matches the conditions defined by the specified predicate; otherwise, false. If the list has no elements, the return value is true.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.List`1"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Add(System.Object)">
+ <summary>Adds an item to the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="item">The <see cref="T:System.Object"></see> to add to the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>The position into which the new element was inserted.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="item">item</paramref> is of a type that is not assignable to the <see cref="T:System.Collections.IList"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IList"></see> contains a specific value.</summary>
+ <param name="item">The <see cref="T:System.Object"></see> to locate in the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.IList"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IList#IndexOf(System.Object)">
+ <summary>Determines the index of a specific item in the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.IList"></see>.</param>
+ <returns>The index of <paramref name="item">item</paramref> if found in the list; otherwise, –1.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="item">item</paramref> is of a type that is not assignable to the <see cref="T:System.Collections.IList"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Insert(System.Int32,System.Object)">
+ <summary>Inserts an item to the <see cref="T:System.Collections.IList"></see> at the specified index.</summary>
+ <param name="index">The zero-based index at which item should be inserted.</param>
+ <param name="item">The object to insert into the <see cref="T:System.Collections.IList"></see>.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is not a valid index in the <see cref="T:System.Collections.IList"></see>.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="item">item</paramref> is of a type that is not assignable to the <see cref="T:System.Collections.IList"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#IList#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IList"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IList"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.List`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.List`1.System#Collections#IList#Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is not a valid index in the <see cref="T:System.Collections.IList"></see>.</exception>
+ <exception cref="T:System.ArgumentException">The property is set and <paramref name="value">value</paramref> is of a type that is not assignable to the <see cref="T:System.Collections.IList"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.List`1.System#Collections#IList#Remove(System.Object)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.IList"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.IList"></see>.</param>
+ <exception cref="T:System.ArgumentException"><paramref name="item">item</paramref> is of a type that is not assignable to the <see cref="T:System.Collections.IList"></see>.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Queue`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.Queue`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.Queue`1"></see> at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Queue`1.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Queue`1">
+ <summary>Represents a first-in, first-out collection of objects.</summary>
+ <typeparam name="T">Specifies the type of elements in the queue.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1"></see> class that is empty and has the default initial capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1"></see> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The collection whose elements are copied to the new <see cref="T:System.Collections.Generic.Queue`1"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Queue`1"></see> class that is empty and has the specified initial capacity.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Queue`1"></see> can contain.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Clear">
+ <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Contains(`0)">
+ <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Queue`1"></see>. The value can be null for reference types.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.Queue`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Queue`1"></see> elements to an existing one-dimensional <see cref="T:System.Array"></see>, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Queue`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Queue`1"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Queue`1.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Queue`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Dequeue">
+ <summary>Removes and returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <returns>The object that is removed from the beginning of the <see cref="T:System.Collections.Generic.Queue`1"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Enqueue(`0)">
+ <summary>Adds an object to the end of the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.Queue`1"></see>. The value can be null for reference types.</param>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.Queue`1"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.Queue`1.Enumerator"></see> for the <see cref="T:System.Collections.Generic.Queue`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.Peek">
+ <summary>Returns the object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1"></see> without removing it.</summary>
+ <returns>The object at the beginning of the <see cref="T:System.Collections.Generic.Queue`1"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Queue`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.ToArray">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Queue`1"></see> elements to a new array.</summary>
+ <returns>A new array containing elements copied from the <see cref="T:System.Collections.Generic.Queue`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.TrimExcess">
+ <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.Queue`1"></see>, if that number is less than 90 percent of current capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.TryDequeue(`0@)">
+ <param name="result"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.TryPeek(`0@)">
+ <param name="result"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Queue`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Queue`1.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.Queue`1"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Queue`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Entry">
+ <summary>Gets the element at the current position of the enumerator as a <see cref="T:System.Collections.DictionaryEntry"></see> structure.</summary>
+ <returns>The element in the collection at the current position of the dictionary, as a <see cref="T:System.Collections.DictionaryEntry"></see> structure.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Key">
+ <summary>Gets the key of the element at the current position of the enumerator.</summary>
+ <returns>The key of the element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IDictionaryEnumerator#Value">
+ <summary>Gets the value of the element at the current position of the enumerator.</summary>
+ <returns>The value of the element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2.KeyCollection">
+ <summary>Represents the collection of keys in a <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>. This class cannot be inherited.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see> class that reflects the keys in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> whose keys are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see> elements to an existing one-dimensional array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection.Enumerator"></see> structure for the <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Add(`0)">
+ <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Clear">
+ <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Contains(`0)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> contains the specified value.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if item is found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#ICollection{TKey}#Remove(`0)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if item is successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false. This method also returns false if item is not found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</returns>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#Generic#IEnumerable{TKey}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an array, starting at a particular array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see> at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2.ValueCollection">
+ <summary>Represents the collection of values in a <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>. This class cannot be inherited</summary>
+ <typeparam name="TKey"></typeparam>
+ <typeparam name="TValue"></typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.#ctor(System.Collections.Generic.SortedDictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see> class that reflects the values in the specified <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> whose values are reflected in the new <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see> elements to an existing one-dimensional array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection.Enumerator"></see> structure for the <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Add(`1)">
+ <summary>Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Clear">
+ <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Contains(`1)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> contains a specified value.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#ICollection{TValue}#Remove(`1)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. This implementation always throws a <see cref="T:System.NotSupportedException"></see>.</summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</param>
+ <returns>true if <paramref name="item">item</paramref> is successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"></see>; otherwise, false. This method also returns false if <paramref name="item">item</paramref> is not found in the <see cref="T:System.Collections.Generic.ICollection`1"></see>.</returns>
+ <exception cref="T:System.NotSupportedException">Always thrown; the collection is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#Generic#IEnumerable{TValue}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an array, starting at a particular array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.ICollection"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.SortedDictionary`2">
+ <summary>Represents a collection of key/value pairs that are sorted on the key.</summary>
+ <typeparam name="TKey">The type of the keys in the dictionary.</typeparam>
+ <typeparam name="TValue">The type of the values in the dictionary.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> class that is empty and uses the default <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation for the key type.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> class that is empty and uses the specified <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to compare keys.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.Comparer`1"></see> for the type of the key.</param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see> and uses the default <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation for the key type.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see> and uses the specified <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to compare keys.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing keys, or null to use the default <see cref="T:System.Collections.Generic.Comparer`1"></see> for the type of the key.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Add(`0,`1)">
+ <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <param name="key">The key of the element to add.</param>
+ <param name="value">The value of the element to add. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Clear">
+ <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Comparer">
+ <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1"></see> used to order the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>The <see cref="T:System.Collections.Generic.IComparer`1"></see> used to order the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsKey(`0)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> contains an element with the specified key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.ContainsValue(`1)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> contains an element with the specified value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>. The value can be null for reference types.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> contains an element with the specified value; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> to the specified array of <see cref="T:System.Collections.Generic.KeyValuePair`2"></see> structures, starting at the specified index.</summary>
+ <param name="array">The one-dimensional array of <see cref="T:System.Collections.Generic.KeyValuePair`2"></see> structures that is the destination of the elements copied from the current <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Count">
+ <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.Enumerator"></see> for the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Item(`0)">
+ <summary>Gets or sets the value associated with the specified key.</summary>
+ <param name="key">The key of the value to get or set.</param>
+ <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException"></see>, and a set operation creates a new element with the specified key.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key">key</paramref> does not exist in the collection.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Keys">
+ <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.KeyCollection"></see> containing the keys in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.Remove(`0)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key">key</paramref> is not found in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.TryGetValue(`0,`1@)">
+ <summary>Gets the value associated with the specified key.</summary>
+ <param name="key">The key of the value to get.</param>
+ <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.Values">
+ <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.SortedDictionary`2.ValueCollection"></see> containing the values in the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey,TValue}}#GetEnumerator">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"></see> to an array, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.ICollection`1"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than 0.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"></see> is greater than the available space from <paramref name="index">index</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.Generic.ICollection`1"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
+ <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.IDictionary"></see>. -or- <paramref name="value">value</paramref> is of a type that is not assignable to the value type <paramref name="TValue">TValue</paramref> of the <see cref="T:System.Collections.IDictionary"></see>. -or- An element with the same key already exists in the <see cref="T:System.Collections.IDictionary"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IDictionary"></see> contains an element with the specified key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> contains an element with the key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Item(System.Object)">
+ <summary>Gets or sets the element with the specified key.</summary>
+ <param name="key">The key of the element to get.</param>
+ <returns>The element with the specified key, or null if <paramref name="key">key</paramref> is not in the dictionary or <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>. -or- A value is being assigned, and <paramref name="value">value</paramref> is of a type that is not assignable to the value type <paramref name="TValue">TValue</paramref> of the <see cref="T:System.Collections.Generic.SortedDictionary`2"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Keys">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedDictionary`2.System#Collections#IDictionary#Values">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedDictionary`2.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.SortedList`2">
+ <summary>Represents a collection of key/value pairs that are sorted by key based on the associated <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation.</summary>
+ <typeparam name="TKey">The type of keys in the collection.</typeparam>
+ <typeparam name="TValue">The type of values in the collection.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that is empty, has the default initial capacity, and uses the default <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that is empty, has the default initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing keys. -or- null to use the default <see cref="T:System.Collections.Generic.Comparer`1"></see> for the type of the key.</param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see>, has sufficient capacity to accommodate the number of elements copied, and uses the default <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedList`2"></see>.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that is empty, has the specified initial capacity, and uses the default <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.SortedList`2"></see> can contain.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Collections.Generic.IDictionary{`0,`1},System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that contains elements copied from the specified <see cref="T:System.Collections.Generic.IDictionary`2"></see>, has sufficient capacity to accommodate the number of elements copied, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ <param name="dictionary">The <see cref="T:System.Collections.Generic.IDictionary`2"></see> whose elements are copied to the new <see cref="T:System.Collections.Generic.SortedList`2"></see>.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing keys. -or- null to use the default <see cref="T:System.Collections.Generic.Comparer`1"></see> for the type of the key.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="dictionary">dictionary</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="dictionary">dictionary</paramref> contains one or more duplicate keys.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.#ctor(System.Int32,System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedList`2"></see> class that is empty, has the specified initial capacity, and uses the specified <see cref="T:System.Collections.Generic.IComparer`1"></see>.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.SortedList`2"></see> can contain.</param>
+ <param name="comparer">The <see cref="T:System.Collections.Generic.IComparer`1"></see> implementation to use when comparing keys. -or- null to use the default <see cref="T:System.Collections.Generic.Comparer`1"></see> for the type of the key.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.Add(`0,`1)">
+ <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <param name="key">The key of the element to add.</param>
+ <param name="value">The value of the element to add. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Capacity">
+ <summary>Gets or sets the number of elements that the <see cref="T:System.Collections.Generic.SortedList`2"></see> can contain.</summary>
+ <returns>The number of elements that the <see cref="T:System.Collections.Generic.SortedList`2"></see> can contain.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException"><see cref="P:System.Collections.Generic.SortedList`2.Capacity"></see> is set to a value that is less than <see cref="P:System.Collections.Generic.SortedList`2.Count"></see>.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.Clear">
+ <summary>Removes all elements from the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Comparer">
+ <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1"></see> for the sorted list.</summary>
+ <returns>The <see cref="T:System.IComparable`1"></see> for the current <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.ContainsKey(`0)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2"></see> contains a specific key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.ContainsValue(`1)">
+ <summary>Determines whether the <see cref="T:System.Collections.Generic.SortedList`2"></see> contains a specific value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2"></see>. The value can be null for reference types.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2"></see> contains an element with the specified value; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Count">
+ <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> of type <see cref="T:System.Collections.Generic.KeyValuePair`2"></see> for the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.IndexOfKey(`0)">
+ <summary>Searches for the specified key and returns the zero-based index within the entire <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</param>
+ <returns>The zero-based index of <paramref name="key">key</paramref> within the entire <see cref="T:System.Collections.Generic.SortedList`2"></see>, if found; otherwise, -1.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.IndexOfValue(`1)">
+ <summary>Searches for the specified value and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Generic.SortedList`2"></see>. The value can be null for reference types.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="value">value</paramref> within the entire <see cref="T:System.Collections.Generic.SortedList`2"></see>, if found; otherwise, -1.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Item(`0)">
+ <summary>Gets or sets the value associated with the specified key.</summary>
+ <param name="key">The key whose value to get or set.</param>
+ <returns>The value associated with the specified key. If the specified key is not found, a get operation throws a <see cref="T:System.Collections.Generic.KeyNotFoundException"></see> and a set operation creates a new element using the specified key.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.Collections.Generic.KeyNotFoundException">The property is retrieved and <paramref name="key">key</paramref> does not exist in the collection.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Keys">
+ <summary>Gets a collection containing the keys in the <see cref="T:System.Collections.Generic.SortedList`2"></see>, in sorted order.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.IList`1"></see> containing the keys in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.Remove(`0)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key">key</paramref> was not found in the original <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.RemoveAt(System.Int32)">
+ <summary>Removes the element at the specified index of the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <param name="index">The zero-based index of the element to remove.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero. -or- <paramref name="index">index</paramref> is equal to or greater than <see cref="P:System.Collections.Generic.SortedList`2.Count"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.TrimExcess">
+ <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.SortedList`2"></see>, if that number is less than 90 percent of current capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.TryGetValue(`0,`1@)">
+ <summary>Gets the value associated with the specified key.</summary>
+ <param name="key">The key whose value to get.</param>
+ <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedList`2"></see> contains an element with the specified key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.Values">
+ <summary>Gets a collection containing the values in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</summary>
+ <returns>A <see cref="T:System.Collections.Generic.IList`1"></see> containing the values in the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
+ <param name="array"></param>
+ <param name="arrayIndex"></param>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#IsReadOnly">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{TKey,TValue}}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
+ <param name="keyValuePair"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{TKey,TValue}}#GetEnumerator">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Keys">
+ <returns></returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#Generic#IReadOnlyDictionary{TKey,TValue}#Values">
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
+ <summary>Adds an element with the provided key and value to the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <param name="key">The <see cref="T:System.Object"></see> to use as the key of the element to add.</param>
+ <param name="value">The <see cref="T:System.Object"></see> to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.IDictionary"></see>. -or- <paramref name="value">value</paramref> is of a type that is not assignable to the value type <paramref name="TValue">TValue</paramref> of the <see cref="T:System.Collections.IDictionary"></see>. -or- An element with the same key already exists in the <see cref="T:System.Collections.IDictionary"></see>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.IDictionary"></see> contains an element with the specified key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.IDictionary"></see>.</param>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> contains an element with the key; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator"></see> for the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> has a fixed size.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> has a fixed size; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.IDictionary"></see> is read-only.</summary>
+ <returns>true if the <see cref="T:System.Collections.IDictionary"></see> is read-only; otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.SortedList`2"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Item(System.Object)">
+ <summary>Gets or sets the element with the specified key.</summary>
+ <param name="key">The key of the element to get or set.</param>
+ <returns>The element with the specified key, or null if <paramref name="key">key</paramref> is not in the dictionary or <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentException">A value is being assigned, and <paramref name="key">key</paramref> is of a type that is not assignable to the key type <paramref name="TKey">TKey</paramref> of the <see cref="T:System.Collections.Generic.SortedList`2"></see>. -or- A value is being assigned, and <paramref name="value">value</paramref> is of a type that is not assignable to the value type <paramref name="TValue">TValue</paramref> of the <see cref="T:System.Collections.Generic.SortedList`2"></see>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Keys">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the keys of the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Remove(System.Object)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="key">key</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedList`2.System#Collections#IDictionary#Values">
+ <summary>Gets an <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection"></see> containing the values in the <see cref="T:System.Collections.IDictionary"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedList`2.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="T:System.Collections.Generic.SortedSet`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.SortedSet`1.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> collection.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Enumerator.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data needed to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> object that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.SortedSet`1">
+ <summary>Represents a collection of objects that is maintained in sorted order.</summary>
+ <typeparam name="T">The type of elements in the set.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> class.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> class that uses a specified comparer.</summary>
+ <param name="comparer">The default comparer to use for comparing objects.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="comparer">comparer</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> class that contains elements copied from a specified enumerable collection.</summary>
+ <param name="collection">The enumerable collection to be copied.</param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IComparer{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> class that contains elements copied from a specified enumerable collection and that uses a specified comparer.</summary>
+ <param name="collection">The enumerable collection to be copied.</param>
+ <param name="comparer">The default comparer to use for comparing objects.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.SortedSet`1"></see> class that contains serialized data.</summary>
+ <param name="info">The object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <param name="context">The structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Add(`0)">
+ <summary>Adds an element to the set and returns a value that indicates if it was successfully added.</summary>
+ <param name="item">The element to add to the set.</param>
+ <returns>true if <paramref name="item">item</paramref> is added to the set; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Clear">
+ <summary>Removes all elements from the set.</summary>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Comparer">
+ <summary>Gets the <see cref="T:System.Collections.Generic.IComparer`1"></see> object that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <returns>The comparer that is used to order the values in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Contains(`0)">
+ <summary>Determines whether the set contains a specific element.</summary>
+ <param name="item">The element to locate in the set.</param>
+ <returns>true if the set contains <paramref name="item">item</paramref>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32,System.Int32)">
+ <summary>Copies a specified number of elements from <see cref="T:System.Collections.Generic.SortedSet`1"></see> to a compatible one-dimensional array, starting at the specified array index.</summary>
+ <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <param name="count">The number of elements to copy.</param>
+ <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index">index</paramref> to the end of the destination array.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero. -or- <paramref name="count">count</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1"></see> to a compatible one-dimensional array, starting at the specified array index.</summary>
+ <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index">index</paramref> to the end of the destination array.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.CopyTo(`0[])">
+ <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1"></see> to a compatible one-dimensional array, starting at the beginning of the target array.</summary>
+ <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</param>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.SortedSet`1"></see> exceeds the number of elements that the destination array can contain.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Count">
+ <summary>Gets the number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <returns>The number of elements in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.CreateSetComparer">
+ <summary>Returns an <see cref="T:System.Collections.IEqualityComparer"></see> object that can be used to create a collection that contains individual sets.</summary>
+ <returns>A comparer for creating a collection of sets.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.CreateSetComparer(System.Collections.Generic.IEqualityComparer{`0})">
+ <summary>Returns an <see cref="T:System.Collections.IEqualityComparer"></see> object, according to a specified comparer, that can be used to create a collection that contains individual sets.</summary>
+ <param name="memberEqualityComparer">The comparer to use for creating the returned comparer.</param>
+ <returns>A comparer for creating a collection of sets.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.ExceptWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Removes all elements that are in a specified collection from the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</summary>
+ <param name="other">The collection of items to remove from the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.GetEnumerator">
+ <summary>Returns an enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <returns>An enumerator that iterates through the <see cref="T:System.Collections.Generic.SortedSet`1"></see> in sorted order.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface and returns the data that you must have to serialize a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.GetViewBetween(`0,`0)">
+ <summary>Returns a view of a subset in a <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <param name="lowerValue">The lowest desired value in the view.</param>
+ <param name="upperValue">The highest desired value in the view.</param>
+ <returns>A subset view that contains only the values in the specified range.</returns>
+ <exception cref="T:System.ArgumentException"><paramref name="lowerValue">lowerValue</paramref> is more than <paramref name="upperValue">upperValue</paramref> according to the comparer.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">A tried operation on the view was outside the range specified by <paramref name="lowerValue">lowerValue</paramref> and <paramref name="upperValue">upperValue</paramref>.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.IntersectWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object so that it contains only elements that are also in a specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.IsProperSubsetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a proper subset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a proper subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.IsProperSupersetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a proper superset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a proper superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.IsSubsetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a subset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a subset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.IsSupersetOf(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether a <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a superset of the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is a superset of <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Max">
+ <summary>Gets the maximum value in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>, as defined by the comparer.</summary>
+ <returns>The maximum value in the set.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.Min">
+ <summary>Gets the minimum value in the <see cref="T:System.Collections.Generic.SortedSet`1"></see>, as defined by the comparer.</summary>
+ <returns>The minimum value in the set.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface, and raises the deserialization event when the deserialization is completed.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Overlaps(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object and a specified collection share common elements.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the <see cref="T:System.Collections.Generic.SortedSet`1"></see> object and <paramref name="other">other</paramref> share at least one common element; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Remove(`0)">
+ <summary>Removes a specified item from the <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <param name="item">The element to remove.</param>
+ <returns>true if the element is found and successfully removed; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.RemoveWhere(System.Predicate{`0})">
+ <summary>Removes all elements that match the conditions defined by the specified predicate from a <see cref="T:System.Collections.Generic.SortedSet`1"></see>.</summary>
+ <param name="match">The delegate that defines the conditions of the elements to remove.</param>
+ <returns>The number of elements that were removed from the <see cref="T:System.Collections.Generic.SortedSet`1"></see> collection..</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="match">match</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.Reverse">
+ <summary>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1"></see> that iterates over the <see cref="T:System.Collections.Generic.SortedSet`1"></see> in reverse order.</summary>
+ <returns>An enumerator that iterates over the <see cref="T:System.Collections.Generic.SortedSet`1"></see> in reverse order.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.SetEquals(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Determines whether the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object and the specified collection contain the same elements.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <returns>true if the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object is equal to <paramref name="other">other</paramref>; otherwise, false.</returns>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.SymmetricExceptWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object so that it contains only elements that are present either in the current object or in the specified collection, but not both.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.TryGetValue(`0,`0@)">
+ <param name="equalValue"></param>
+ <param name="actualValue"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.UnionWith(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Modifies the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object so that it contains all elements that are present in either the current object or the specified collection.</summary>
+ <param name="other">The collection to compare to the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> object.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="other">other</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#Add(`0)">
+ <summary>Adds an item to an <see cref="T:System.Collections.Generic.ICollection`1"></see> object.</summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"></see> object.</param>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1"></see> is read-only.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#Generic#ICollection{T}#IsReadOnly">
+ <summary>Gets a value that indicates whether a <see cref="T:System.Collections.ICollection"></see> is read-only.</summary>
+ <returns>true if the collection is read-only; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An enumerator that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the complete <see cref="T:System.Collections.Generic.SortedSet`1"></see> to a compatible one-dimensional array, starting at the specified array index.</summary>
+ <param name="array">A one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.SortedSet`1"></see>. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentException">The number of elements in the source array is greater than the available space from <paramref name="index">index</paramref> to the end of the destination array.</exception>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index">index</paramref> is less than zero.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value that indicates whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized; otherwise, false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.SortedSet`1.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.Dictionary`2.KeyCollection"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An enumerator that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.IDeserializationCallback"></see> interface, and raises the deserialization event when the deserialization is completed.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object associated with the current <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.SortedSet`1.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable"></see> interface, and returns the data that you need to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo"></see> object that contains the information that is required to serialize the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext"></see> structure that contains the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Generic.SortedSet`1"></see> instance.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="info">info</paramref> is null.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Stack`1.Enumerator">
+ <summary>Enumerates the elements of a <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <typeparam name="T"></typeparam>
+ </member>
+ <member name="P:System.Collections.Generic.Stack`1.Enumerator.Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the <see cref="T:System.Collections.Generic.Stack`1"></see> at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Enumerator.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Collections.Generic.Stack`1.Enumerator"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Enumerator.MoveNext">
+ <summary>Advances the enumerator to the next element of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <returns>true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.</returns>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Current">
+ <summary>Gets the element at the current position of the enumerator.</summary>
+ <returns>The element in the collection at the current position of the enumerator.</returns>
+ <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Enumerator.System#Collections#IEnumerator#Reset">
+ <summary>Sets the enumerator to its initial position, which is before the first element in the collection. This class cannot be inherited.</summary>
+ <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
+ </member>
+ <member name="T:System.Collections.Generic.Stack`1">
+ <summary>Represents a variable size last-in-first-out (LIFO) collection of instances of the same specified type.</summary>
+ <typeparam name="T">Specifies the type of elements in the stack.</typeparam>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1"></see> class that is empty and has the default initial capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1"></see> class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied.</summary>
+ <param name="collection">The collection to copy elements from.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="collection">collection</paramref> is null.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Generic.Stack`1"></see> class that is empty and has the specified initial capacity or the default initial capacity, whichever is greater.</summary>
+ <param name="capacity">The initial number of elements that the <see cref="T:System.Collections.Generic.Stack`1"></see> can contain.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="capacity">capacity</paramref> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Clear">
+ <summary>Removes all objects from the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Contains(`0)">
+ <summary>Determines whether an element is in the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.Stack`1"></see>. The value can be null for reference types.</param>
+ <returns>true if <paramref name="item">item</paramref> is found in the <see cref="T:System.Collections.Generic.Stack`1"></see>; otherwise, false.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.CopyTo(`0[],System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Stack`1"></see> to an existing one-dimensional <see cref="T:System.Array"></see>, starting at the specified array index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.Stack`1"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The number of elements in the source <see cref="T:System.Collections.Generic.Stack`1"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Stack`1.Count">
+ <summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <returns>The number of elements contained in the <see cref="T:System.Collections.Generic.Stack`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.GetEnumerator">
+ <summary>Returns an enumerator for the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.Stack`1.Enumerator"></see> for the <see cref="T:System.Collections.Generic.Stack`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Peek">
+ <summary>Returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1"></see> without removing it.</summary>
+ <returns>The object at the top of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Pop">
+ <summary>Removes and returns the object at the top of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <returns>The object removed from the top of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Collections.Generic.Stack`1"></see> is empty.</exception>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.Push(`0)">
+ <summary>Inserts an object at the top of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</summary>
+ <param name="item">The object to push onto the <see cref="T:System.Collections.Generic.Stack`1"></see>. The value can be null for reference types.</param>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.ToArray">
+ <summary>Copies the <see cref="T:System.Collections.Generic.Stack`1"></see> to a new array.</summary>
+ <returns>A new array containing copies of the elements of the <see cref="T:System.Collections.Generic.Stack`1"></see>.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.TrimExcess">
+ <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.Generic.Stack`1"></see>, if that number is less than 90 percent of current capacity.</summary>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.TryPeek(`0@)">
+ <param name="result"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.TryPop(`0@)">
+ <param name="result"></param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
+ <summary>Returns an enumerator that iterates through the collection.</summary>
+ <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ICollection"></see> to an <see cref="T:System.Array"></see>, starting at a particular <see cref="T:System.Array"></see> index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from <see cref="T:System.Collections.ICollection"></see>. The <see cref="T:System.Array"></see> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException"><paramref name="array">array</paramref> is null.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="arrayIndex">arrayIndex</paramref> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException"><paramref name="array">array</paramref> is multidimensional. -or- <paramref name="array">array</paramref> does not have zero-based indexing. -or- The number of elements in the source <see cref="T:System.Collections.ICollection"></see> is greater than the available space from <paramref name="arrayIndex">arrayIndex</paramref> to the end of the destination <paramref name="array">array</paramref>. -or- The type of the source <see cref="T:System.Collections.ICollection"></see> cannot be cast automatically to the type of the destination <paramref name="array">array</paramref>.</exception>
+ </member>
+ <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe).</summary>
+ <returns>true if access to the <see cref="T:System.Collections.ICollection"></see> is synchronized (thread safe); otherwise, false. In the default implementation of <see cref="T:System.Collections.Generic.Stack`1"></see>, this property always returns false.</returns>
+ </member>
+ <member name="P:System.Collections.Generic.Stack`1.System#Collections#ICollection#SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ICollection"></see>. In the default implementation of <see cref="T:System.Collections.Generic.Stack`1"></see>, this property always returns the current instance.</returns>
+ </member>
+ <member name="M:System.Collections.Generic.Stack`1.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the collection.</returns>
+ </member>
+ </members>
+</doc></span> \ No newline at end of file