CollectionMessagePackSerializerBaseTCollection, TItemGetCount Method |
When overridden in derived class, returns count of the collection.
Namespace: MsgPack.Serialization.CollectionSerializersAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax protected abstract int GetCount(
TCollection collection
)
Protected MustOverride Function GetCount (
collection As TCollection
) As Integer
protected:
virtual int GetCount(
TCollection collection
) abstract
abstract GetCount :
collection : 'TCollection -> int
Parameters
- collection
- Type: TCollection
A collection. This value will not be null.
Return Value
Type:
Int32The count of the
collection.
See Also