Defines a group of sequence points within the current method.
[Visual Basic] Sub DefineSequencePoints( _ ByVal document As ISymbolDocumentWriter, _ ByVal offsets() As Integer, _ ByVal lines() As Integer, _ ByVal columns() As Integer, _ ByVal endLines() As Integer, _ ByVal endColumns() As Integer _ ) [C#] void DefineSequencePoints( ISymbolDocumentWriter document, int[] offsets, int[] lines, int[] columns, int[] endLines, int[] endColumns ); [C++] void DefineSequencePoints( ISymbolDocumentWriter* document, int* offsets[], int* lines[], int* columns[], int* endLines[], int* endColumns[] ) = 0; [JScript] function DefineSequencePoints( document : ISymbolDocumentWriter, offsets : int[], lines : int[], columns : int[], endLines : int[], endColumns : int[] );
Each line and each column defines the start of a statement within a method. The arrays should be sorted in the increasing order of offsets. The offset is always the offset from the start of the method, in bytes.
ISymbolWriter Interface | ISymbolWriter Members | System.Diagnostics.SymbolStore Namespace