I have a value stored in variable of type System.TimeSpan as follows.
System.TimeSpan
System.TimeSpan storedTime = 03:00:00;
Can I re-store it
You can try this:
string timeexample= string.Format("{0:hh:mm:ss tt}", DateTime.Now);
you can remove hh or mm or ss or tt according your need where hh is hour in 12 hr formate, mm is minutes,ss is seconds,and tt is AM/PM.