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.