DateTimePlus 1.0.0

dotnet add package DateTimePlus --version 1.0.0
                    
NuGet\Install-Package DateTimePlus -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="DateTimePlus" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DateTimePlus" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="DateTimePlus" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DateTimePlus --version 1.0.0
                    
#r "nuget: DateTimePlus, 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.
#:package DateTimePlus@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DateTimePlus&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=DateTimePlus&version=1.0.0
                    
Install as a Cake Tool

DateTimePlus

NuGet .NET

DateTimePlus is a lightweight extensions library for working with dates and times in .NET 9. It simplifies common operations that normally require repetitive or complex code, such as working with DateOnly, TimeOnly, DateTimeOffset, and date ranges.


Main Features

1️⃣ DateOnlyExtensions

  • Useful methods for working with DateOnly.
  • Examples:
    • NextWeekday() → Gets the next business day.
    • AddBusinessDays(int days) → Adds business days skipping weekends.
    • DaysUntil(DateOnly date) → Calculates the difference in days.
    • MonthsUntil(DateOnly date) → Calculates the difference in months.

2️⃣ TimeOnlyExtensions

  • Combines TimeOnly with DateOnly to obtain a DateTime.

3️⃣ DateTimeOffsetExtensions

  • Powerful extensions for working with DateTimeOffset and time zones.
  • Main methods:
    • StartOfDay() → Gets the start of the day (00:00:00) preserving the offset.
    • EndOfDay() → Gets the end of the day (23:59:59.999) preserving the offset.
    • IsToday(DateTimeOffset? reference) → Checks if the date is today.
    • IsPast(DateTimeOffset? reference) → Checks if the date is in the past.
    • IsFuture(DateTimeOffset? reference) → Checks if the date is in the future.
    • StartOfDayInTimeZone(TimeZoneInfo timeZone) → Gets the start of the day in a specific time zone.

4️⃣ TimeZoneHelper

  • Utilities for time zone conversions.
  • Main methods:
    • ConvertToTimeZone(DateTimeOffset dateTime, TimeZoneInfo destinationTimeZone) → Converts a date to another time zone.
    • ConvertToTimeZone(DateTimeOffset dateTime, string destinationTimeZoneId) → Converts using a time zone ID string.

5️⃣ DateRange

  • Allows working with ranges of dates easily.
  • Main methods:
    • Days() → Returns all days in the range.
    • BusinessDays() → Returns only business days.
    • Contains(DateOnly date) → Checks if a date is within the range.

Installation

dotnet add package DateTimePlus --version 1.0.0

Usage Examples

DateOnlyExtensions

var today = DateOnly.FromDateTime(DateTime.Now);
var nextBusinessDay = today.NextWeekday();
var inTwoBusinessDays = today.AddBusinessDays(2);

TimeOnlyExtensions

var date = new DateOnly(2025, 1, 21);
var time = new TimeOnly(14, 30);
var dateTime = time.ToDateTime(date);

DateTimeOffsetExtensions

var now = DateTimeOffset.Now;

// Get start and end of day
var startOfDay = now.StartOfDay();  // Today at 00:00:00
var endOfDay = now.EndOfDay();      // Today at 23:59:59.999

// Check temporal relationships
if (now.IsToday()) { /* ... */ }
if (someDate.IsPast()) { /* ... */ }
if (futureDate.IsFuture()) { /* ... */ }

// Work with time zones
var madridTimeZone = TimeZoneInfo.FindSystemTimeZoneById("Central European Standard Time");
var startInMadrid = now.StartOfDayInTimeZone(madridTimeZone);

TimeZoneHelper

var utcNow = DateTimeOffset.UtcNow;

// Convert to specific time zone
var madridTime = TimeZoneHelper.ConvertToTimeZone(utcNow, "Central European Standard Time");
var newYorkTime = TimeZoneHelper.ConvertToTimeZone(utcNow, "Eastern Standard Time");

// Using TimeZoneInfo directly
var timeZone = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time");
var pacificTime = TimeZoneHelper.ConvertToTimeZone(utcNow, timeZone);

DateRange

var start = new DateOnly(2025, 1, 1);
var end = new DateOnly(2025, 1, 31);
var range = new DateRange(start, end);

// Get all days
foreach (var day in range.Days())
{
    Console.WriteLine(day);
}

// Get only business days
foreach (var businessDay in range.BusinessDays())
{
    Console.WriteLine(businessDay);
}

// Check if date is in range
bool isInRange = range.Contains(new DateOnly(2025, 1, 15));

Contributing

Contributions are welcome! Feel free to open issues or pull requests on GitHub.


License

This project is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • 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.0.0 107 1/21/2026
0.4.1 96 1/14/2026
0.4.0 84 1/14/2026
0.3.0 91 1/14/2026
0.2.0 97 1/14/2026
0.1.0 90 1/14/2026