System.Xml.DtdParser.GetValue C# (CSharp) Méthode

GetValue() private méthode

private GetValue ( ) : string
Résultat string
        private string GetValue()
        {
            if (_stringBuilder.Length == 0)
            {
                return new string(_chars, _tokenStartPos, _curPos - _tokenStartPos - 1);
            }
            else
            {
                return _stringBuilder.ToString();
            }
        }