tags:

views:

32

answers:

1

I have string which is representing time in HH:MM:SS.sss format ,Now i have to convert this sting into HH:MM:SS.ssssss format.Please let me know how to do this?

+3  A: 

Can you not just append "000" on the end?

So "13:23:12.345" => "13:23:12.345000"

Jon Skeet