System.Text.InternalEncoderBestFitFallbackBuffer.MovePrevious C# (CSharp) 메소드

MovePrevious() 공개 메소드

public MovePrevious ( ) : bool
리턴 bool
        public override bool MovePrevious()
        {
            // Exception fallback doesn't have anywhere to back up to.
            if (_iCount >= 0)
                _iCount++;

            // Return true if we could do it.
            return (_iCount >= 0 && _iCount <= _iSize);
        }