共用方式為


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

指定原始程式碼檔中結束讀取資料行的號碼。

適用於