Range 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
Range(Position, Position) |
Initializes a new instance of the Range class. |
Range(Int32, Int32, Int32, Int32) |
Initializes a new instance of the Range class. |
Range(Position, Position)
Initializes a new instance of the Range class.
public Range (Microsoft.Bot.Builder.LanguageGeneration.Position start, Microsoft.Bot.Builder.LanguageGeneration.Position end);
new Microsoft.Bot.Builder.LanguageGeneration.Range : Microsoft.Bot.Builder.LanguageGeneration.Position * Microsoft.Bot.Builder.LanguageGeneration.Position -> Microsoft.Bot.Builder.LanguageGeneration.Range
Public Sub New (start As Position, end As Position)
Parameters
Applies to
Range(Int32, Int32, Int32, Int32)
Initializes a new instance of the Range class.
public Range (int startLine, int startChar, int endLine, int endChar);
new Microsoft.Bot.Builder.LanguageGeneration.Range : int * int * int * int -> Microsoft.Bot.Builder.LanguageGeneration.Range
Public Sub New (startLine As Integer, startChar As Integer, endLine As Integer, endChar As Integer)
Parameters
- startLine
- Int32
Starting line number in a file.
- startChar
- Int32
Starting character number in the start line.
- endLine
- Int32
Ending line number in a file.
- endChar
- Int32
Ending character number in the end line.