| MessagePackObjectDictionaryKeySetSetEquals Method | 
            	Determines whether this set and the specified collection contain the same elements. 
            
 
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
 Syntax
Syntaxpublic bool SetEquals(
	IEnumerable<MessagePackObject> other
)
Public Function SetEquals ( 
	other As IEnumerable(Of MessagePackObject)
) As Boolean
public:
virtual bool SetEquals(
	IEnumerable<MessagePackObject>^ other
) sealed
abstract SetEquals : 
        other : IEnumerable<MessagePackObject> -> bool 
override SetEquals : 
        other : IEnumerable<MessagePackObject> -> bool Parameters
- other
- Type: System.Collections.GenericIEnumerableMessagePackObject
 The collection to compare to the current set.
Return Value
Type: 
Booleantrue if this set is equal to  
other; otherwise, 
false.
            
Implements
ISetTSetEquals(IEnumerableT) Exceptions
Exceptions See Also
See Also