We needed to compare a C# date-time in string format to a DB2 TimeStamp format.
Use the DateFormat string below. The six f’s represent the milliseconds.
<pre>
txtResultUpdateTimeStamp.Text =
propResult.PropertyFields.updateTimeStamp.ToString(
"yyyy-MM-dd-hh:mm:ss.ffffff");
</pre>