Dictionary を印刷する最良の方法は何ですか。Currency クラスを作成しました。以下のとおりです。
class Currency{
public string currency_code { get; set; }
public float unit { get; set; }
public string currency_name { get; set; }
public string currency_isim { get; set; }
public float forex_buying { get; set; }
public float forex_selling { get; set; }
public float banknote_buying { get; set; }
public float banknote_selling { get; set; }
}
オブジェクトを自動的に印刷する方法はありますか?
できればそのまま印刷したい
Dictionary<string, Currency> dict = new Dictionary<string, Currency>();
.....
.....
add data to dict properly
.....
.....
dict.print();
オブジェクトのすべてのデータを含む適切な文字列を返す必要があります。どうやってやるの?