次の方法で共有


SourceLocation コンストラクター

定義

SourceLocation クラスの新しいインスタンスを作成します。

オーバーロード

SourceLocation(String, Int32)

ソース コード ファイル名とそのファイルにおける行番号を指定する SourceLocation クラスの新しいインスタンスを作成します。

SourceLocation(String, Int32, Int32, Int32, Int32)

ソース コード ファイル名とそのファイルにおけるデータ範囲のパラメーターを指定する SourceLocation クラスの新しいインスタンスを作成します。

SourceLocation(String, Int32)

ソース コード ファイル名とそのファイルにおける行番号を指定する SourceLocation クラスの新しいインスタンスを作成します。

public:
 SourceLocation(System::String ^ fileName, int line);
public SourceLocation (string fileName, int line);
new System.Activities.Debugger.SourceLocation : string * int -> System.Activities.Debugger.SourceLocation
Public Sub New (fileName As String, line As Integer)

パラメーター

fileName
String

ソース コード ファイル。

line
Int32

ソース コード ファイルの行番号。

適用対象

SourceLocation(String, Int32, Int32, Int32, Int32)

ソース コード ファイル名とそのファイルにおけるデータ範囲のパラメーターを指定する SourceLocation クラスの新しいインスタンスを作成します。

public:
 SourceLocation(System::String ^ fileName, int startLine, int startColumn, int endLine, int endColumn);
public SourceLocation (string fileName, int startLine, int startColumn, int endLine, int endColumn);
new System.Activities.Debugger.SourceLocation : string * int * int * int * int -> System.Activities.Debugger.SourceLocation
Public Sub New (fileName As String, startLine As Integer, startColumn As Integer, endLine As Integer, endColumn As Integer)

パラメーター

fileName
String

ソース コード ファイルの名前。

startLine
Int32

読み取りを開始するソース コード ファイルの行番号。

startColumn
Int32

読み取りを開始するソース コード ファイルの列番号。

endLine
Int32

読み取りを終了するソース コード ファイルの行番号。

endColumn
Int32

読み取りを終了するソース コード ファイルの列番号。

適用対象