Udostępnij przez


Range Konstruktory

Definicja

Przeciążenia

Range(Position, Position)

Inicjuje nowe wystąpienie klasy Range.

Range(Int32, Int32, Int32, Int32)

Inicjuje nowe wystąpienie klasy Range.

Range(Position, Position)

Inicjuje nowe wystąpienie klasy Range.

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)

Parametry

start
Position

Uruchamianie Position w pliku.

end
Position

Kończąc Position na pliku.

Dotyczy

Range(Int32, Int32, Int32, Int32)

Inicjuje nowe wystąpienie klasy Range.

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)

Parametry

startLine
Int32

Numer wiersza początkowego w pliku.

startChar
Int32

Początkowy numer znaku w wierszu początkowym.

endLine
Int32

Końcowy numer wiersza w pliku.

endChar
Int32

Końcowy numer znaku w wierszu końcowym.

Dotyczy