SG.UnixTime 1.5.0

dotnet add package SG.UnixTime --version 1.5.0
NuGet\Install-Package SG.UnixTime -Version 1.5.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="SG.UnixTime" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SG.UnixTime --version 1.5.0
#r "nuget: SG.UnixTime, 1.5.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 SG.UnixTime as a Cake Addin
#addin nuget:?package=SG.UnixTime&version=1.5.0

// Install SG.UnixTime as a Cake Tool
#tool nuget:?package=SG.UnixTime&version=1.5.0

SG.UnixTime

Unix Time Converter

Convert Date Time to Unix Timestamp and Vice Versa (seconds or milliseconds format)

**This package will 😗*

  • Convert Date Time to Unix Timestamp and Vice Versa.
  • Convert from or to seconds/milliseconds format with inferred type.
  • Add seconds from current Unix Timestamp
  • Add milliseconds from current Unix Timestamp
Import Reference

using SG.UnixTime;

Convert DateTime to Unix Timestamp

example 1 :

DateTime currentDateTime = DateTime.Now;
Int32 epoch = 0;

epoch = UnixTime.ToEpoch(currentDateTime);
Console.WriteLine(epoch);

example 2 (to seconds with inferred type) :

DateTime currentDateTime = DateTime.Now;
Int32 epoch = 0;

epoch = UnixTime.ToEpoch<Int32>(currentDateTime, ConvertFormat.ToSeconds);
Console.WriteLine(epoch);

example 3 (to milliseconds with inferred type) :

DateTime currentDateTime = DateTime.Now;
long epoch = 0;

epoch = UnixTime.ToEpoch<long>(currentDateTime, ConvertFormat.ToMilliseconds);
Console.WriteLine(epoch);

Convert Unix Timestamp to DateTime

example 1 :

DateTime defaultTime = DateTime.Now;

defaultTime = UnixTime.ToDateTime(epoch);
Console.WriteLine(defaultTime);

example 2 :

 DateTime defaultTime = DateTime.Now;

defaultTime = UnixTime.ToDateTime<Int32>(epoch, ConvertFormat.ToSeconds);
Console.WriteLine(defaultTime);

example 3 :

DateTime defaultTime = DateTime.Now;

defaultTime = UnixTime.ToDateTime <long>(epoch, ConvertFormat.ToMilliseconds);
Console.WriteLine(defaultTime);

Add seconds from current Unix Timestamp

Int32 epoch = 0;
epoch = UnixTime.ToEpoch<Int32>(currentDateTime, ConvertFormat.ToSeconds);

int seconds = 10;
Int32 addSeconds = UnixTime.AddSeconds(epoch, seconds);

Add milliseconds from current Unix Timestamp

Int32 epoch = 0;
epoch = UnixTime.ToEpoch<Int32>(currentDateTime, ConvertFormat.ToSeconds);

int milliseconds = 2000;
Int32 addmilliseconds = UnixTime.AddMilliseconds(epoch, milliseconds);
Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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.5.0 1,004 2/4/2019
1.4.0 591 2/3/2019
1.3.0 574 2/1/2019
1.2.0 581 2/1/2019
1.1.0 583 2/1/2019
1.0.0 599 2/1/2019

Add function to convert unix timestamp to milliseconds format, read documentation for further explanation