当前位置: 首页>>代码示例>>C#>>正文


C# TypeDef.ToString方法代码示例

本文整理汇总了C#中TypeDef.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# TypeDef.ToString方法的具体用法?C# TypeDef.ToString怎么用?C# TypeDef.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TypeDef的用法示例。


在下文中一共展示了TypeDef.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetDecryptionCall

        private void GetDecryptionCall(ModuleDef Module, TypeDef typedecryption)
        {
            resourcename = textBox2.Text;
            filename = textBox1.Text;
            foreach (TypeDef type in Module.Types)
            {
                foreach (MethodDef method in type.Methods)
                {
                    if (method.HasBody == null)
                        continue;
                    CilBody body = method.Body;
                    body.SimplifyBranches();
                    int x = 0;
                    while (x < body.Instructions.Count)
                    {
                        if (body.Instructions[x].OpCode == OpCodes.Call)
                        {
                            if (body.Instructions[x].Operand.ToString().ToLower().Contains(typedecryption.ToString().ToLower()))
                            {
                                try
                                {
                                    var num1 = body.Instructions[x - 3].Operand.ToString();
                                    int a = int.Parse(num1);
                                    int num2 = 1;
                                    num2 = num2 + a;
                                    var parameterint = num2;
                                    string z = decrypt.decryptor(parameterint, resourcename, filename);

                                    body.Instructions[x].OpCode = OpCodes.Ldstr;
                                    body.Instructions[x].Operand = z;
                                    body.Instructions.RemoveAt(x - 1);
                                    body.Instructions.RemoveAt(x - 2);
                                    body.Instructions.RemoveAt(x - 3);
                                    DeobedStringNumber = DeobedStringNumber + 1;
                                    x++;
                                }
                                catch (Exception e)
                                {
                                    //MessageBox.Show(e.ToString());
                                    x++;
                                }
                                
                            }
                        }
                        x++;
                    }
                }
            }
        }
开发者ID:destnity,项目名称:Dotwall-deobfuscator,代码行数:49,代码来源:Form1.cs


注:本文中的TypeDef.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。