MessagePackObjectDictionaryKeySetIsProperSupersetOf Method |
Determines whether this set is proper superset of the specified collection.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public bool IsProperSupersetOf(
IEnumerable<MessagePackObject> other
)
Public Function IsProperSupersetOf (
other As IEnumerable(Of MessagePackObject)
) As Boolean
public:
virtual bool IsProperSupersetOf(
IEnumerable<MessagePackObject>^ other
) sealed
abstract IsProperSupersetOf :
other : IEnumerable<MessagePackObject> -> bool
override IsProperSupersetOf :
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 proper superset of the specified collection; otherwise,
false.
Implements
ISetTIsProperSupersetOf(IEnumerableT)Exceptions See Also