Range Constructors

Definition

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

start
Position

Starting Position in a file.

end
Position

Ending Position in a file.

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.

Applies to