Exemple #1
0
//JAVA TO C# CONVERTER WARNING: 'final' parameters are ignored unless the option to convert to C# 7.2 'in' parameters is selected:
//ORIGINAL LINE: static String formatTime(final long startTime, java.time.ZoneId zoneId)
        internal static string FormatTime(long startTime, ZoneId zoneId)
        {
            return(OffsetDateTime.ofInstant(Instant.ofEpochMilli(startTime), zoneId).format(ISO_OFFSET_DATE_TIME));
        }