Skip to content

Stopwatch class with ability to add existing value to elapsed time #221

@i4004

Description

@i4004

Specification:

public OffsetStopwatch(TimeSpan startOffset = default)
{
	StartOffset = startOffset;
}

public TimeSpan StartOffset { get; }

public TimeSpan Elapsed => throw new NotImplementedException();
public long ElapsedMilliseconds => throw new NotImplementedException();
public long ElapsedTicks => throw new NotImplementedException();

public new static OffsetStopwatch StartNew()
{
	throw new NotImplementedException();
}

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions