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

一个数字,该数字指定源代码文件中读取操作结束时的列。

适用于