Method | Description | |
---|---|---|
GetDateTimeFromUnixTime ( long unixTime ) : System.DateTime |
Gets the date time from unix time.
|
|
GetEpochTime ( ) : long |
Gets the time since the Unix epoch.
|
|
GetEpochTimeFromDT ( ) : long |
Gets the time between the Unix epich and a specific
|
|
GetEpochTimeFromDT ( System.DateTime time ) : long |
Gets the time between the Unix epich and a specific
|
|
GetNetVersion ( ) : string | ||
GetOSName ( ) : string |
Returns the name of the operating system running on this computer.
|
|
GetPlatform ( ) : string | ||
GetSystemTime ( ) : long |
Gets the system uptime.
|
|
GetSystemTimeLong ( ) : long |
Gets the system uptime. Even though this returns a long, the original value is a 32-bit integer, so it will wrap back to 0 after approximately 49 and half days of system uptime. |
|
GetUTCTimeMillis ( long millis ) : System.DateTime |
Gets the UTC time from millis.
|
|
GetUTCTimeSeconds ( long seconds ) : System.DateTime |
Gets the UTC time from seconds.
|
|
GetUnixTimeStart ( ) : System.DateTime | ||
GetVersion ( ) : string | ||
IsDay ( int Year, int Month, int Day ) : bool | ||
IsPrime ( this x ) : bool | ||
Regex ( this text, string regex ) : string | ||
Regex ( this text, string regex, string groups ) : string | ||
ToMilliSecondsInt ( int ticks ) : int |
Converts ticks to miliseconds.
|
|
ToMilliSecondsInt ( this time ) : int |
Converts DateTime to miliseconds.
|
|
print ( object o ) : void | ||
print ( string text ) : void | ||
printf ( object o ) : void | ||
printf ( string text ) : void |
Method | Description | |
---|---|---|
GetCpuId ( ) : string |
public static GetDateTimeFromUnixTime ( long unixTime ) : System.DateTime | ||
unixTime | long | The unix time. |
return | System.DateTime |
public static GetEpochTimeFromDT ( System.DateTime time ) : long | ||
time | System.DateTime | the end time |
return | long |
public static GetUTCTimeMillis ( long millis ) : System.DateTime | ||
millis | long | The millis. |
return | System.DateTime |
public static GetUTCTimeSeconds ( long seconds ) : System.DateTime | ||
seconds | long | The seconds. |
return | System.DateTime |
public static GetUnixTimeStart ( ) : System.DateTime | ||
return | System.DateTime |
public static IsDay ( int Year, int Month, int Day ) : bool | ||
Year | int | |
Month | int | |
Day | int | |
return | bool |
public static Regex ( this text, string regex ) : string | ||
text | this | |
regex | string | |
return | string |
public static Regex ( this text, string regex, string groups ) : string | ||
text | this | |
regex | string | |
groups | string | |
return | string |
public static ToMilliSecondsInt ( int ticks ) : int | ||
ticks | int | |
return | int |
public static ToMilliSecondsInt ( this time ) : int | ||
time | this | |
return | int |