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);
        }