本文整理汇总了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++;
}
}
}
}