Table of Contents

Struct Duration

Namespace
LfrlAnvil.Chrono
Assembly
LfrlAnvil.Chrono.dll

Represents a duration in time, or elapsed time, or a difference between two timestamps.

public readonly struct Duration : IEquatable<Duration>, IComparable<Duration>, IComparable
Implements
Inherited Members

Constructors

Duration(int, int, int, int, int, int)

Creates a new Duration instance.

public Duration(int hours, int minutes, int seconds = 0, int milliseconds = 0, int microseconds = 0, int ticks = 0)

Parameters

hours int

Number of hours.

minutes int

Number of minutes.

seconds int

Number of seconds.

milliseconds int

Number of milliseconds.

microseconds int

Number of microseconds.

ticks int

Number of ticks.

Duration(long)

Creates a new Duration instance.

public Duration(long ticks)

Parameters

ticks long

Number of ticks.

Duration(TimeSpan)

Creates a new Duration instance.

public Duration(TimeSpan timeSpan)

Parameters

timeSpan TimeSpan

Source TimeSpan.

Fields

MaxValue

Specifies minimum possible Duration.

public static readonly Duration MaxValue

Field Value

Duration

MinValue

Specifies maximum possible Duration.

public static readonly Duration MinValue

Field Value

Duration

Zero

Specifies the Duration of 0 length.

public static readonly Duration Zero

Field Value

Duration

Properties

FullHours

Total number of full hours.

public long FullHours { get; }

Property Value

long

FullMicroseconds

Total number of full microseconds.

public long FullMicroseconds { get; }

Property Value

long

FullMilliseconds

Total number of full milliseconds.

public long FullMilliseconds { get; }

Property Value

long

FullMinutes

Total number of full minutes.

public long FullMinutes { get; }

Property Value

long

FullSeconds

Total number of full seconds.

public long FullSeconds { get; }

Property Value

long

MicrosecondsInMillisecond

Number of microseconds in the millisecond component.

public int MicrosecondsInMillisecond { get; }

Property Value

int

MillisecondsInSecond

Number of milliseconds in the second component.

public int MillisecondsInSecond { get; }

Property Value

int

MinutesInHour

Number of minutes in the hour component.

public int MinutesInHour { get; }

Property Value

int

SecondsInMinute

Number of seconds in the minute component.

public int SecondsInMinute { get; }

Property Value

int

Ticks

Total number of ticks. One tick is equivalent to 100 nanoseconds.

public long Ticks { get; }

Property Value

long

TicksInMicrosecond

Number of ticks in the microsecond component.

public int TicksInMicrosecond { get; }

Property Value

int

TotalHours

Total number of hours.

public double TotalHours { get; }

Property Value

double

TotalMicroseconds

Total number of microseconds.

public double TotalMicroseconds { get; }

Property Value

double

TotalMilliseconds

Total number of milliseconds.

public double TotalMilliseconds { get; }

Property Value

double

TotalMinutes

Total number of minutes.

public double TotalMinutes { get; }

Property Value

double

TotalSeconds

Total number of seconds.

public double TotalSeconds { get; }

Property Value

double

Methods

Abs()

Creates a new Duration instance by calculating an absolute value from this instance.

[Pure]
public Duration Abs()

Returns

Duration

New Duration instance.

Add(Duration)

Creates a new Duration instance by adding other to this instance.

[Pure]
public Duration Add(Duration other)

Parameters

other Duration

Other instance to add.

Returns

Duration

New Duration instance.

AddHours(double)

Creates a new Duration instance by adding the specified number of hours.

[Pure]
public Duration AddHours(double hours)

Parameters

hours double

Hours to add.

Returns

Duration

New Duration instance.

AddHours(long)

Creates a new Duration instance by adding the specified number of hours.

[Pure]
public Duration AddHours(long hours)

Parameters

hours long

Hours to add.

Returns

Duration

New Duration instance.

AddMicroseconds(double)

Creates a new Duration instance by adding the specified number of microseconds.

[Pure]
public Duration AddMicroseconds(double microseconds)

Parameters

microseconds double

Microseconds to add.

Returns

Duration

New Duration instance.

AddMicroseconds(long)

Creates a new Duration instance by adding the specified number of microseconds.

[Pure]
public Duration AddMicroseconds(long microseconds)

Parameters

microseconds long

Microseconds to add.

Returns

Duration

New Duration instance.

AddMilliseconds(double)

Creates a new Duration instance by adding the specified number of milliseconds.

[Pure]
public Duration AddMilliseconds(double milliseconds)

Parameters

milliseconds double

Milliseconds to add.

Returns

Duration

New Duration instance.

AddMilliseconds(long)

Creates a new Duration instance by adding the specified number of milliseconds.

[Pure]
public Duration AddMilliseconds(long milliseconds)

Parameters

milliseconds long

Milliseconds to add.

Returns

Duration

New Duration instance.

AddMinutes(double)

Creates a new Duration instance by adding the specified number of minutes.

[Pure]
public Duration AddMinutes(double minutes)

Parameters

minutes double

Minutes to add.

Returns

Duration

New Duration instance.

AddMinutes(long)

Creates a new Duration instance by adding the specified number of minutes.

[Pure]
public Duration AddMinutes(long minutes)

Parameters

minutes long

Minutes to add.

Returns

Duration

New Duration instance.

AddSeconds(double)

Creates a new Duration instance by adding the specified number of seconds.

[Pure]
public Duration AddSeconds(double seconds)

Parameters

seconds double

Seconds to add.

Returns

Duration

New Duration instance.

AddSeconds(long)

Creates a new Duration instance by adding the specified number of seconds.

[Pure]
public Duration AddSeconds(long seconds)

Parameters

seconds long

Seconds to add.

Returns

Duration

New Duration instance.

AddTicks(long)

Creates a new Duration instance by adding the specified number of ticks.

[Pure]
public Duration AddTicks(long ticks)

Parameters

ticks long

Ticks to add.

Returns

Duration

New Duration instance.

CompareTo(Duration)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

[Pure]
public int CompareTo(Duration other)

Parameters

other Duration

An object to compare with this instance.

Returns

int

A value that indicates the relative order of the objects being compared. The return value has these meanings:

Value Meaning
Less than zero This instance precedes other in the sort order.
Zero This instance occurs in the same position in the sort order as other.
Greater than zero This instance follows other in the sort order.

CompareTo(object?)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

[Pure]
public int CompareTo(object? obj)

Parameters

obj object

An object to compare with this instance.

Returns

int

A value that indicates the relative order of the objects being compared. The return value has these meanings:

Value Meaning
Less than zero This instance precedes obj in the sort order.
Zero This instance occurs in the same position in the sort order as obj.
Greater than zero This instance follows obj in the sort order.

Exceptions

ArgumentException

obj is not the same type as this instance.

Divide(double)

Creates a new Duration instance by dividing this instance by the provided divisor.

[Pure]
public Duration Divide(double divisor)

Parameters

divisor double

Value to divide by.

Returns

Duration

New Duration instance.

Exceptions

DivideByZeroException

When divisor is equal to 0.

Equals(Duration)

Indicates whether the current object is equal to another object of the same type.

[Pure]
public bool Equals(Duration other)

Parameters

other Duration

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object?)

Indicates whether this instance and a specified object are equal.

[Pure]
public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current instance.

Returns

bool

true if obj and this instance are the same type and represent the same value; otherwise, false.

FromHours(double)

Creates a new Duration instance.

[Pure]
public static Duration FromHours(double hours)

Parameters

hours double

Number of hours.

Returns

Duration

New Duration instance.

FromHours(long)

Creates a new Duration instance.

[Pure]
public static Duration FromHours(long hours)

Parameters

hours long

Number of hours.

Returns

Duration

New Duration instance.

FromMicroseconds(double)

Creates a new Duration instance.

[Pure]
public static Duration FromMicroseconds(double microseconds)

Parameters

microseconds double

Number of microseconds.

Returns

Duration

New Duration instance.

FromMicroseconds(long)

Creates a new Duration instance.

[Pure]
public static Duration FromMicroseconds(long microseconds)

Parameters

microseconds long

Number of microseconds.

Returns

Duration

New Duration instance.

FromMilliseconds(double)

Creates a new Duration instance.

[Pure]
public static Duration FromMilliseconds(double milliseconds)

Parameters

milliseconds double

Number of milliseconds.

Returns

Duration

New Duration instance.

FromMilliseconds(long)

Creates a new Duration instance.

[Pure]
public static Duration FromMilliseconds(long milliseconds)

Parameters

milliseconds long

Number of milliseconds.

Returns

Duration

New Duration instance.

FromMinutes(double)

Creates a new Duration instance.

[Pure]
public static Duration FromMinutes(double minutes)

Parameters

minutes double

Number of minutes.

Returns

Duration

New Duration instance.

FromMinutes(long)

Creates a new Duration instance.

[Pure]
public static Duration FromMinutes(long minutes)

Parameters

minutes long

Number of minutes.

Returns

Duration

New Duration instance.

FromSeconds(double)

Creates a new Duration instance.

[Pure]
public static Duration FromSeconds(double seconds)

Parameters

seconds double

Number of seconds.

Returns

Duration

New Duration instance.

FromSeconds(long)

Creates a new Duration instance.

[Pure]
public static Duration FromSeconds(long seconds)

Parameters

seconds long

Number of seconds.

Returns

Duration

New Duration instance.

FromTicks(long)

Creates a new Duration instance.

[Pure]
public static Duration FromTicks(long ticks)

Parameters

ticks long

Number of ticks.

Returns

Duration

New Duration instance.

GetHashCode()

Returns the hash code for this instance.

[Pure]
public override int GetHashCode()

Returns

int

A 32-bit signed integer that is the hash code for this instance.

Multiply(Percent)

Creates a new Duration instance by multiplying this instance by the provided percent.

[Pure]
public Duration Multiply(Percent percent)

Parameters

percent Percent

Percent to multiply by.

Returns

Duration

New Duration instance.

Multiply(double)

Creates a new Duration instance by multiplying this instance by the provided multiplier.

[Pure]
public Duration Multiply(double multiplier)

Parameters

multiplier double

Value to multiply by.

Returns

Duration

New Duration instance.

Negate()

Creates a new Duration instance by negating this instance.

[Pure]
public Duration Negate()

Returns

Duration

New Duration instance.

SetHours(long)

Creates a new Duration instance by setting the number of hours.

[Pure]
public Duration SetHours(long value)

Parameters

value long

New value.

Returns

Duration

New Duration instance.

SetMicrosecondsInMillisecond(int)

Creates a new Duration instance by setting the number of microseconds in the millisecond component.

[Pure]
public Duration SetMicrosecondsInMillisecond(int value)

Parameters

value int

New value.

Returns

Duration

New Duration instance.

Exceptions

ArgumentOutOfRangeException

When value is not in a valid range.

SetMillisecondsInSecond(int)

Creates a new Duration instance by setting the number of milliseconds in the second component.

[Pure]
public Duration SetMillisecondsInSecond(int value)

Parameters

value int

New value.

Returns

Duration

New Duration instance.

Exceptions

ArgumentOutOfRangeException

When value is not in a valid range.

SetMinutesInHour(int)

Creates a new Duration instance by setting the number of minutes in the hour component.

[Pure]
public Duration SetMinutesInHour(int value)

Parameters

value int

New value.

Returns

Duration

New Duration instance.

Exceptions

ArgumentOutOfRangeException

When value is not in a valid range.

SetSecondsInMinute(int)

Creates a new Duration instance by setting the number of seconds in the minute component.

[Pure]
public Duration SetSecondsInMinute(int value)

Parameters

value int

New value.

Returns

Duration

New Duration instance.

Exceptions

ArgumentOutOfRangeException

When value is not in a valid range.

SetTicksInMicrosecond(int)

Creates a new Duration instance by setting the number of ticks in the microsecond component.

[Pure]
public Duration SetTicksInMicrosecond(int value)

Parameters

value int

New value.

Returns

Duration

New Duration instance.

Exceptions

ArgumentOutOfRangeException

When value is not in a valid range.

Subtract(Duration)

Creates a new Duration instance by subtracting other from this instance.

[Pure]
public Duration Subtract(Duration other)

Parameters

other Duration

Other instance to subtract.

Returns

Duration

New Duration instance.

SubtractHours(double)

Creates a new Duration instance by subtracting the specified number of hours.

[Pure]
public Duration SubtractHours(double hours)

Parameters

hours double

Hours to subtract.

Returns

Duration

New Duration instance.

SubtractHours(long)

Creates a new Duration instance by subtracting the specified number of hours.

[Pure]
public Duration SubtractHours(long hours)

Parameters

hours long

Hours to subtract.

Returns

Duration

New Duration instance.

SubtractMicroseconds(double)

Creates a new Duration instance by subtracting the specified number of microseconds.

[Pure]
public Duration SubtractMicroseconds(double microseconds)

Parameters

microseconds double

Microseconds to subtract.

Returns

Duration

New Duration instance.

SubtractMicroseconds(long)

Creates a new Duration instance by subtracting the specified number of microseconds.

[Pure]
public Duration SubtractMicroseconds(long microseconds)

Parameters

microseconds long

Microseconds to subtract.

Returns

Duration

New Duration instance.

SubtractMilliseconds(double)

Creates a new Duration instance by subtracting the specified number of milliseconds.

[Pure]
public Duration SubtractMilliseconds(double milliseconds)

Parameters

milliseconds double

Milliseconds to subtract.

Returns

Duration

New Duration instance.

SubtractMilliseconds(long)

Creates a new Duration instance by subtracting the specified number of milliseconds.

[Pure]
public Duration SubtractMilliseconds(long milliseconds)

Parameters

milliseconds long

Milliseconds to subtract.

Returns

Duration

New Duration instance.

SubtractMinutes(double)

Creates a new Duration instance by subtracting the specified number of minutes.

[Pure]
public Duration SubtractMinutes(double minutes)

Parameters

minutes double

Minutes to subtract.

Returns

Duration

New Duration instance.

SubtractMinutes(long)

Creates a new Duration instance by subtracting the specified number of minutes.

[Pure]
public Duration SubtractMinutes(long minutes)

Parameters

minutes long

Minutes to subtract.

Returns

Duration

New Duration instance.

SubtractSeconds(double)

Creates a new Duration instance by subtracting the specified number of seconds.

[Pure]
public Duration SubtractSeconds(double seconds)

Parameters

seconds double

Seconds to subtract.

Returns

Duration

New Duration instance.

SubtractSeconds(long)

Creates a new Duration instance by subtracting the specified number of seconds.

[Pure]
public Duration SubtractSeconds(long seconds)

Parameters

seconds long

Seconds to subtract.

Returns

Duration

New Duration instance.

SubtractTicks(long)

Creates a new Duration instance by subtracting the specified number of ticks.

[Pure]
public Duration SubtractTicks(long ticks)

Parameters

ticks long

Ticks to subtract.

Returns

Duration

New Duration instance.

ToString()

Returns a string representation of this Duration instance.

[Pure]
public override string ToString()

Returns

string

String representation.

TrimToHour()

Creates a new Duration instance by truncating this instance to hours.

[Pure]
public Duration TrimToHour()

Returns

Duration

New Duration instance.

TrimToMicrosecond()

Creates a new Duration instance by truncating this instance to microseconds.

[Pure]
public Duration TrimToMicrosecond()

Returns

Duration

New Duration instance.

TrimToMillisecond()

Creates a new Duration instance by truncating this instance to milliseconds.

[Pure]
public Duration TrimToMillisecond()

Returns

Duration

New Duration instance.

TrimToMinute()

Creates a new Duration instance by truncating this instance to minutes.

[Pure]
public Duration TrimToMinute()

Returns

Duration

New Duration instance.

TrimToSecond()

Creates a new Duration instance by truncating this instance to seconds.

[Pure]
public Duration TrimToSecond()

Returns

Duration

New Duration instance.

Operators

operator +(Duration, Duration)

Creates a new Duration instance by adding a and b together.

[Pure]
public static Duration operator +(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

Duration

New Duration instance.

operator /(Duration, double)

Creates a new Duration instance by dividing a by b.

[Pure]
public static Duration operator /(Duration a, double b)

Parameters

a Duration

First operand.

b double

Second operand.

Returns

Duration

New Duration instance.

Exceptions

DivideByZeroException

When b is equal to 0.

operator ==(Duration, Duration)

Checks if a is equal to b.

[Pure]
public static bool operator ==(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when operands are equal, otherwise false.

operator >(Duration, Duration)

Checks if a is greater than b.

[Pure]
public static bool operator >(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when a is greater than b, otherwise false.

operator >=(Duration, Duration)

Checks if a is greater than or equal to b.

[Pure]
public static bool operator >=(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when a is greater than or equal to b, otherwise false.

implicit operator FloatingDuration(Duration)

Converts the provided duration to FloatingDuration.

[Pure]
public static implicit operator FloatingDuration(Duration d)

Parameters

d Duration

Value to convert.

Returns

FloatingDuration

New FloatingDuration instance.

implicit operator TimeSpan(Duration)

Converts the provided duration to TimeSpan.

[Pure]
public static implicit operator TimeSpan(Duration d)

Parameters

d Duration

Value to convert.

Returns

TimeSpan

New TimeSpan instance.

operator !=(Duration, Duration)

Checks if a is not equal to b.

[Pure]
public static bool operator !=(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when operands are not equal, otherwise false.

operator <(Duration, Duration)

Checks if a is less than b.

[Pure]
public static bool operator <(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when a is less than b, otherwise false.

operator <=(Duration, Duration)

Checks if a is less than or equal to b.

[Pure]
public static bool operator <=(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

bool

true when a is less than or equal to b, otherwise false.

operator *(Duration, Percent)

Creates a new Duration instance by multiplying a and b together.

[Pure]
public static Duration operator *(Duration a, Percent b)

Parameters

a Duration

First operand.

b Percent

Second operand.

Returns

Duration

New Duration instance.

operator *(Duration, double)

Creates a new Duration instance by multiplying a and b together.

[Pure]
public static Duration operator *(Duration a, double b)

Parameters

a Duration

First operand.

b double

Second operand.

Returns

Duration

New Duration instance.

operator *(Percent, Duration)

Creates a new Duration instance by multiplying a and b together.

[Pure]
public static Duration operator *(Percent a, Duration b)

Parameters

a Percent

First operand.

b Duration

Second operand.

Returns

Duration

New Duration instance.

operator -(Duration, Duration)

Creates a new Duration instance by subtracting b from a.

[Pure]
public static Duration operator -(Duration a, Duration b)

Parameters

a Duration

First operand.

b Duration

Second operand.

Returns

Duration

New Duration instance.

operator -(Duration)

Creates a new Duration instance by negating the provided a.

[Pure]
public static Duration operator -(Duration a)

Parameters

a Duration

Operand.

Returns

Duration

New Duration instance.