C# Tutorial SortedSet
Basic
- Add element to SortedSet and returns a value that indicates if it was successfully added in CSharp
- Check if SortedSet and a specified collection share common elements in CSharp
- Check if SortedSet and the specified collection contain the same elements in CSharp
- Check if the SortedSet contains a specific element in CSharp
- Get IEqualityComparer used to determine equality for the values in SortedSet in CSharp
- Get an IEnumerable that iterates over the SortedSet in reverse order in CSharp
- Get an enumerator that iterates through the SortedSet in CSharp
- Get the maximum value in the SortedSet as defined by the comparer in CSharp
- Get the minimum value in the SortedSet as defined by the comparer in CSharp
- Get the number of elements in the SortedSet in CSharp
Set_Operation
- Check if a SortedSet is a subset of the specified collection in CSharp
- Check if a SortedSet is a superset of the specified collection in CSharp
- Check if a SortedSet object is a proper superset of the specified collection in CSharp
- Get subset in a SortedSet in CSharp
Copy
- Copy SortedSet to an array in CSharp
- Copy SortedSet to an array, starting at the specified array index in CSharp
- Copy a number of elements from SortedSet to an array, starting at the specified array index in CSharp
Create
- Create SortedSet using a specified comparer in CSharp
- Create a SortedSet that contains elements copied from a specified enumerable collection in CSharp
- Create an empty SortedSet in CSharp
Intersect
- Intersect SortedSet to keep elements that are present either collection, but not both in CSharp
- Intersect with collection in CSharp
Remove
- Remove all elements from SortedSet in CSharp
- Remove elements in a collection from SortedSet in CSharp
- Remove item from SortedSet in CSharp
- Removes elements that match the predicate from SortedSet in CSharp