私はC#の初心者です。私はこのような辞書を持っています:
{
{"tom", "student"},
{"rob", "teacher"},
{"david", "lawyer"}
}
この行を形成したい:
tom = student, rob = teacher, david = lawyer
Aggregate 拡張メソッドを使用したいのですdictionary<>
が、次のようにすると:
Console.WriteLine(dic.Aggregate((a,b) => (a.Key + " = " + a.Value + ", " + b.Key + " = " + b.Value)));
このエラーが発生します:
ラムダ式をデリゲート型に変換できません。
だから私はそれを間違っているようです。では、この方法の使い方を誰か教えてもらえますか?