C# .NET - I have "GMT+5.50" value of time difference, how to show difference?

Asked By Jyoti Singh on 01-Jul-14 08:07 AM
 PlayerStatusResponse response = new PlayerStatusResponse();
 string key = "X-Akamai-Edgescape";
           
            string value = "georegion=104,country_code=IN,region_code=DL, city=NEWDELHI, lat=28.60, long=77.20, timezone=GMT+5.50,continent=AS, throughput=vhigh,bw=5000, asnum=4755, location_id=0";
            string[] HeaderAllValues = value.Split(',');
         
            foreach (string x in HeaderAllValues)
            {
                if (x.Contains("timezone"))
                {
                  response.TimeZone= x.Split('=')[1];
                  break;
                }

            }

by exceuting this code i m getting "GMT+5.50" value, this value shows me the users time zone difference from the server, now i wanna show the datetime of the user system, by using the time difference.