System.Xml.XmlBaseReader.GetCharBuffer C# (CSharp) 메소드

GetCharBuffer() 개인적인 메소드

private GetCharBuffer ( int count ) : char[]
count int
리턴 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;
        }