Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CurrentTimeZone
TimeZone
System.TimeZone.CurrentTimeZone
static
get
Definition at line
26
of file
TimeZone.cs
.
27
{
28
get
29
{
30
TimeZone timeZone =
currentTimeZone
;
31
if
(timeZone ==
null
)
32
{
33
lock (
InternalSyncObject
)
34
{
35
if
(
currentTimeZone
==
null
)
36
{
37
currentTimeZone
=
new
CurrentSystemTimeZone();
38
}
39
timeZone =
currentTimeZone
;
40
}
41
}
42
return
timeZone;
43
}
44
}
System.TimeZone.currentTimeZone
static volatile TimeZone currentTimeZone
Definition
TimeZone.cs:9
System.TimeZone.InternalSyncObject
static object InternalSyncObject
Definition
TimeZone.cs:14
Referenced by
System.TimeZone.ToLocalTime()
.
System
TimeZone
Generated by
1.10.0