System.__DTString.SkipWhiteSpaceCurrent C# (CSharp) Method

SkipWhiteSpaceCurrent() private method

private SkipWhiteSpaceCurrent ( ) : bool
return bool
        internal bool SkipWhiteSpaceCurrent()
        {
            if (Index >= len) {
                return (false);
            }

            if (!Char.IsWhiteSpace(m_current))
            {
                return (true);
            }

            while (++Index < len)
            {
                m_current = Value[Index];
                if (!Char.IsWhiteSpace(m_current))
                {
                    return (true);
                }
                // Nothing here.
            }
            return (false);
        }