SourceRange 构造函数

定义

重载

SourceRange()

初始化 SourceRange 类的新实例。

SourceRange(String, Int32, Int32, Int32, Int32)

初始化 SourceRange 类的新实例。

SourceRange()

初始化 SourceRange 类的新实例。

public SourceRange();
Public Sub New ()

适用于

SourceRange(String, Int32, Int32, Int32, Int32)

初始化 SourceRange 类的新实例。

public SourceRange(string path, int startLine, int startChar, int endLine, int endChar);
new Microsoft.Bot.Builder.Dialogs.Debugging.SourceRange : string * int * int * int * int -> Microsoft.Bot.Builder.Dialogs.Debugging.SourceRange
Public Sub New (path As String, startLine As Integer, startChar As Integer, endLine As Integer, endChar As Integer)

参数

path
String

路径。

startLine
Int32

起始行索引。

startChar
Int32

start char index。

endLine
Int32

结束行索引。

endChar
Int32

end line char。

适用于