C# Class FluentDateTime.TimeSpanExtensions

Static class containing Fluent DateTime extension methods.
Afficher le fichier Open project: FluentDateTime/FluentDateTime

Méthodes publiques

Méthode Description
Ago ( this from ) : System.DateTime

Subtracts given TimeSpan from current date (DateTime.Now) and returns resulting DateTime in the past.

Ago ( this from, System.DateTime originalValue ) : System.DateTime

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.

Before ( this from, System.DateTime originalValue ) : System.DateTime

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.

From ( this from, System.DateTime originalValue ) : System.DateTime

Adds given TimeSpan to supplied originalValue DateTime and returns resulting DateTime in the future.

FromNow ( this from ) : System.DateTime

Adds given TimeSpan to current DateTime.Now and returns resulting DateTime in the future.

Round ( this timeSpan, RoundTo rt ) : System.TimeSpan
Since ( this from, System.DateTime originalValue ) : System.DateTime

Adds given TimeSpan to supplied originalValue DateTime and returns resulting DateTime in the future.

Synonym of From(System.TimeSpan,System.DateTime) method.

ToDisplayString ( this timeSpan ) : string

Convert a TimeSpan to a human readable string.

Method Details

Ago() public static méthode

Subtracts given TimeSpan from current date (DateTime.Now) and returns resulting DateTime in the past.
public static Ago ( this from ) : System.DateTime
from this
Résultat System.DateTime

Ago() public static méthode

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.
public static Ago ( this from, System.DateTime originalValue ) : System.DateTime
from this
originalValue System.DateTime
Résultat System.DateTime

Before() public static méthode

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.
public static Before ( this from, System.DateTime originalValue ) : System.DateTime
from this
originalValue System.DateTime
Résultat System.DateTime

From() public static méthode

Adds given TimeSpan to supplied originalValue DateTime and returns resulting DateTime in the future.
public static From ( this from, System.DateTime originalValue ) : System.DateTime
from this
originalValue System.DateTime
Résultat System.DateTime

FromNow() public static méthode

Adds given TimeSpan to current DateTime.Now and returns resulting DateTime in the future.
public static FromNow ( this from ) : System.DateTime
from this
Résultat System.DateTime

Round() public static méthode

public static Round ( this timeSpan, RoundTo rt ) : System.TimeSpan
timeSpan this
rt RoundTo
Résultat System.TimeSpan

Since() public static méthode

Adds given TimeSpan to supplied originalValue DateTime and returns resulting DateTime in the future.
Synonym of From(System.TimeSpan,System.DateTime) method.
public static Since ( this from, System.DateTime originalValue ) : System.DateTime
from this
originalValue System.DateTime
Résultat System.DateTime

ToDisplayString() public static méthode

Convert a TimeSpan to a human readable string.
public static ToDisplayString ( this timeSpan ) : string
timeSpan this The to convert
Résultat string