XmlCharacterData.Substring(Int32, Int32) 方法

定义

在指定的范围内检索完整字符串的子字符串。

public:
 virtual System::String ^ Substring(int offset, int count);
public virtual string Substring (int offset, int count);
abstract member Substring : int * int -> string
override this.Substring : int * int -> string
Public Overridable Function Substring (offset As Integer, count As Integer) As String

参数

offset
Int32

字符串中开始检索的位置。 偏移量为零指示起始点在数据的开始处。

count
Int32

要检索的字符数。

返回

String

对应于指定范围的子字符串。

适用于