Class PositionTickInfo
Specifies a number of samples attributed to a certain source position.
public sealed record PositionTickInfo : IEquatable<PositionTickInfo>
- Inheritance
-
PositionTickInfo
- Implements
- Inherited Members
Constructors
PositionTickInfo(long, long)
Specifies a number of samples attributed to a certain source position.
public PositionTickInfo(long Line, long Ticks)
Parameters
Properties
Line
Source line number (1-based).
public long Line { get; init; }
Property Value
Ticks
Number of samples attributed to the source line.
public long Ticks { get; init; }