Accesing Realtime on Mobile Devices.

Hey There,

So basically I’m just experimenting on changing/adding an image/object at certain intervals using real time form a mobile devices.

So how would I go about getting the real time of a mobile device then having at certain fixed intervals say over the course of a full day/night (24 hours) change a object or add onto said object?

Any help I would be very appreciative of.

Regards,

Trent

You can get the real time in local time using:

   var currentTime = System.DateTime.Now;

Or if you need time coordinated you can use zulu time with:

   var currentZuluTime = System.DateTime.UtcNow;