I am writing a utility in which time is being displayed. The problem is, the time being displayed is for the timezone +1. I want to add functinallity so that the user can not only display this time, but also choose which timezone they would like it to be displayed in.
Say for example, the user is shown the time: 18:00:00 as the time from +1 zone.
Now if the user wanted it to be shown in -5 GMT, they could simply choose it from a dropdown box and show the time. The problem I'm facing is in the actual conversion. I dnt want to go and write a whole DateTime class of my own, but simply use the current class in c# and convert the time.
Any suggestions??