XmlCharacterData.Substring(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves a substring of the full string from the specified range.
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
Parameters
- offset
- Int32
The position within the string to start retrieving. An offset of zero indicates the starting point is at the start of the data.
- count
- Int32
The number of characters to retrieve.
Returns
The substring corresponding to the specified range.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.