utc := ('21 May 2012, 15:04:43').TimeStamp;
write utc;
write utc.utcToLocalTime;
Assume the value I got for my utc attribute was from app.getUTCTime back in May. The above codes gave me
21 May 2012, 15:04:43
22 May 2012, 02:04:43
I live in Melbourne daylight saving has been started and the current time zone offset is UTC +11 hours. the above output is right if the month is October.
My question is does the method utcToLocalTime includes/excludes daylight saving automatically? And does it include/exclude daylight saving based on when/where it is called?
Thanks for any help.
Cheers