System.Reflection.Metadata.SequencePoint
namespace System.Reflection.Metadata
{
public struct SequencePoint : IEquatable<SequencePoint>
{
public const int HiddenLine = 16707566;
public DocumentHandle Document { get; }
public int Offset { get; }
public int StartLine { get; }
public int EndLine { get; }
public int StartColumn { get; }
public int EndColumn { get; }
public bool IsHidden { get; }
public bool Equals(SequencePoint other);
}
}