You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nodatime provides a helpful example on its home page:
// Instant represents time from epochInstantnow=SystemClock.Instance.GetCurrentInstant();// Convert an instant to a ZonedDateTimeZonedDateTimenowInIsoUtc=now.InUtc();// Create a durationDurationduration=Duration.FromMinutes(3);// Add it to our ZonedDateTimeZonedDateTimethenInIsoUtc=nowInIsoUtc+duration;// Time zone support (multiple providers)varlondon=DateTimeZoneProviders.Tzdb["Europe/London"];// Time zone conversionsvarlocalDate=newLocalDateTime(2012,3,27,0,45,00);varbefore=london.AtStrictly(localDate);
It would be nice to have a Pyoda version of this and include it in the README.md "quick start", which currently says "coming soon".
Nodatime provides a helpful example on its home page:
It would be nice to have a Pyoda version of this and include it in the README.md "quick start", which currently says "coming soon".
However:
The text was updated successfully, but these errors were encountered: