System.Text.RegularExpressions.Match.RemoveMatch C# (CSharp) Метод

RemoveMatch() приватный Метод

private RemoveMatch ( int cap ) : void
cap int
Результат void
        internal virtual void RemoveMatch(int cap)
        {
            _matchcount[cap]--;
        }

Usage Example

Пример #1
0
        /*
         * Called by Go() to revert the last capture
         */
        protected void Uncapture()
        {
            int capnum = Popcrawl();

            _runmatch.RemoveMatch(capnum);
        }