Twileloop.ExpressTimezone 1.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
Suggested Alternatives

Twileloop.Timezone

Additional Details

This package has been migrated to: Twileloop.Timezone
The old one is no more maintained by the Authors. Visit https://packages.twileloop.com/ for new packages

dotnet add package Twileloop.ExpressTimezone --version 1.0.0
NuGet\Install-Package Twileloop.ExpressTimezone -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Twileloop.ExpressTimezone" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Twileloop.ExpressTimezone --version 1.0.0
#r "nuget: Twileloop.ExpressTimezone, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Twileloop.ExpressTimezone as a Cake Addin
#addin nuget:?package=Twileloop.ExpressTimezone&version=1.0.0

// Install Twileloop.ExpressTimezone as a Cake Tool
#tool nuget:?package=Twileloop.ExpressTimezone&version=1.0.0

Basic DateTime scnerios

  • Assume server timezone is "Asia/Calcutta" for these examples

Getting TimeZone from a Client's Browser (JavaScript)

If you need to retrive timezone from a client's browser, You can use this

var timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;

UTC ⇒ System Time Zone

Converts UTC time to System default timezone

var datetime = DateTime.UtcNow;
datetime.UTCToSystemTime()

UTC ⇒ Regional Time

Convert UTC time to a regional time

var datetime = DateTime.UtcNow;
datetime.UTCToRegionalTime("Asia/Calcutta")

Regional Time ⇒ UTC

This example system timezone to UTC

var datetime = DateTime.Now;
datetime.RegionalTimeToUTC("Asia/Calcutta")

Regional Time ⇒ Regional Time

Converts time from one timezone to another

var datetime = DateTime.Now;
datetime.MigrateTimezone("Asia/Calcutta", "America/Chihuahua")

List of all timezones

Gets a list of all timezones available on NodaTime

var timezones = ExpressTimeZone.AllTimezones();
foreach(var timezone in timezones)
{
    Console.WriteLine(timezone);
}

List of all timezones

Get a list of timezones falls under specific UTC offset

//+5:30 is 330 mins
var tzs = ExpressTimeZone.OffsetToTimezones(330);
foreach (var tz in tzs))
{
    Console.WriteLine(tz.DisplayName);
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 23,572 10/9/2020

Basic usecases covered