SourceRange Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.