System.Text.RegularExpressions.RegexTree.Dump C# (CSharp) Method

Dump() private method

private Dump ( ) : void
return void
        internal void Dump()
        {
            _root.Dump();
        }

Usage Example

        /*
         * This is the only function that should be called from outside.
         * It takes a RegexTree and creates a corresponding RegexCode.
         */
        internal static RegexCode Write(RegexTree t) {
            RegexWriter w = new RegexWriter();
            RegexCode retval = w.RegexCodeFromRegexTree(t);
#if DBG
            if (t.Debug) {
                t.Dump();
                retval.Dump();
            }
#endif
            return retval;
        }
All Usage Examples Of System.Text.RegularExpressions.RegexTree::Dump