首页
社区
课程
招聘
[求助]菜鸟求救 大哥大姐帮忙看看这段代码
2014-6-4 21:39 5673

[求助]菜鸟求救 大哥大姐帮忙看看这段代码

2014-6-4 21:39
5673
C#
[STAThread]
private static void Main()
{
    try
    {
        string verNumerSEO = "";
        string xmlNodeValue = "";
        Update update = new Update();
        Update update2 = new Update();
        Mutex mutex = new Mutex(false, "TaobaoSEO", out bCreatedNew);
        if (!bCreatedNew)
        {
            MessageBox.Show("程序已经执行!", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
        }
        else
        {
            XmlDocument document;
            string str3;
            try
            {
                ServicePointManager.Expect100Continue = false;
                try
                {
                    verNumerSEO = update.GetVerNumerSEO();
                }
                catch
                {
                    verNumerSEO = update2.GetVerNumerSEO();
                }
                if (verNumerSEO == "")
                {
                    MessageBox.Show("无法获取服务信息,请检测是否联网", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                document = new XmlDocument();
                str3 = Application.StartupPath + @"\Versions.xml";
                document.Load(str3);
                xmlNodeValue = XmlHelper.GetXmlNodeValue(document, "VerdionsNum");
            }
            catch (Exception exception)
            {
                MessageBox.Show(exception.StackTrace + exception.Message + "无法获取服务信息,请检测是否联网", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                return;
            }
            if (xmlNodeValue != verNumerSEO)
            {
                if (MessageBox.Show("软件已发布新版本,是否在线更新?", "提醒", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk) == DialogResult.Yes)
                {
                    Application.Exit();
                    Process.Start(Path.Combine(Application.StartupPath, "SEOUpdate.exe"));
                }
                else
                {
                    MessageBox.Show("您没有选择更新程序,将无法运行本程序!", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    Application.Exit();
                }
            }
            else
            {
                string refNumberSEO = "";
                string str5 = "";
                try
                {
                    refNumberSEO = update.GetRefNumberSEO();
                }
                catch
                {
                    refNumberSEO = update2.GetRefNumberSEO();
                }
                document = new XmlDocument();
                str3 = Application.StartupPath + @"\Refresh.xml";
                document.Load(str3);
                str5 = XmlHelper.GetXmlNodeValue(document, "RefreshNum");
                if (refNumberSEO != str5)
                {
                    Application.Exit();
                    Process.Start(Path.Combine(Application.StartupPath, "SEORefresh.exe"));
                }
                else
                {
                    Application.ThreadException += new ThreadExceptionEventHandler(Program.Application_ThreadException);
                    AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(Program.CurrentDomain_UnhandledException);
                    Application.EnableVisualStyles();
                    Application.SetCompatibleTextRenderingDefault(false);
                    try
                    {
                        RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall\SaveWay", false);
                        string paths = "";
                        if (key != null)
                        {
                            paths = key.GetValue("备份路径").ToString();
                        }
                        else
                        {
                            chooseWay way = new chooseWay();
                            if (way.ShowDialog() == DialogResult.OK)
                            {
                                paths = way.paths;
                            }
                        }
                        if (!Directory.Exists(Application.StartupPath + @"\DB"))
                        {
                            Directory.CreateDirectory(Application.StartupPath + @"\DB");
                            File.Copy(paths + "pagedata130722.db", Application.StartupPath + @"\DB\pagedata130722.db");
                            File.WriteAllText(Application.StartupPath + @"\DB\请勿删除该文件.txt", "'pagedata130722.db'文件为用户操作数据库文件,用户不要轻易删除,删除后造成的后果由用户自行负责", Encoding.Default);
                        }
                        else if (!File.Exists(Application.StartupPath + @"\DB\pagedata130722.db"))
                        {
                            File.Copy(paths + "pagedata130722.db", Application.StartupPath + @"\DB\pagedata130722.db");
                            File.WriteAllText(Application.StartupPath + @"\DB\请勿删除该文件.txt", "'pagedata130722.db'文件为用户操作数据库文件,用户不要轻易删除,删除后造成的后果由用户自行负责", Encoding.Default);
                        }
                    }
                    catch (Exception exception2)
                    {
                        MessageBox.Show(exception2.Message + exception2.StackTrace);
                    }
                    string[] strRF = null;
                    Application.Run(new RadForm1(strRF));
                }
            }
        }
    }
    catch (Exception exception3)
    {
        MessageBox.Show(exception3.ToString());
    }
}


要跳过里面的SEOUpdate.exe程序和SEORefresh.exe更新 是否修改着部分的代码有没有大神帮忙分析下

IL

  [COLOR=#1000a0].method[/COLOR] [COLOR=#1000a0]private[/COLOR] [COLOR=#1000a0]hidebysig[/COLOR] [COLOR=#1000a0]static[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [B][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program/Main()"]Main[/URL][/B]()[COLOR=#1000a0] [/COLOR][COLOR=#1000a0]cil[/COLOR][COLOR=#1000a0] [/COLOR][COLOR=#1000a0]managed[/COLOR] {     [COLOR=#1000a0].custom[/COLOR] [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.STAThreadAttribute"]System.STAThreadAttribute[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.STAThreadAttribute/.ctor()"].ctor[/URL]()     [COLOR=#1000a0].entrypoint[/COLOR]     [COLOR=#1000a0].maxstack[/COLOR] 4     [COLOR=#1000a0].locals[/COLOR] [COLOR=#1000a0]init[/COLOR] (         [[COLOR=#800000]0[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str[/B],         [[COLOR=#800000]1[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str2[/B],         [[COLOR=#800000]2[/COLOR]] [COLOR=#1000a0]class[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update"]TaobaoSEO.update.Update[/URL] [B]update[/B],         [[COLOR=#800000]3[/COLOR]] [COLOR=#1000a0]class[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update"]TaobaoSEO.update1.Update[/URL] [B]update2[/B],         [[COLOR=#800000]4[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Threading.Mutex"]System.Threading.Mutex[/URL] [B]mutex[/B],         [[COLOR=#800000]5[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL] [B]document[/B],         [[COLOR=#800000]6[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str3[/B],         [[COLOR=#800000]7[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [B]exception[/B],         [[COLOR=#800000]8[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str4[/B],         [[COLOR=#800000]9[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str5[/B],         [[COLOR=#800000]10[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey"]Microsoft.Win32.RegistryKey[/URL] [B]key[/B],         [[COLOR=#800000]11[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [B]str6[/B],         [[COLOR=#800000]12[/COLOR]] [COLOR=#1000a0]class[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.chooseWay"]TaobaoSEO.chooseWay[/URL] [B]way[/B],         [[COLOR=#800000]13[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [B]exception2[/B],         [[COLOR=#800000]14[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL][] [B]strArray[/B],         [[COLOR=#800000]15[/COLOR]] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [B]exception3[/B],         [[COLOR=#800000]16[/COLOR]] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [B]flag[/B])     L_0000: nop      L_0001: nop      L_0002: ldstr [COLOR=#800000]""[/COLOR]     L_0007: stloc.0      L_0008: ldstr [COLOR=#800000]""[/COLOR]     L_000d: stloc.1      L_000e: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update"]TaobaoSEO.update.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update/.ctor()"].ctor[/URL]()     L_0013: stloc.2      L_0014: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update"]TaobaoSEO.update1.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update/.ctor()"].ctor[/URL]()     L_0019: stloc.3      L_001a: ldc.i4.0      L_001b: ldstr [COLOR=#800000]"TaobaoSEO"[/COLOR]     L_0020: ldsflda [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program"]TaobaoSEO.Program[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program/bCreatedNew:Boolean"]bCreatedNew[/URL]     L_0025: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Threading.Mutex"]System.Threading.Mutex[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Threading.Mutex/.ctor(Boolean,String,Boolean&)"].ctor[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL]&)     L_002a: stloc.s mutex     L_002c: ldsfld [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program"]TaobaoSEO.Program[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program/bCreatedNew:Boolean"]bCreatedNew[/URL]     L_0031: stloc.s flag     L_0033: ldloc.s flag     L_0035: brtrue.s L_0051     L_0037: nop      L_0038: ldstr [COLOR=#800000]"\u7a0b\u5e8f\u5df2\u7ecf\u6267\u884c!"[/COLOR]     L_003d: ldstr [COLOR=#800000]"\u63d0\u9192"[/COLOR]     L_0042: ldc.i4.0      L_0043: ldc.i4.s [COLOR=#800000]0x40[/COLOR]     L_0045: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String,String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxButtons"]System.Windows.Forms.MessageBoxButtons[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxIcon"]System.Windows.Forms.MessageBoxIcon[/URL])     L_004a: pop      L_004b: nop      L_004c: br L_039d     L_0051: nop      L_0052: nop      L_0053: ldc.i4.0      L_0054: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Net.ServicePointManager"]System.Net.ServicePointManager[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Net.ServicePointManager/set_Expect100Continue(Boolean)"]set_Expect100Continue[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL])     L_0059: nop      L_005a: nop      L_005b: ldloc.2      L_005c: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update"]TaobaoSEO.update.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update/GetVerNumerSEO():String"]GetVerNumerSEO[/URL]()     L_0061: stloc.0      L_0062: nop      L_0063: leave.s L_0071     L_0065: pop      L_0066: nop      L_0067: ldloc.3      L_0068: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update"]TaobaoSEO.update1.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update/GetVerNumerSEO():String"]GetVerNumerSEO[/URL]()     L_006d: stloc.0      L_006e: nop      L_006f: leave.s L_0071     L_0071: nop      L_0072: ldloc.0      L_0073: ldstr [COLOR=#800000]""[/COLOR]     L_0078: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/op_Equality(String,String):Boolean"]op_Equality[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_007d: ldc.i4.0      L_007e: ceq      L_0080: stloc.s flag     L_0082: ldloc.s flag     L_0084: brtrue.s L_009f     L_0086: nop      L_0087: ldstr [COLOR=#800000]"\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"[/COLOR]     L_008c: ldstr [COLOR=#800000]"\u63d0\u9192"[/COLOR]     L_0091: ldc.i4.0      L_0092: ldc.i4.s [COLOR=#800000]0x40[/COLOR]     L_0094: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String,String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxButtons"]System.Windows.Forms.MessageBoxButtons[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxIcon"]System.Windows.Forms.MessageBoxIcon[/URL])     L_0099: pop      L_009a: leave L_03b4     L_009f: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument/.ctor()"].ctor[/URL]()     L_00a4: stloc.s document     L_00a6: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_00ab: ldstr [COLOR=#800000]"\\Versions.xml"[/COLOR]     L_00b0: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_00b5: stloc.s str3     L_00b7: ldloc.s document     L_00b9: ldloc.s str3     L_00bb: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument/Load(String)"]Load[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_00c0: nop      L_00c1: ldloc.s document     L_00c3: ldstr [COLOR=#800000]"VerdionsNum"[/COLOR]     L_00c8: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0"]userLib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0/userLib.XmlHelper"]userLib.XmlHelper[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0/userLib.XmlHelper/GetXmlNodeValue(System.Xml.XmlDocument,String):String"]GetXmlNodeValue[/URL]([COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_00cd: stloc.1      L_00ce: nop      L_00cf: leave.s L_00ff     L_00d1: stloc.s exception     L_00d3: nop      L_00d4: ldloc.s exception     L_00d6: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception/get_StackTrace():String"]get_StackTrace[/URL]()     L_00db: ldloc.s exception     L_00dd: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception/get_Message():String"]get_Message[/URL]()     L_00e2: ldstr [COLOR=#800000]"\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"[/COLOR]     L_00e7: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_00ec: ldstr [COLOR=#800000]"\u63d0\u9192"[/COLOR]     L_00f1: ldc.i4.0      L_00f2: ldc.i4.s [COLOR=#800000]0x40[/COLOR]     L_00f4: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String,String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxButtons"]System.Windows.Forms.MessageBoxButtons[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxIcon"]System.Windows.Forms.MessageBoxIcon[/URL])     L_00f9: pop      L_00fa: leave L_03b4     L_00ff: nop      L_0100: ldloc.1      L_0101: ldloc.0      L_0102: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/op_Inequality(String,String):Boolean"]op_Inequality[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0107: ldc.i4.0      L_0108: ceq      L_010a: stloc.s flag     L_010c: ldloc.s flag     L_010e: brtrue.s L_016f     L_0110: nop      L_0111: ldstr [COLOR=#800000]"\u8f6f\u4ef6\u5df2\u53d1\u5e03\u65b0\u7248\u672c\uff0c\u662f\u5426\u5728\u7ebf\u66f4\u65b0\uff1f"[/COLOR]     L_0116: ldstr [COLOR=#800000]"\u63d0\u9192"[/COLOR]     L_011b: ldc.i4.4      L_011c: ldc.i4.s [COLOR=#800000]0x40[/COLOR]     L_011e: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String,String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxButtons"]System.Windows.Forms.MessageBoxButtons[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxIcon"]System.Windows.Forms.MessageBoxIcon[/URL])     L_0123: ldc.i4.6      L_0124: ceq      L_0126: ldc.i4.0      L_0127: ceq      L_0129: stloc.s flag     L_012b: ldloc.s flag     L_012d: brtrue.s L_014e     L_012f: nop      L_0130: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/Exit()"]Exit[/URL]()     L_0135: nop      L_0136: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_013b: ldstr [COLOR=#800000]"SEOUpdate.exe"[/COLOR]     L_0140: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Path"]System.IO.Path[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Path/Combine(String,String):String"]Combine[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0145: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process"]System.Diagnostics.Process[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process"]System.Diagnostics.Process[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process/Start(String):System.Diagnostics.Process"]Start[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_014a: pop      L_014b: nop      L_014c: br.s L_0169     L_014e: nop      L_014f: ldstr [COLOR=#800000]"\u60a8\u6ca1\u6709\u9009\u62e9\u66f4\u65b0\u7a0b\u5e8f\uff0c\u5c06\u65e0\u6cd5\u8fd0\u884c\u672c\u7a0b\u5e8f\uff01"[/COLOR]     L_0154: ldstr [COLOR=#800000]"\u63d0\u9192"[/COLOR]     L_0159: ldc.i4.0      L_015a: ldc.i4.s [COLOR=#800000]0x40[/COLOR]     L_015c: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String,String,System.Windows.Forms.MessageBoxButtons,System.Windows.Forms.MessageBoxIcon):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxButtons"]System.Windows.Forms.MessageBoxButtons[/URL], [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBoxIcon"]System.Windows.Forms.MessageBoxIcon[/URL])     L_0161: pop      L_0162: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/Exit()"]Exit[/URL]()     L_0167: nop      L_0168: nop      L_0169: nop      L_016a: br L_039c     L_016f: nop      L_0170: ldstr [COLOR=#800000]""[/COLOR]     L_0175: stloc.s str4     L_0177: ldstr [COLOR=#800000]""[/COLOR]     L_017c: stloc.s str5     L_017e: nop      L_017f: ldloc.2      L_0180: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update"]TaobaoSEO.update.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update.Update/GetRefNumberSEO():String"]GetRefNumberSEO[/URL]()     L_0185: stloc.s str4     L_0187: nop      L_0188: leave.s L_0197     L_018a: pop      L_018b: nop      L_018c: ldloc.3      L_018d: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update"]TaobaoSEO.update1.Update[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.update1.Update/GetRefNumberSEO():String"]GetRefNumberSEO[/URL]()     L_0192: stloc.s str4     L_0194: nop      L_0195: leave.s L_0197     L_0197: nop      L_0198: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument/.ctor()"].ctor[/URL]()     L_019d: stloc.s document     L_019f: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_01a4: ldstr [COLOR=#800000]"\\Refresh.xml"[/COLOR]     L_01a9: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01ae: stloc.s str3     L_01b0: ldloc.s document     L_01b2: ldloc.s str3     L_01b4: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument/Load(String)"]Load[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01b9: nop      L_01ba: ldloc.s document     L_01bc: ldstr [COLOR=#800000]"RefreshNum"[/COLOR]     L_01c1: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0"]userLib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0/userLib.XmlHelper"]userLib.XmlHelper[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://userLib:1.0.0.0/userLib.XmlHelper/GetXmlNodeValue(System.Xml.XmlDocument,String):String"]GetXmlNodeValue[/URL]([COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089"]System.Xml[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Xml:4.0.0.0:b77a5c561934e089/System.Xml.XmlDocument"]System.Xml.XmlDocument[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01c6: stloc.s str5     L_01c8: ldloc.s str4     L_01ca: ldloc.s str5     L_01cc: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/op_Inequality(String,String):Boolean"]op_Inequality[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01d1: ldc.i4.0      L_01d2: ceq      L_01d4: stloc.s flag     L_01d6: ldloc.s flag     L_01d8: brtrue.s L_01fc     L_01da: nop      L_01db: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/Exit()"]Exit[/URL]()     L_01e0: nop      L_01e1: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_01e6: ldstr [COLOR=#800000]"SEORefresh.exe"[/COLOR]     L_01eb: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Path"]System.IO.Path[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Path/Combine(String,String):String"]Combine[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01f0: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process"]System.Diagnostics.Process[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process"]System.Diagnostics.Process[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Diagnostics.Process/Start(String):System.Diagnostics.Process"]Start[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_01f5: pop      L_01f6: nop      L_01f7: br L_039b     L_01fc: nop      L_01fd: ldnull      L_01fe: ldftn [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program"]TaobaoSEO.Program[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program/Application_ThreadException(Object,System.Threading.ThreadExceptionEventArgs)"]Application_ThreadException[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Object"]object[/URL], [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Threading.ThreadExceptionEventArgs"]System.Threading.ThreadExceptionEventArgs[/URL])     L_0204: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Threading.ThreadExceptionEventHandler"]System.Threading.ThreadExceptionEventHandler[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Threading.ThreadExceptionEventHandler/.ctor(Object,IntPtr)"].ctor[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Object"]object[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.IntPtr"]native int[/URL])     L_0209: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/add_ThreadException(System.Threading.ThreadExceptionEventHandler)"]add_ThreadException[/URL]([COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089"]System[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System:4.0.0.0:b77a5c561934e089/System.Threading.ThreadExceptionEventHandler"]System.Threading.ThreadExceptionEventHandler[/URL])     L_020e: nop      L_020f: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.AppDomain"]System.AppDomain[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.AppDomain"]System.AppDomain[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.AppDomain/get_CurrentDomain():System.AppDomain"]get_CurrentDomain[/URL]()     L_0214: ldnull      L_0215: ldftn [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program"]TaobaoSEO.Program[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.Program/CurrentDomain_UnhandledException(Object,System.UnhandledExceptionEventArgs)"]CurrentDomain_UnhandledException[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Object"]object[/URL], [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.UnhandledExceptionEventArgs"]System.UnhandledExceptionEventArgs[/URL])     L_021b: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.UnhandledExceptionEventHandler"]System.UnhandledExceptionEventHandler[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.UnhandledExceptionEventHandler/.ctor(Object,IntPtr)"].ctor[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Object"]object[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.IntPtr"]native int[/URL])     L_0220: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.AppDomain"]System.AppDomain[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.AppDomain/add_UnhandledException(System.UnhandledExceptionEventHandler)"]add_UnhandledException[/URL]([COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.UnhandledExceptionEventHandler"]System.UnhandledExceptionEventHandler[/URL])     L_0225: nop      L_0226: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/EnableVisualStyles()"]EnableVisualStyles[/URL]()     L_022b: nop      L_022c: ldc.i4.0      L_022d: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/SetCompatibleTextRenderingDefault(Boolean)"]SetCompatibleTextRenderingDefault[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL])     L_0232: nop      L_0233: nop      L_0234: ldsfld [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey"]Microsoft.Win32.RegistryKey[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.Registry"]Microsoft.Win32.Registry[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.Registry/LocalMachine:Microsoft.Win32.RegistryKey"]LocalMachine[/URL]     L_0239: ldstr [COLOR=#800000]"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\SaveWay"[/COLOR]     L_023e: ldc.i4.0      L_023f: callvirt [COLOR=#1000a0]instance[/COLOR] [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey"]Microsoft.Win32.RegistryKey[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey"]Microsoft.Win32.RegistryKey[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey/OpenSubKey(String,Boolean):Microsoft.Win32.RegistryKey"]OpenSubKey[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL])     L_0244: stloc.s key     L_0246: ldstr [COLOR=#800000]""[/COLOR]     L_024b: stloc.s str6     L_024d: ldloc.s key     L_024f: ldnull      L_0250: ceq      L_0252: stloc.s flag     L_0254: ldloc.s flag     L_0256: brtrue.s L_026f     L_0258: nop      L_0259: ldloc.s key     L_025b: ldstr [COLOR=#800000]"\u5907\u4efd\u8def\u5f84"[/COLOR]     L_0260: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Object"]object[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey"]Microsoft.Win32.RegistryKey[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/Microsoft.Win32.RegistryKey/GetValue(String):Object"]GetValue[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0265: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object"]System.Object[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object/ToString():String"]ToString[/URL]()     L_026a: stloc.s str6     L_026c: nop      L_026d: br.s L_0296     L_026f: nop      L_0270: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.chooseWay"]TaobaoSEO.chooseWay[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.chooseWay/.ctor()"].ctor[/URL]()     L_0275: stloc.s way     L_0277: ldloc.s way     L_0279: callvirt [COLOR=#1000a0]instance[/COLOR] [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Form"]System.Windows.Forms.Form[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Form/ShowDialog():System.Windows.Forms.DialogResult"]ShowDialog[/URL]()     L_027e: ldc.i4.1      L_027f: ceq      L_0281: ldc.i4.0      L_0282: ceq      L_0284: stloc.s flag     L_0286: ldloc.s flag     L_0288: brtrue.s L_0295     L_028a: nop      L_028b: ldloc.s way     L_028d: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.chooseWay"]TaobaoSEO.chooseWay[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.chooseWay/get_paths():String"]get_paths[/URL]()     L_0292: stloc.s str6     L_0294: nop      L_0295: nop      L_0296: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_029b: ldstr [COLOR=#800000]"\\DB"[/COLOR]     L_02a0: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02a5: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Directory"]System.IO.Directory[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Directory/Exists(String):Boolean"]Exists[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02aa: stloc.s flag     L_02ac: ldloc.s flag     L_02ae: brtrue.s L_0309     L_02b0: nop      L_02b1: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_02b6: ldstr [COLOR=#800000]"\\DB"[/COLOR]     L_02bb: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02c0: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.DirectoryInfo"]System.IO.DirectoryInfo[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Directory"]System.IO.Directory[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.Directory/CreateDirectory(String):System.IO.DirectoryInfo"]CreateDirectory[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02c5: pop      L_02c6: ldloc.s str6     L_02c8: ldstr [COLOR=#800000]"pagedata130722.db"[/COLOR]     L_02cd: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02d2: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_02d7: ldstr [COLOR=#800000]"\\DB\\pagedata130722.db"[/COLOR]     L_02dc: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02e1: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File"]System.IO.File[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File/Copy(String,String)"]Copy[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02e6: nop      L_02e7: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_02ec: ldstr [COLOR=#800000]"\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"[/COLOR]     L_02f1: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_02f6: ldstr [COLOR=#800000]"\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"[/COLOR]     L_02fb: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding/get_Default():System.Text.Encoding"]get_Default[/URL]()     L_0300: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File"]System.IO.File[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File/WriteAllText(String,String,System.Text.Encoding)"]WriteAllText[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL])     L_0305: nop      L_0306: nop      L_0307: br.s L_0367     L_0309: nop      L_030a: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_030f: ldstr [COLOR=#800000]"\\DB\\pagedata130722.db"[/COLOR]     L_0314: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0319: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Boolean"]bool[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File"]System.IO.File[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File/Exists(String):Boolean"]Exists[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_031e: stloc.s flag     L_0320: ldloc.s flag     L_0322: brtrue.s L_0366     L_0324: nop      L_0325: ldloc.s str6     L_0327: ldstr [COLOR=#800000]"pagedata130722.db"[/COLOR]     L_032c: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0331: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_0336: ldstr [COLOR=#800000]"\\DB\\pagedata130722.db"[/COLOR]     L_033b: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0340: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File"]System.IO.File[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File/Copy(String,String)"]Copy[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0345: nop      L_0346: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/get_StartupPath():String"]get_StartupPath[/URL]()     L_034b: ldstr [COLOR=#800000]"\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"[/COLOR]     L_0350: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0355: ldstr [COLOR=#800000]"\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"[/COLOR]     L_035a: call [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding/get_Default():System.Text.Encoding"]get_Default[/URL]()     L_035f: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File"]System.IO.File[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.IO.File/WriteAllText(String,String,System.Text.Encoding)"]WriteAllText[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Text.Encoding"]System.Text.Encoding[/URL])     L_0364: nop      L_0365: nop      L_0366: nop      L_0367: nop      L_0368: leave.s L_0389     L_036a: stloc.s exception2     L_036c: nop      L_036d: ldloc.s exception2     L_036f: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception/get_Message():String"]get_Message[/URL]()     L_0374: ldloc.s exception2     L_0376: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception/get_StackTrace():String"]get_StackTrace[/URL]()     L_037b: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String"]System.String[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.String/Concat(String,String):String"]Concat[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL], [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0380: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_0385: pop      L_0386: nop      L_0387: leave.s L_0389     L_0389: nop      L_038a: ldnull      L_038b: stloc.s strArray     L_038d: ldloc.s strArray     L_038f: newobj [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.RadForm1"]TaobaoSEO.RadForm1[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://TaobaoSEO:1.0.0.0/TaobaoSEO.RadForm1/.ctor(String%5b%5d)"].ctor[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL][])     L_0394: call [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.Void"]void[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application"]System.Windows.Forms.Application[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Application/Run(System.Windows.Forms.Form)"]Run[/URL]([COLOR=#1000a0]class[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.Form"]System.Windows.Forms.Form[/URL])     L_0399: nop      L_039a: nop      L_039b: nop      L_039c: nop      L_039d: nop      L_039e: leave.s L_03b3     L_03a0: stloc.s exception3     L_03a2: nop      L_03a3: ldloc.s exception3     L_03a5: callvirt [COLOR=#1000a0]instance[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object"]System.Object[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object/ToString():String"]ToString[/URL]()     L_03aa: call [COLOR=#1000a0]valuetype[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.DialogResult"]System.Windows.Forms.DialogResult[/URL] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089"]System.Windows.Forms[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox"]System.Windows.Forms.MessageBox[/URL]::[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://System.Windows.Forms:4.0.0.0:b77a5c561934e089/System.Windows.Forms.MessageBox/Show(String):System.Windows.Forms.DialogResult"]Show[/URL]([URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:1.0.5000.0:b77a5c561934e089/System.String"]string[/URL])     L_03af: pop      L_03b0: nop      L_03b1: leave.s L_03b3     L_03b3: nop      L_03b4: nop      L_03b5: ret      [COLOR=#1000a0].try[/COLOR] L_005a [COLOR=#1000a0]to[/COLOR] L_0065 [COLOR=#1000a0]catch[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object"]object[/URL] [COLOR=#1000a0]handler[/COLOR] L_0065 [COLOR=#1000a0]to[/COLOR] L_0071     [COLOR=#1000a0].try[/COLOR] L_0052 [COLOR=#1000a0]to[/COLOR] L_00d1 [COLOR=#1000a0]catch[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [COLOR=#1000a0]handler[/COLOR] L_00d1 [COLOR=#1000a0]to[/COLOR] L_00ff     [COLOR=#1000a0].try[/COLOR] L_017e [COLOR=#1000a0]to[/COLOR] L_018a [COLOR=#1000a0]catch[/COLOR] [URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Object"]object[/URL] [COLOR=#1000a0]handler[/COLOR] L_018a [COLOR=#1000a0]to[/COLOR] L_0197     [COLOR=#1000a0].try[/COLOR] L_0233 [COLOR=#1000a0]to[/COLOR] L_036a [COLOR=#1000a0]catch[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [COLOR=#1000a0]handler[/COLOR] L_036a [COLOR=#1000a0]to[/COLOR] L_0389     [COLOR=#1000a0].try[/COLOR] L_0001 [COLOR=#1000a0]to[/COLOR] L_03a0 [COLOR=#1000a0]catch[/COLOR] [[URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089"]mscorlib[/URL]][URL="http://127.0.0.1/roeder/dotnet/Default.aspx?Target=code://mscorlib:4.0.0.0:b77a5c561934e089/System.Exception"]System.Exception[/URL] [COLOR=#1000a0]handler[/COLOR] L_03a0 [COLOR=#1000a0]to[/COLOR] L_03b3 } 

[培训]内核驱动高级班,冲击BAT一流互联网大厂工 作,每周日13:00-18:00直播授课

收藏
点赞0
打赏
分享
最新回复 (3)
雪    币: 6
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
shenhualin 2014-6-4 21:52
2
0
IL 代码


.method private hidebysig static void Main() cil managed
{
.custom instance void [mscorlib]System.STAThreadAttribute::.ctor()
.entrypoint
.maxstack 4
.locals init (
[0] string str,
[1] string str2,
[2] class TaobaoSEO.update.Update update,
[3] class TaobaoSEO.update1.Update update2,
[4] class [mscorlib]System.Threading.Mutex mutex,
[5] class [System.Xml]System.Xml.XmlDocument document,
[6] string str3,
[7] class [mscorlib]System.Exception exception,
[8] string str4,
[9] string str5,
[10] class [mscorlib]Microsoft.Win32.RegistryKey key,
[11] string str6,
[12] class TaobaoSEO.chooseWay way,
[13] class [mscorlib]System.Exception exception2,
[14] string[] strArray,
[15] class [mscorlib]System.Exception exception3,
[16] bool flag)
L_0000: nop
L_0001: nop
L_0002: ldstr ""
L_0007: stloc.0
L_0008: ldstr ""
L_000d: stloc.1
L_000e: newobj instance void TaobaoSEO.update.Update::.ctor()
L_0013: stloc.2
L_0014: newobj instance void TaobaoSEO.update1.Update::.ctor()
L_0019: stloc.3
L_001a: ldc.i4.0
L_001b: ldstr "TaobaoSEO"
L_0020: ldsflda bool TaobaoSEO.Program::bCreatedNew
L_0025: newobj instance void [mscorlib]System.Threading.Mutex::.ctor(bool, string, bool&)
L_002a: stloc.s mutex
L_002c: ldsfld bool TaobaoSEO.Program::bCreatedNew
L_0031: stloc.s flag
L_0033: ldloc.s flag
L_0035: brtrue.s L_0051
L_0037: nop
L_0038: ldstr "\u7a0b\u5e8f\u5df2\u7ecf\u6267\u884c!"
L_003d: ldstr "\u63d0\u9192"
L_0042: ldc.i4.0
L_0043: ldc.i4.s 0x40
L_0045: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_004a: pop
L_004b: nop
L_004c: br L_039d
L_0051: nop
L_0052: nop
L_0053: ldc.i4.0
L_0054: call void [System]System.Net.ServicePointManager::set_Expect100Continue(bool)
L_0059: nop
L_005a: nop
L_005b: ldloc.2
L_005c: callvirt instance string TaobaoSEO.update.Update::GetVerNumerSEO()
L_0061: stloc.0
L_0062: nop
L_0063: leave.s L_0071
L_0065: pop
L_0066: nop
L_0067: ldloc.3
L_0068: callvirt instance string TaobaoSEO.update1.Update::GetVerNumerSEO()
L_006d: stloc.0
L_006e: nop
L_006f: leave.s L_0071
L_0071: nop
L_0072: ldloc.0
L_0073: ldstr ""
L_0078: call bool [mscorlib]System.String::op_Equality(string, string)
L_007d: ldc.i4.0
L_007e: ceq
L_0080: stloc.s flag
L_0082: ldloc.s flag
L_0084: brtrue.s L_009f
L_0086: nop
L_0087: ldstr "\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"
L_008c: ldstr "\u63d0\u9192"
L_0091: ldc.i4.0
L_0092: ldc.i4.s 0x40
L_0094: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0099: pop
L_009a: leave L_03b4
L_009f: newobj instance void [System.Xml]System.Xml.XmlDocument::.ctor()
L_00a4: stloc.s document
L_00a6: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_00ab: ldstr "\\Versions.xml"
L_00b0: call string [mscorlib]System.String::Concat(string, string)
L_00b5: stloc.s str3
L_00b7: ldloc.s document
L_00b9: ldloc.s str3
L_00bb: callvirt instance void [System.Xml]System.Xml.XmlDocument::Load(string)
L_00c0: nop
L_00c1: ldloc.s document
L_00c3: ldstr "VerdionsNum"
L_00c8: call string [userLib]userLib.XmlHelper::GetXmlNodeValue(class [System.Xml]System.Xml.XmlDocument, string)
L_00cd: stloc.1
L_00ce: nop
L_00cf: leave.s L_00ff
L_00d1: stloc.s exception
L_00d3: nop
L_00d4: ldloc.s exception
L_00d6: callvirt instance string [mscorlib]System.Exception::get_StackTrace()
L_00db: ldloc.s exception
L_00dd: callvirt instance string [mscorlib]System.Exception::get_Message()
L_00e2: ldstr "\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"
L_00e7: call string [mscorlib]System.String::Concat(string, string, string)
L_00ec: ldstr "\u63d0\u9192"
L_00f1: ldc.i4.0
L_00f2: ldc.i4.s 0x40
L_00f4: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_00f9: pop
L_00fa: leave L_03b4
L_00ff: nop
L_0100: ldloc.1
L_0101: ldloc.0
L_0102: call bool [mscorlib]System.String::op_Inequality(string, string)
L_0107: ldc.i4.0
L_0108: ceq
L_010a: stloc.s flag
L_010c: ldloc.s flag
L_010e: brtrue.s L_016f
L_0110: nop
L_0111: ldstr "\u8f6f\u4ef6\u5df2\u53d1\u5e03\u65b0\u7248\u672c\uff0c\u662f\u5426\u5728\u7ebf\u66f4\u65b0\uff1f"
L_0116: ldstr "\u63d0\u9192"
L_011b: ldc.i4.4
L_011c: ldc.i4.s 0x40
L_011e: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0123: ldc.i4.6
L_0124: ceq
L_0126: ldc.i4.0
L_0127: ceq
L_0129: stloc.s flag
L_012b: ldloc.s flag
L_012d: brtrue.s L_014e
L_012f: nop
L_0130: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_0135: nop
L_0136: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_013b: ldstr "SEOUpdate.exe"
L_0140: call string [mscorlib]System.IO.Path::Combine(string, string)
L_0145: call class [System]System.Diagnostics.Process [System]System.Diagnostics.Process::Start(string)
L_014a: pop
L_014b: nop
L_014c: br.s L_0169
L_014e: nop
L_014f: ldstr "\u60a8\u6ca1\u6709\u9009\u62e9\u66f4\u65b0\u7a0b\u5e8f\uff0c\u5c06\u65e0\u6cd5\u8fd0\u884c\u672c\u7a0b\u5e8f\uff01"
L_0154: ldstr "\u63d0\u9192"
L_0159: ldc.i4.0
L_015a: ldc.i4.s 0x40
L_015c: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0161: pop
L_0162: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_0167: nop
L_0168: nop
L_0169: nop
L_016a: br L_039c
L_016f: nop
L_0170: ldstr ""
L_0175: stloc.s str4
L_0177: ldstr ""
L_017c: stloc.s str5
L_017e: nop
L_017f: ldloc.2
L_0180: callvirt instance string TaobaoSEO.update.Update::GetRefNumberSEO()
L_0185: stloc.s str4
L_0187: nop
L_0188: leave.s L_0197
L_018a: pop
L_018b: nop
L_018c: ldloc.3
L_018d: callvirt instance string TaobaoSEO.update1.Update::GetRefNumberSEO()
L_0192: stloc.s str4
L_0194: nop
L_0195: leave.s L_0197
L_0197: nop
L_0198: newobj instance void [System.Xml]System.Xml.XmlDocument::.ctor()
L_019d: stloc.s document
L_019f: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_01a4: ldstr "\\Refresh.xml"
L_01a9: call string [mscorlib]System.String::Concat(string, string)
L_01ae: stloc.s str3
L_01b0: ldloc.s document
L_01b2: ldloc.s str3
L_01b4: callvirt instance void [System.Xml]System.Xml.XmlDocument::Load(string)
L_01b9: nop
L_01ba: ldloc.s document
L_01bc: ldstr "RefreshNum"
L_01c1: call string [userLib]userLib.XmlHelper::GetXmlNodeValue(class [System.Xml]System.Xml.XmlDocument, string)
L_01c6: stloc.s str5
L_01c8: ldloc.s str4
L_01ca: ldloc.s str5
L_01cc: call bool [mscorlib]System.String::op_Inequality(string, string)
L_01d1: ldc.i4.0
L_01d2: ceq
L_01d4: stloc.s flag
L_01d6: ldloc.s flag
L_01d8: brtrue.s L_01fc
L_01da: nop
L_01db: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_01e0: nop
L_01e1: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_01e6: ldstr "SEORefresh.exe"
L_01eb: call string [mscorlib]System.IO.Path::Combine(string, string)
L_01f0: call class [System]System.Diagnostics.Process [System]System.Diagnostics.Process::Start(string)
L_01f5: pop
L_01f6: nop
L_01f7: br L_039b
L_01fc: nop
L_01fd: ldnull
L_01fe: ldftn void TaobaoSEO.Program::Application_ThreadException(object, class [System]System.Threading.ThreadExceptionEventArgs)
L_0204: newobj instance void [System]System.Threading.ThreadExceptionEventHandler::.ctor(object, native int)
L_0209: call void [System.Windows.Forms]System.Windows.Forms.Application::add_ThreadException(class [System]System.Threading.ThreadExceptionEventHandler)
L_020e: nop
L_020f: call class [mscorlib]System.AppDomain [mscorlib]System.AppDomain::get_CurrentDomain()
L_0214: ldnull
L_0215: ldftn void TaobaoSEO.Program::CurrentDomain_UnhandledException(object, class [mscorlib]System.UnhandledExceptionEventArgs)
L_021b: newobj instance void [mscorlib]System.UnhandledExceptionEventHandler::.ctor(object, native int)
L_0220: callvirt instance void [mscorlib]System.AppDomain::add_UnhandledException(class [mscorlib]System.UnhandledExceptionEventHandler)
L_0225: nop
L_0226: call void [System.Windows.Forms]System.Windows.Forms.Application::EnableVisualStyles()
L_022b: nop
L_022c: ldc.i4.0
L_022d: call void [System.Windows.Forms]System.Windows.Forms.Application::SetCompatibleTextRenderingDefault(bool)
L_0232: nop
L_0233: nop
L_0234: ldsfld class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.Registry::LocalMachine
L_0239: ldstr "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\SaveWay"
L_023e: ldc.i4.0
L_023f: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::OpenSubKey(string, bool)
L_0244: stloc.s key
L_0246: ldstr ""
L_024b: stloc.s str6
L_024d: ldloc.s key
L_024f: ldnull
L_0250: ceq
L_0252: stloc.s flag
L_0254: ldloc.s flag
L_0256: brtrue.s L_026f
L_0258: nop
L_0259: ldloc.s key
L_025b: ldstr "\u5907\u4efd\u8def\u5f84"
L_0260: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue(string)
L_0265: callvirt instance string [mscorlib]System.Object::ToString()
L_026a: stloc.s str6
L_026c: nop
L_026d: br.s L_0296
L_026f: nop
L_0270: newobj instance void TaobaoSEO.chooseWay::.ctor()
L_0275: stloc.s way
L_0277: ldloc.s way
L_0279: callvirt instance valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.Form::ShowDialog()
L_027e: ldc.i4.1
L_027f: ceq
L_0281: ldc.i4.0
L_0282: ceq
L_0284: stloc.s flag
L_0286: ldloc.s flag
L_0288: brtrue.s L_0295
L_028a: nop
L_028b: ldloc.s way
L_028d: callvirt instance string TaobaoSEO.chooseWay::get_paths()
L_0292: stloc.s str6
L_0294: nop
L_0295: nop
L_0296: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_029b: ldstr "\\DB"
L_02a0: call string [mscorlib]System.String::Concat(string, string)
L_02a5: call bool [mscorlib]System.IO.Directory::Exists(string)
L_02aa: stloc.s flag
L_02ac: ldloc.s flag
L_02ae: brtrue.s L_0309
L_02b0: nop
L_02b1: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02b6: ldstr "\\DB"
L_02bb: call string [mscorlib]System.String::Concat(string, string)
L_02c0: call class [mscorlib]System.IO.DirectoryInfo [mscorlib]System.IO.Directory::CreateDirectory(string)
L_02c5: pop
L_02c6: ldloc.s str6
L_02c8: ldstr "pagedata130722.db"
L_02cd: call string [mscorlib]System.String::Concat(string, string)
L_02d2: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02d7: ldstr "\\DB\\pagedata130722.db"
L_02dc: call string [mscorlib]System.String::Concat(string, string)
L_02e1: call void [mscorlib]System.IO.File::Copy(string, string)
L_02e6: nop
L_02e7: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02ec: ldstr "\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"
L_02f1: call string [mscorlib]System.String::Concat(string, string)
L_02f6: ldstr "\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"
L_02fb: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_Default()
L_0300: call void [mscorlib]System.IO.File::WriteAllText(string, string, class [mscorlib]System.Text.Encoding)
L_0305: nop
L_0306: nop
L_0307: br.s L_0367
L_0309: nop
L_030a: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_030f: ldstr "\\DB\\pagedata130722.db"
L_0314: call string [mscorlib]System.String::Concat(string, string)
L_0319: call bool [mscorlib]System.IO.File::Exists(string)
L_031e: stloc.s flag
L_0320: ldloc.s flag
L_0322: brtrue.s L_0366
L_0324: nop
L_0325: ldloc.s str6
L_0327: ldstr "pagedata130722.db"
L_032c: call string [mscorlib]System.String::Concat(string, string)
L_0331: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_0336: ldstr "\\DB\\pagedata130722.db"
L_033b: call string [mscorlib]System.String::Concat(string, string)
L_0340: call void [mscorlib]System.IO.File::Copy(string, string)
L_0345: nop
L_0346: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_034b: ldstr "\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"
L_0350: call string [mscorlib]System.String::Concat(string, string)
L_0355: ldstr "\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"
L_035a: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_Default()
L_035f: call void [mscorlib]System.IO.File::WriteAllText(string, string, class [mscorlib]System.Text.Encoding)
L_0364: nop
L_0365: nop
L_0366: nop
L_0367: nop
L_0368: leave.s L_0389
L_036a: stloc.s exception2
L_036c: nop
L_036d: ldloc.s exception2
L_036f: callvirt instance string [mscorlib]System.Exception::get_Message()
L_0374: ldloc.s exception2
L_0376: callvirt instance string [mscorlib]System.Exception::get_StackTrace()
L_037b: call string [mscorlib]System.String::Concat(string, string)
L_0380: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
L_0385: pop
L_0386: nop
L_0387: leave.s L_0389
L_0389: nop
L_038a: ldnull
L_038b: stloc.s strArray
L_038d: ldloc.s strArray
L_038f: newobj instance void TaobaoSEO.RadForm1::.ctor(string[])
L_0394: call void [System.Windows.Forms]System.Windows.Forms.Application::Run(class [System.Windows.Forms]System.Windows.Forms.Form)
L_0399: nop
L_039a: nop
L_039b: nop
L_039c: nop
L_039d: nop
L_039e: leave.s L_03b3
L_03a0: stloc.s exception3
L_03a2: nop
L_03a3: ldloc.s exception3
L_03a5: callvirt instance string [mscorlib]System.Object::ToString()
L_03aa: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
L_03af: pop
L_03b0: nop
L_03b1: leave.s L_03b3
L_03b3: nop
L_03b4: nop
L_03b5: ret
.try L_005a to L_0065 catch object handler L_0065 to L_0071
.try L_0052 to L_00d1 catch [mscorlib]System.Exception handler L_00d1 to L_00ff
.try L_017e to L_018a catch object handler L_018a to L_0197
.try L_0233 to L_036a catch [mscorlib]System.Exception handler L_036a to L_0389
.try L_0001 to L_03a0 catch [mscorlib]System.Exception handler L_03a0 to L_03b3
}




.method private hidebysig static void Main() cil managed
{
.custom instance void [mscorlib]System.STAThreadAttribute::.ctor()
.entrypoint
.maxstack 4
.locals init (
[0] string str,
[1] string str2,
[2] class TaobaoSEO.update.Update update,
[3] class TaobaoSEO.update1.Update update2,
[4] class [mscorlib]System.Threading.Mutex mutex,
[5] class [System.Xml]System.Xml.XmlDocument document,
[6] string str3,
[7] class [mscorlib]System.Exception exception,
[8] string str4,
[9] string str5,
[10] class [mscorlib]Microsoft.Win32.RegistryKey key,
[11] string str6,
[12] class TaobaoSEO.chooseWay way,
[13] class [mscorlib]System.Exception exception2,
[14] string[] strArray,
[15] class [mscorlib]System.Exception exception3,
[16] bool flag)
L_0000: nop
L_0001: nop
L_0002: ldstr ""
L_0007: stloc.0
L_0008: ldstr ""
L_000d: stloc.1
L_000e: newobj instance void TaobaoSEO.update.Update::.ctor()
L_0013: stloc.2
L_0014: newobj instance void TaobaoSEO.update1.Update::.ctor()
L_0019: stloc.3
L_001a: ldc.i4.0
L_001b: ldstr "TaobaoSEO"
L_0020: ldsflda bool TaobaoSEO.Program::bCreatedNew
L_0025: newobj instance void [mscorlib]System.Threading.Mutex::.ctor(bool, string, bool&)
L_002a: stloc.s mutex
L_002c: ldsfld bool TaobaoSEO.Program::bCreatedNew
L_0031: stloc.s flag
L_0033: ldloc.s flag
L_0035: brtrue.s L_0051
L_0037: nop
L_0038: ldstr "\u7a0b\u5e8f\u5df2\u7ecf\u6267\u884c!"
L_003d: ldstr "\u63d0\u9192"
L_0042: ldc.i4.0
L_0043: ldc.i4.s 0x40
L_0045: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_004a: pop
L_004b: nop
L_004c: br L_039d
L_0051: nop
L_0052: nop
L_0053: ldc.i4.0
L_0054: call void [System]System.Net.ServicePointManager::set_Expect100Continue(bool)
L_0059: nop
L_005a: nop
L_005b: ldloc.2
L_005c: callvirt instance string TaobaoSEO.update.Update::GetVerNumerSEO()
L_0061: stloc.0
L_0062: nop
L_0063: leave.s L_0071
L_0065: pop
L_0066: nop
L_0067: ldloc.3
L_0068: callvirt instance string TaobaoSEO.update1.Update::GetVerNumerSEO()
L_006d: stloc.0
L_006e: nop
L_006f: leave.s L_0071
L_0071: nop
L_0072: ldloc.0
L_0073: ldstr ""
L_0078: call bool [mscorlib]System.String::op_Equality(string, string)
L_007d: ldc.i4.0
L_007e: ceq
L_0080: stloc.s flag
L_0082: ldloc.s flag
L_0084: brtrue.s L_009f
L_0086: nop
L_0087: ldstr "\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"
L_008c: ldstr "\u63d0\u9192"
L_0091: ldc.i4.0
L_0092: ldc.i4.s 0x40
L_0094: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0099: pop
L_009a: leave L_03b4
L_009f: newobj instance void [System.Xml]System.Xml.XmlDocument::.ctor()
L_00a4: stloc.s document
L_00a6: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_00ab: ldstr "\\Versions.xml"
L_00b0: call string [mscorlib]System.String::Concat(string, string)
L_00b5: stloc.s str3
L_00b7: ldloc.s document
L_00b9: ldloc.s str3
L_00bb: callvirt instance void [System.Xml]System.Xml.XmlDocument::Load(string)
L_00c0: nop
L_00c1: ldloc.s document
L_00c3: ldstr "VerdionsNum"
L_00c8: call string [userLib]userLib.XmlHelper::GetXmlNodeValue(class [System.Xml]System.Xml.XmlDocument, string)
L_00cd: stloc.1
L_00ce: nop
L_00cf: leave.s L_00ff
L_00d1: stloc.s exception
L_00d3: nop
L_00d4: ldloc.s exception
L_00d6: callvirt instance string [mscorlib]System.Exception::get_StackTrace()
L_00db: ldloc.s exception
L_00dd: callvirt instance string [mscorlib]System.Exception::get_Message()
L_00e2: ldstr "\u65e0\u6cd5\u83b7\u53d6\u670d\u52a1\u4fe1\u606f\uff0c\u8bf7\u68c0\u6d4b\u662f\u5426\u8054\u7f51"
L_00e7: call string [mscorlib]System.String::Concat(string, string, string)
L_00ec: ldstr "\u63d0\u9192"
L_00f1: ldc.i4.0
L_00f2: ldc.i4.s 0x40
L_00f4: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_00f9: pop
L_00fa: leave L_03b4
L_00ff: nop
L_0100: ldloc.1
L_0101: ldloc.0
L_0102: call bool [mscorlib]System.String::op_Inequality(string, string)
L_0107: ldc.i4.0
L_0108: ceq
L_010a: stloc.s flag
L_010c: ldloc.s flag
L_010e: brtrue.s L_016f
L_0110: nop
L_0111: ldstr "\u8f6f\u4ef6\u5df2\u53d1\u5e03\u65b0\u7248\u672c\uff0c\u662f\u5426\u5728\u7ebf\u66f4\u65b0\uff1f"
L_0116: ldstr "\u63d0\u9192"
L_011b: ldc.i4.4
L_011c: ldc.i4.s 0x40
L_011e: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0123: ldc.i4.6
L_0124: ceq
L_0126: ldc.i4.0
L_0127: ceq
L_0129: stloc.s flag
L_012b: ldloc.s flag
L_012d: brtrue.s L_014e
L_012f: nop
L_0130: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_0135: nop
L_0136: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_013b: ldstr "SEOUpdate.exe"
L_0140: call string [mscorlib]System.IO.Path::Combine(string, string)
L_0145: call class [System]System.Diagnostics.Process [System]System.Diagnostics.Process::Start(string)
L_014a: pop
L_014b: nop
L_014c: br.s L_0169
L_014e: nop
L_014f: ldstr "\u60a8\u6ca1\u6709\u9009\u62e9\u66f4\u65b0\u7a0b\u5e8f\uff0c\u5c06\u65e0\u6cd5\u8fd0\u884c\u672c\u7a0b\u5e8f\uff01"
L_0154: ldstr "\u63d0\u9192"
L_0159: ldc.i4.0
L_015a: ldc.i4.s 0x40
L_015c: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string, string, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxButtons, valuetype [System.Windows.Forms]System.Windows.Forms.MessageBoxIcon)
L_0161: pop
L_0162: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_0167: nop
L_0168: nop
L_0169: nop
L_016a: br L_039c
L_016f: nop
L_0170: ldstr ""
L_0175: stloc.s str4
L_0177: ldstr ""
L_017c: stloc.s str5
L_017e: nop
L_017f: ldloc.2
L_0180: callvirt instance string TaobaoSEO.update.Update::GetRefNumberSEO()
L_0185: stloc.s str4
L_0187: nop
L_0188: leave.s L_0197
L_018a: pop
L_018b: nop
L_018c: ldloc.3
L_018d: callvirt instance string TaobaoSEO.update1.Update::GetRefNumberSEO()
L_0192: stloc.s str4
L_0194: nop
L_0195: leave.s L_0197
L_0197: nop
L_0198: newobj instance void [System.Xml]System.Xml.XmlDocument::.ctor()
L_019d: stloc.s document
L_019f: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_01a4: ldstr "\\Refresh.xml"
L_01a9: call string [mscorlib]System.String::Concat(string, string)
L_01ae: stloc.s str3
L_01b0: ldloc.s document
L_01b2: ldloc.s str3
L_01b4: callvirt instance void [System.Xml]System.Xml.XmlDocument::Load(string)
L_01b9: nop
L_01ba: ldloc.s document
L_01bc: ldstr "RefreshNum"
L_01c1: call string [userLib]userLib.XmlHelper::GetXmlNodeValue(class [System.Xml]System.Xml.XmlDocument, string)
L_01c6: stloc.s str5
L_01c8: ldloc.s str4
L_01ca: ldloc.s str5
L_01cc: call bool [mscorlib]System.String::op_Inequality(string, string)
L_01d1: ldc.i4.0
L_01d2: ceq
L_01d4: stloc.s flag
L_01d6: ldloc.s flag
L_01d8: brtrue.s L_01fc
L_01da: nop
L_01db: call void [System.Windows.Forms]System.Windows.Forms.Application::Exit()
L_01e0: nop
L_01e1: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_01e6: ldstr "SEORefresh.exe"
L_01eb: call string [mscorlib]System.IO.Path::Combine(string, string)
L_01f0: call class [System]System.Diagnostics.Process [System]System.Diagnostics.Process::Start(string)
L_01f5: pop
L_01f6: nop
L_01f7: br L_039b
L_01fc: nop
L_01fd: ldnull
L_01fe: ldftn void TaobaoSEO.Program::Application_ThreadException(object, class [System]System.Threading.ThreadExceptionEventArgs)
L_0204: newobj instance void [System]System.Threading.ThreadExceptionEventHandler::.ctor(object, native int)
L_0209: call void [System.Windows.Forms]System.Windows.Forms.Application::add_ThreadException(class [System]System.Threading.ThreadExceptionEventHandler)
L_020e: nop
L_020f: call class [mscorlib]System.AppDomain [mscorlib]System.AppDomain::get_CurrentDomain()
L_0214: ldnull
L_0215: ldftn void TaobaoSEO.Program::CurrentDomain_UnhandledException(object, class [mscorlib]System.UnhandledExceptionEventArgs)
L_021b: newobj instance void [mscorlib]System.UnhandledExceptionEventHandler::.ctor(object, native int)
L_0220: callvirt instance void [mscorlib]System.AppDomain::add_UnhandledException(class [mscorlib]System.UnhandledExceptionEventHandler)
L_0225: nop
L_0226: call void [System.Windows.Forms]System.Windows.Forms.Application::EnableVisualStyles()
L_022b: nop
L_022c: ldc.i4.0
L_022d: call void [System.Windows.Forms]System.Windows.Forms.Application::SetCompatibleTextRenderingDefault(bool)
L_0232: nop
L_0233: nop
L_0234: ldsfld class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.Registry::LocalMachine
L_0239: ldstr "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\SaveWay"
L_023e: ldc.i4.0
L_023f: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::OpenSubKey(string, bool)
L_0244: stloc.s key
L_0246: ldstr ""
L_024b: stloc.s str6
L_024d: ldloc.s key
L_024f: ldnull
L_0250: ceq
L_0252: stloc.s flag
L_0254: ldloc.s flag
L_0256: brtrue.s L_026f
L_0258: nop
L_0259: ldloc.s key
L_025b: ldstr "\u5907\u4efd\u8def\u5f84"
L_0260: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue(string)
L_0265: callvirt instance string [mscorlib]System.Object::ToString()
L_026a: stloc.s str6
L_026c: nop
L_026d: br.s L_0296
L_026f: nop
L_0270: newobj instance void TaobaoSEO.chooseWay::.ctor()
L_0275: stloc.s way
L_0277: ldloc.s way
L_0279: callvirt instance valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.Form::ShowDialog()
L_027e: ldc.i4.1
L_027f: ceq
L_0281: ldc.i4.0
L_0282: ceq
L_0284: stloc.s flag
L_0286: ldloc.s flag
L_0288: brtrue.s L_0295
L_028a: nop
L_028b: ldloc.s way
L_028d: callvirt instance string TaobaoSEO.chooseWay::get_paths()
L_0292: stloc.s str6
L_0294: nop
L_0295: nop
L_0296: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_029b: ldstr "\\DB"
L_02a0: call string [mscorlib]System.String::Concat(string, string)
L_02a5: call bool [mscorlib]System.IO.Directory::Exists(string)
L_02aa: stloc.s flag
L_02ac: ldloc.s flag
L_02ae: brtrue.s L_0309
L_02b0: nop
L_02b1: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02b6: ldstr "\\DB"
L_02bb: call string [mscorlib]System.String::Concat(string, string)
L_02c0: call class [mscorlib]System.IO.DirectoryInfo [mscorlib]System.IO.Directory::CreateDirectory(string)
L_02c5: pop
L_02c6: ldloc.s str6
L_02c8: ldstr "pagedata130722.db"
L_02cd: call string [mscorlib]System.String::Concat(string, string)
L_02d2: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02d7: ldstr "\\DB\\pagedata130722.db"
L_02dc: call string [mscorlib]System.String::Concat(string, string)
L_02e1: call void [mscorlib]System.IO.File::Copy(string, string)
L_02e6: nop
L_02e7: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_02ec: ldstr "\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"
L_02f1: call string [mscorlib]System.String::Concat(string, string)
L_02f6: ldstr "\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"
L_02fb: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_Default()
L_0300: call void [mscorlib]System.IO.File::WriteAllText(string, string, class [mscorlib]System.Text.Encoding)
L_0305: nop
L_0306: nop
L_0307: br.s L_0367
L_0309: nop
L_030a: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_030f: ldstr "\\DB\\pagedata130722.db"
L_0314: call string [mscorlib]System.String::Concat(string, string)
L_0319: call bool [mscorlib]System.IO.File::Exists(string)
L_031e: stloc.s flag
L_0320: ldloc.s flag
L_0322: brtrue.s L_0366
L_0324: nop
L_0325: ldloc.s str6
L_0327: ldstr "pagedata130722.db"
L_032c: call string [mscorlib]System.String::Concat(string, string)
L_0331: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_0336: ldstr "\\DB\\pagedata130722.db"
L_033b: call string [mscorlib]System.String::Concat(string, string)
L_0340: call void [mscorlib]System.IO.File::Copy(string, string)
L_0345: nop
L_0346: call string [System.Windows.Forms]System.Windows.Forms.Application::get_StartupPath()
L_034b: ldstr "\\DB\\\u8bf7\u52ff\u5220\u9664\u8be5\u6587\u4ef6.txt"
L_0350: call string [mscorlib]System.String::Concat(string, string)
L_0355: ldstr "\'pagedata130722.db\'\u6587\u4ef6\u4e3a\u7528\u6237\u64cd\u4f5c\u6570\u636e\u5e93\u6587\u4ef6\uff0c\u7528\u6237\u4e0d\u8981\u8f7b\u6613\u5220\u9664\uff0c\u5220\u9664\u540e\u9020\u6210\u7684\u540e\u679c\u7531\u7528\u6237\u81ea\u884c\u8d1f\u8d23"
L_035a: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_Default()
L_035f: call void [mscorlib]System.IO.File::WriteAllText(string, string, class [mscorlib]System.Text.Encoding)
L_0364: nop
L_0365: nop
L_0366: nop
L_0367: nop
L_0368: leave.s L_0389
L_036a: stloc.s exception2
L_036c: nop
L_036d: ldloc.s exception2
L_036f: callvirt instance string [mscorlib]System.Exception::get_Message()
L_0374: ldloc.s exception2
L_0376: callvirt instance string [mscorlib]System.Exception::get_StackTrace()
L_037b: call string [mscorlib]System.String::Concat(string, string)
L_0380: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
L_0385: pop
L_0386: nop
L_0387: leave.s L_0389
L_0389: nop
L_038a: ldnull
L_038b: stloc.s strArray
L_038d: ldloc.s strArray
L_038f: newobj instance void TaobaoSEO.RadForm1::.ctor(string[])
L_0394: call void [System.Windows.Forms]System.Windows.Forms.Application::Run(class [System.Windows.Forms]System.Windows.Forms.Form)
L_0399: nop
L_039a: nop
L_039b: nop
L_039c: nop
L_039d: nop
L_039e: leave.s L_03b3
L_03a0: stloc.s exception3
L_03a2: nop
L_03a3: ldloc.s exception3
L_03a5: callvirt instance string [mscorlib]System.Object::ToString()
L_03aa: call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
L_03af: pop
L_03b0: nop
L_03b1: leave.s L_03b3
L_03b3: nop
L_03b4: nop
L_03b5: ret
.try L_005a to L_0065 catch object handler L_0065 to L_0071
.try L_0052 to L_00d1 catch [mscorlib]System.Exception handler L_00d1 to L_00ff
.try L_017e to L_018a catch object handler L_018a to L_0197
.try L_0233 to L_036a catch [mscorlib]System.Exception handler L_036a to L_0389
.try L_0001 to L_03a0 catch [mscorlib]System.Exception handler L_03a0 to L_03b3
}


雪    币: 134
活跃值: (11)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
XXxiaofeng 2014-6-5 18:08
3
0
..阅..
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
我是大灰 2014-8-2 16:27
4
0
为什么不用不用Reflexil插件呢。
游客
登录 | 注册 方可回帖
返回