Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetTimeZoneName()

static bool System.DateTimeParse.GetTimeZoneName ( ref __DTString str)
inlinestaticprivate

Definition at line 698 of file DateTimeParse.cs.

699 {
700 if (MatchWord(ref str, "GMT"))
701 {
702 return true;
703 }
704 if (MatchWord(ref str, "Z"))
705 {
706 return true;
707 }
708 return false;
709 }
static bool MatchWord(ref __DTString str, string target)

References System.DateTimeParse.MatchWord(), and System.str.

Referenced by System.DateTimeParse.ParseByFormat().