Hoge["key"]
のようなDictionaryのものを
Hoge["key"].ToString ();
のように文字列に変換すると、Nullの場合
NullReferenceException: Object reference not set to an instance of an object
のようなエラーが出る。
URL: http://stackoverflow.com/questions/550374/checking-for-null-before-tostring
public static string ToSafeString(this object obj) { return (obj ?? string.Empty).ToString(); }
のようにメソッド拡張を作ればいいかも?