다음을 통해 공유


Range 생성자

정의

오버로드

Range(Position, Position)

Range 클래스의 새 인스턴스를 초기화합니다.

Range(Int32, Int32, Int32, Int32)

Range 클래스의 새 인스턴스를 초기화합니다.

Range(Position, Position)

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)

매개 변수

start
Position

파일에서 시작 Position 합니다.

end
Position

파일에서 끝납니다 Position .

적용 대상

Range(Int32, Int32, Int32, Int32)

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)

매개 변수

startLine
Int32

파일의 시작 줄 번호입니다.

startChar
Int32

시작 줄의 시작 문자 번호입니다.

endLine
Int32

파일의 끝 줄 번호입니다.

endChar
Int32

끝 줄의 끝 문자 번호입니다.

적용 대상