SortedSet<'T>.Add Method ('T)
.NET Framework (current version)
Adds an element to the set and returns a value that indicates if it was successfully added.
Assembly: System (in System.dll)
Parameters
- item
-
Type:
T
The element to add to the set.
Implements
ISet<'T>.Add('T)The SortedSet<'T> class does not accept duplicate elements. If item is already in the set, this method returns false and does not throw an exception.
If Count already equals the capacity of the SortedSet<'T> object, the capacity is automatically adjusted to accommodate the new item.
The following example adds elements to a sorted set. This code example is part of a larger example provided for the SortedSet<'T> class.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: