共用方式為


ISymbolMethod.GetSequencePoints 方法

定義

取得目前方法的序列點。

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

參數

offsets
Int32[]

序列點之方法開頭的位元組位移陣列。

documents
ISymbolDocument[]

序列點所在的文件陣列。

lines
Int32[]

序列點所在文件中的行陣列。

columns
Int32[]

序列點所在文件中的欄陣列。

endLines
Int32[]

序列點結束處的文件行陣列。

endColumns
Int32[]

序列點結束處的文件欄陣列。

備註

順序點會依位移排序,而且會針對 方法中的所有檔排序。 使用 SequencePointCount 擷取所有序列點的計數,並建立適當大小的陣列。

GetSequencePoints 會驗證每個數位的大小,並將序列點資訊放入每個數位中。 如果有任何陣列為 null,則不會傳回該陣列的數據。

適用於