System::Collections::Generic::operator<< method

System::Collections::Generic::operator«(std::ostream&, const KeyValuePair<TKey, TValue>&) method

Insert data into the stream using UTF-8 encoding.

template<typename TKey,typename TValue> std::ostream & System::Collections::Generic::operator<<(std::ostream &stream, const KeyValuePair<TKey, TValue> &pair)
ParameterDescription
TKeyKey type.
TValueValue type.
ParameterTypeDescription
streamstd::ostream&Output stream to insert data to.
pairconst KeyValuePair<TKey, TValue>&Data to insert.

ReturnValue

stream.

See Also

System::Collections::Generic::operator«(std::wostream&, const KeyValuePair<TKey, TValue>&) method

Insert data into the stream.

template<typename TKey,typename TValue> std::wostream & System::Collections::Generic::operator<<(std::wostream &stream, const KeyValuePair<TKey, TValue> &pair)
ParameterDescription
TKeyKey type.
TValueValue type.
ParameterTypeDescription
streamstd::wostream&Output stream to insert data to.
pairconst KeyValuePair<TKey, TValue>&Data to insert.

ReturnValue

stream.

See Also