C# 클래스 FluentDateTimeOffset.TimeSpanOffsetExtensions

Static class containing Fluent TimeSpan extension methods.
파일 보기 프로젝트 열기: FluentDateTime/FluentDateTime

공개 메소드들

메소드 설명
Ago ( this from ) : DateTimeOffset

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

Ago ( this from, DateTimeOffset originalValue ) : DateTimeOffset

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

Before ( this from, DateTimeOffset originalValue ) : DateTimeOffset

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

From ( this from, DateTimeOffset originalValue ) : DateTimeOffset

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

FromNow ( this from ) : DateTimeOffset

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

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

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

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

ToDisplayString ( this timeSpan ) : string

Convert a TimeSpan to a human readable string.

메소드 상세

Ago() 공개 정적인 메소드

Subtracts given TimeSpan from current date (DateTime.Now) and returns resulting DateTime in the past.
public static Ago ( this from ) : DateTimeOffset
from this
리턴 DateTimeOffset

Ago() 공개 정적인 메소드

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.
public static Ago ( this from, DateTimeOffset originalValue ) : DateTimeOffset
from this
originalValue DateTimeOffset
리턴 DateTimeOffset

Before() 공개 정적인 메소드

Subtracts given TimeSpan from originalValue DateTime and returns resulting DateTime in the past.
public static Before ( this from, DateTimeOffset originalValue ) : DateTimeOffset
from this
originalValue DateTimeOffset
리턴 DateTimeOffset

From() 공개 정적인 메소드

Adds given TimeSpan to supplied originalValue DateTime and returns resulting DateTime in the future.
public static From ( this from, DateTimeOffset originalValue ) : DateTimeOffset
from this
originalValue DateTimeOffset
리턴 DateTimeOffset

FromNow() 공개 정적인 메소드

Adds given TimeSpan to current DateTime.Now and returns resulting DateTime in the future.
public static FromNow ( this from ) : DateTimeOffset
from this
리턴 DateTimeOffset

Round() 공개 정적인 메소드

public static Round ( this timeSpan, RoundTo rt ) : System.TimeSpan
timeSpan this
rt RoundTo
리턴 System.TimeSpan

Since() 공개 정적인 메소드

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

ToDisplayString() 공개 정적인 메소드

Convert a TimeSpan to a human readable string.
public static ToDisplayString ( this timeSpan ) : string
timeSpan this The to convert
리턴 string