Since you are using .net 2.0:
Dictionary dString = new Dictionary();
foreach (KeyValuePair item in dObject)
{
dString.Add(item.Key, item.Value.ToString());
//here item.Value.ToString() is an example
//you should convert your item to string according to the requirement
}