System::Collections::Generic::operator<< método

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

Inserta datos en el flujo usando codificación UTF-8.

template<typename TKey,typename TValue> std::ostream & System::Collections::Generic::operator<<(std::ostream &stream, const KeyValuePair<TKey, TValue> &pair)
ParámetroDescripción
TKeyTipo de clave.
TValueTipo de valor.
ParámetroTipoDescripción
flujostd::ostream&Flujo de salida donde insertar datos.
pairconst KeyValuePair<TKey, TValue>&Data para insertar.

ReturnValue

stream.

Ver también

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

Inserta datos en el flujo.

template<typename TKey,typename TValue> std::wostream & System::Collections::Generic::operator<<(std::wostream &stream, const KeyValuePair<TKey, TValue> &pair)
ParámetroDescripción
TKeyTipo de clave.
TValueTipo de valor.
ParámetroTipoDescripción
flujostd::wostream&Flujo de salida donde insertar datos.
pairconst KeyValuePair<TKey, TValue>&Data para insertar.

ReturnValue

stream.

Ver también