I have a string which contains the date with time and timezone in it.
I want to convert it to datetime
with the same timezone given in string.
I have already tried converting string to datetime
but it converts datetime
to my system timezone which is different from the one given in the string.
Convert.ToDateTime("2019-01-20T08:30:00+02:00")
Converts it to my local timezone which is +05:30.