TimeSpan - UtcFromNow

A TimeSpan extension method that add the specified TimeSpan to the current UTC (Coordinated Universal Time)

Try it

public static void Main()
{
	var timeSpan = new TimeSpan(1, 0, 0, 0);

    // C# Extension Method: TimeSpan - UtcFromNow
	DateTime value = timeSpan.UtcFromNow(); // return tomorrow.

    Console.WriteLine(value.ToFullDateTimeString());
}

View Source
using System;

public static partial class Extensions
{
    /// <summary>
    ///     A TimeSpan extension method that add the specified TimeSpan to the current UTC (Coordinated Universal Time)
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <returns>The current UTC (Coordinated Universal Time) with the specified TimeSpan added to it.</returns>
    public static DateTime UtcFromNow(this TimeSpan @this)
    {
        return DateTime.UtcNow.Add(@this);
    }
}