打印字典的最佳方法是什么,我创建了 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();
我希望它返回一个正确的字符串,其中包含对象的所有数据。我怎样才能做到这一点?