System.Xml.XmlBaseReader.GetCharBuffer C# (CSharp) Méthode

GetCharBuffer() private méthode

private GetCharBuffer ( int count ) : char[]
count int
Résultat char[]
        private char[] GetCharBuffer(int count)
        {
            if (count > 1024)
                return new char[count];

            if (_chars == null || _chars.Length < count)
                _chars = new char[count];

            return _chars;
        }