ISymbolMethod.GetSequencePoints 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前方法的序列點。
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
,則不會傳回該陣列的數據。