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[]

シーケンス ポイントに対するドキュメント内の末尾位置。

注釈

各行と各列は、メソッド内のステートメントの開始を定義します。 オフセットの昇順で配列を並べ替える必要があります。 オフセットは、常に メソッドの先頭からのオフセット (バイト単位) です。

適用対象