Table of Contents

Class SequencePoint

Namespace
ICSharpCode.Decompiler.DebugInfo
Assembly
ICSharpCode.Decompiler.dll

A sequence point read from a PDB file or produced by the decompiler.

public class SequencePoint
Inheritance
SequencePoint
Inherited Members

Constructors

SequencePoint()

public SequencePoint()

Properties

DocumentUrl

public string DocumentUrl { get; set; }

Property Value

string

EndColumn

public int EndColumn { get; set; }

Property Value

int

EndLine

public int EndLine { get; set; }

Property Value

int

EndOffset

IL end offset.

public int EndOffset { get; set; }

Property Value

int

Remarks

This does not get stored in debug information; it is used internally to create hidden sequence points for the IL fragments not covered by any sequence point.

IsHidden

public bool IsHidden { get; }

Property Value

bool

Offset

IL start offset.

public int Offset { get; set; }

Property Value

int

StartColumn

public int StartColumn { get; set; }

Property Value

int

StartLine

public int StartLine { get; set; }

Property Value

int