how to simulate a different time zone?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

¿is it possible by code to simulate that i am in a different time zone just
for to execute a few lines of code?
in my case i am in the time zone "Santiago/Chile" which is GMT-04, but for
to execute a few lines of code that demand time zone "GMT 0"
i need to change or simulate de time zone "GMT 0"

how can i do that?

thanks for any advice
 
Ricardo said:
¿is it possible by code to simulate that i am in a different time zone just
for to execute a few lines of code?
in my case i am in the time zone "Santiago/Chile" which is GMT-04, but for
to execute a few lines of code that demand time zone "GMT 0"
i need to change or simulate de time zone "GMT 0"

how can i do that?

thanks for any advice

As from what I can see, GMT 0 is basically the same as UTC.

Use the ToUniversalTime method in the DateTime structure.
 
Back
Top