Range 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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)
參數
適用於
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
結尾行中的結束字元編號。