I need to convert to specific time zone from UTC time using UTC time Offset.
I tried as following:
DateTime utcDateTime = DateTime.UtcNow;
TimeSpan offSet = TimeSpan.Parse(timeoffset.ToString());
DateTime newDateTime = utcDateTime.Add(offSet);
But it doesn't adds up the offset with UTC. Is there any other way?