Share via


SourceRange Constructors

Definition

Overloads

SourceRange()

Initializes a new instance of the SourceRange class.

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

Initializes a new instance of the SourceRange class.

SourceRange()

Initializes a new instance of the SourceRange class.

public SourceRange ();
Public Sub New ()

Applies to

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

Initializes a new instance of the SourceRange class.

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)

Parameters

path
String

path.

startLine
Int32

start line index.

startChar
Int32

start char index.

endLine
Int32

end line index.

endChar
Int32

end line char.

Applies to