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
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.