Share via


ISymbolWriter.DefineSequencePoints 方法

定义

在当前方法内定义一组序列点。

public:
 void DefineSequencePoints(System::Diagnostics::SymbolStore::ISymbolDocumentWriter ^ document, cli::array <int> ^ offsets, cli::array <int> ^ lines, cli::array <int> ^ columns, cli::array <int> ^ endLines, cli::array <int> ^ endColumns);
public void DefineSequencePoints (System.Diagnostics.SymbolStore.ISymbolDocumentWriter document, int[] offsets, int[] lines, int[] columns, int[] endLines, int[] endColumns);
abstract member DefineSequencePoints : System.Diagnostics.SymbolStore.ISymbolDocumentWriter * int[] * int[] * int[] * int[] * int[] -> unit
Public Sub DefineSequencePoints (document As ISymbolDocumentWriter, offsets As Integer(), lines As Integer(), columns As Integer(), endLines As Integer(), endColumns As Integer())

参数

document
ISymbolDocumentWriter

正在为其定义序列点的文档对象。

offsets
Int32[]

从方法开始测量的序列点偏移量。

lines
Int32[]

序列点的文档行。

columns
Int32[]

序列点的文档位置。

endLines
Int32[]

序列点的文档结束行。

endColumns
Int32[]

序列点的文档结束位置。

注解

每行和每列定义方法中语句的开头。 应按偏移量的递增顺序对数组进行排序。 偏移量始终是方法开头的偏移量(以字节为单位)。

适用于