Determines if this set is equal to another set. This set is equal to
otherSet if they contain the same items.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic bool IsEqualTo(
Set<T> otherSet
)
public:
bool IsEqualTo(
Set<T>^ otherSet
)
Parameters
- otherSet
- Type: X3Platform.CollectionsSetT
Set to compare to
Return Value
Type:
BooleanTrue if this set is equal to
otherSet, false otherwise.
Exceptions
RemarksIsEqualTo is computed in time O(N), where N is the number of items in
this set.
See Also