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