Is there an easy way to show a formatted string representing a TimeSpan field in a DataGridViewTextBoxColumn of a DataGridView?
I have an array of custom objects (returned by a web service) that I'm binding to my datagrid. These object have a TimeSpan property. When I bind this property to the column of the datagrid I obtain the object name (something like MyApplication.MyClass.TimeSpan) and not the timespan string.
How can I solve?
NOTE:
At last I discovered my problem is that I get my array of objects from a web service.
It seems that TimeSpan type cannot be xml-serialized, so the system class is re-classed into a custom object:


TimeSpanproperty. When I bind this property to the column of the datagrid I obtain the object name and not the timespan string. – davioooh Feb 17 '12 at 17:33TimeSpanclass nested inMyClass? The string"MyApplication.MyClass.TimeSpan"looks like the return value ofobject.ToString()for an instance of a class that hasn't overridden the method. In that case, you just get the type name. – phoog Feb 17 '12 at 18:19