System::Collections::Generic::operator<< メソッド

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

UTF-8 エンコーディングを使用してストリームにデータを挿入します。

template<typename TKey,typename TValue> std::ostream & System::Collections::Generic::operator<<(std::ostream &stream, const KeyValuePair<TKey, TValue> &pair)
パラメーター説明
TKeyキーの種類です。
TValue値型です。
パラメーター説明
ストリームstd::ostream&データを挿入する出力ストリームです。
pairconst KeyValuePair<TKey, TValue>&Data を挿入します。

ReturnValue

stream.

参照

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

ストリームにデータを挿入します。

template<typename TKey,typename TValue> std::wostream & System::Collections::Generic::operator<<(std::wostream &stream, const KeyValuePair<TKey, TValue> &pair)
パラメーター説明
TKeyキーの種類です。
TValue値型です。
パラメーター説明
ストリームstd::wostream&データを挿入する出力ストリームです。
pairconst KeyValuePair<TKey, TValue>&Data を挿入します。

ReturnValue

stream.

参照