M_Cyjb_Text_TextSpan__ctor - CYJB/Cyjb GitHub Wiki
使用指定的起始和结束位置初始化。
Namespace: Cyjb.Text
Assembly: Cyjb (in Cyjb.dll) Version: 1.0.23+7750dd8e971297c5fa962a3bee37fb78f72793f6
C#
public TextSpan(
int start,
int end
)
- start
- Type: System.Int32
范围的起始位置。 - end
- Type: System.Int32
范围的结束位置(不含)。
异常 | 条件 |
---|---|
ArgumentOutOfRangeException | start 小于 0。 |
ArgumentOutOfRangeException | end 小于 start。 |