Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
InternalGlobalizationHelper.cs
Go to the documentation of this file.
2
3internal static class InternalGlobalizationHelper
4{
5 internal static long TimeToTicks(int hour, int minute, int second)
6 {
7 long num = (long)hour * 3600L + (long)minute * 60L + second;
8 if (num > 922337203685L || num < -922337203685L)
9 {
11 }
12 return num * 10000000;
13 }
14}
static long TimeToTicks(int hour, int minute, int second)
static string Overflow_TimeSpanTooLong
Definition SR.cs:1784
Definition SR.cs:7