SourceLocation 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SourceLocation(Int32, Int32, Int32) |
初始化 SourceLocation 的新实例。 |
SourceLocation(String, Int32, Int32, Int32) |
初始化 SourceLocation 的新实例。 |
SourceLocation(Int32, Int32, Int32)
初始化 SourceLocation 的新实例。
public:
SourceLocation(int absoluteIndex, int lineIndex, int characterIndex);
public SourceLocation (int absoluteIndex, int lineIndex, int characterIndex);
new Microsoft.AspNetCore.Razor.SourceLocation : int * int * int -> Microsoft.AspNetCore.Razor.SourceLocation
Public Sub New (absoluteIndex As Integer, lineIndex As Integer, characterIndex As Integer)
参数
- absoluteIndex
- Int32
绝对索引。
- lineIndex
- Int32
行索引。
- characterIndex
- Int32
字符索引。
适用于
SourceLocation(String, Int32, Int32, Int32)
初始化 SourceLocation 的新实例。
public:
SourceLocation(System::String ^ filePath, int absoluteIndex, int lineIndex, int characterIndex);
public SourceLocation (string filePath, int absoluteIndex, int lineIndex, int characterIndex);
new Microsoft.AspNetCore.Razor.SourceLocation : string * int * int * int -> Microsoft.AspNetCore.Razor.SourceLocation
Public Sub New (filePath As String, absoluteIndex As Integer, lineIndex As Integer, characterIndex As Integer)
参数
- filePath
- String
文件路径。
- absoluteIndex
- Int32
绝对索引。
- lineIndex
- Int32
行索引。
- characterIndex
- Int32
字符索引。