ExtTypeCodeMappingGetEnumerator Method |
Returns an enumerator that iterates through the collection.
Namespace: MsgPack.SerializationAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public IEnumerator<KeyValuePair<string, byte>> GetEnumerator()
Public Function GetEnumerator As IEnumerator(Of KeyValuePair(Of String, Byte))
public:
virtual IEnumerator<KeyValuePair<String^, unsigned char>>^ GetEnumerator() sealed
abstract GetEnumerator : unit -> IEnumerator<KeyValuePair<string, byte>>
override GetEnumerator : unit -> IEnumerator<KeyValuePair<string, byte>>
Return Value
Type:
IEnumeratorKeyValuePairString,
Byte
A
IEnumeratorT that can be used to iterate through the collection.
Implements
IEnumerableTGetEnumeratorRemarks
This method causes internal collection copying, so this makes O(n) time.
See Also