共用方式為


Span 建構函式

使用指定的起始點和長度初始化 Span 的新執行個體。

命名空間:  Microsoft.VisualStudio.Text
組件:  Microsoft.VisualStudio.Text.Data (在 Microsoft.VisualStudio.Text.Data.dll 中)

語法

'宣告
Public Sub New ( _
    start As Integer, _
    length As Integer _
)
public Span(
    int start,
    int length
)
public:
Span(
    int start, 
    int length
)
new : 
        start:int * 
        length:int -> Span
public function Span(
    start : int, 
    length : int
)

參數

  • start
    類型:Int32

    延伸的起始點。

  • length
    類型:Int32

    延伸的長度。

例外狀況

例外狀況 條件
ArgumentOutOfRangeException

start或length小於零,或 (start + length)大於文字快照的長度。

.NET Framework 安全性

請參閱

參考

Span 結構

Microsoft.VisualStudio.Text 命名空間