DevLogDateToJavaTimestamp Method |
Convert a date/time to milliseconds since 1970 (in UTC) which is what java
uses and what we've always logged to the devlog.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string DateToJavaTimestamp(
DateTime dt
)
Public Shared Function DateToJavaTimestamp (
dt As DateTime
) As String
Parameters
- dt
- Type: SystemDateTime
The date/time to convert.
Return Value
Type:
StringA string representing the specified date/time in milliseconds since 1970, UTC.
See Also