Skip to content

TimeInUtc Property

Summary

Returns the current server time in UTC. The shortcut to the Server.TimeInUtc property.

Signature

1
public DateTime TimeInUtc {get;}

Return Value

DateTime

Declaring Type

cAlgo.API.Internals.Algo

Examples

1
2
3
4
 protected override void OnTick()
 {
     Print("The Server Time in UTC is: {0}", TimeInUtc);
 }

Last update: March 30, 2023