AlphaTab.Importer.AlphaTexImporter.ReadName C# (CSharp) Méthode

ReadName() private méthode

Reads a string from the stream.
private ReadName ( ) : string
Résultat string
        private string ReadName()
        {
            var str = new StringBuilder();
            do
            {
                str.AppendChar(_ch);
                NextChar();
            } while (IsLetter(_ch) || IsDigit(_ch));
            return str.ToString();
        }