SetDocumentation Structure

A structure with a generic base class that has inherited documentation on its members

Definition

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
public struct SetDocumentation : ISet<int>, 
	ICollection<int>, IEnumerable<int>, IEnumerable
Inheritance
Object    ValueType    SetDocumentation
Implements
ICollectionInt32, IEnumerableInt32, ISetInt32, IEnumerable

Properties

CountGets the number of elements contained in the ICollectionT.
IsReadOnlyGets a value indicating whether the ICollectionT is read-only.

Methods

AddAdds an element to the current set and returns a value to indicate if the element was successfully added.
ClearRemoves all items from the ICollectionT.
ContainsDetermines whether the ICollectionT contains a specific value.
CopyToCopies the elements of the ICollectionT to an Array, starting at a particular Array index.
EqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
ExceptWithRemoves all elements in the specified collection from the current set.
GetEnumeratorReturns an enumerator that iterates through the collection.
GetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IntersectWithModifies the current set so that it contains only elements that are also in a specified collection.
IsProperSubsetOfDetermines whether the current set is a proper (strict) subset of a specified collection.
IsProperSupersetOfDetermines whether the current set is a proper (strict) superset of a specified collection.
IsSubsetOfDetermines whether a set is a subset of a specified collection.
IsSupersetOfDetermines whether the current set is a superset of a specified collection.
OverlapsDetermines whether the current set overlaps with the specified collection.
RemoveRemoves the first occurrence of a specific object from the ICollectionT.
SetEqualsDetermines whether the current set and the specified collection contain the same elements.
SymmetricExceptWithModifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
ToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)
UnionWithModifies the current set so that it contains all elements that are present in the current set, in the specified collection, or in both.

Explicit Interface Implementations

ICollectionInt32AddAdds an item to the ICollectionT.
IEnumerableGetEnumeratorReturns an enumerator that iterates through a collection.

See Also