示例#1
0
        void HackSaveNodes(IList <ILNode> body, string filename)
        {
            ILNode  parrent = body[0].Parent;
            ILBlock test    = new ILBlock();

            test.Body = body;
            error.DebugSave(test, filename, false);
            test.Body = null;
            foreach (var n in body)
            {
                n.Parent = parrent;
            }
        }