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

読み取りが終了するソース コード ファイル内の列を指定する数値。

適用対象