System.Xml.CharEntityEncoderFallbackBuffer.GetNextChar C# (CSharp) 메소드

GetNextChar() 공개 메소드

public GetNextChar ( ) : char
리턴 char
        public override char GetNextChar() {
            if ( charEntityIndex == -1 ) {
                return (char)0;
            }
            else {
                Debug.Assert( charEntityIndex < charEntity.Length );
                char ch = charEntity[charEntityIndex++];
                if ( charEntityIndex == charEntity.Length ) {
                    charEntityIndex = -1;
                }
                return ch;
            }
        }