dnspy如何改逻辑运算符
using System;namespace OperatorsAppl
{
class Program
{
static void Main(string[] args)
{
bool a = true;
bool b = true;
if (a && b)
{
Console.WriteLine("Line 1 - 条件为真");
}
}
}
}
请问大佬在dnspy 中如何将if (a && b)改这if (!(a && b))这种样式,谢谢赐教!! 右键选择编辑方法
https://cdn.jsdelivr.net/gh/ZJ595/Picgo-img@main/img/20220109233511.png
然后直接修改,最后编译即可
https://cdn.jsdelivr.net/gh/ZJ595/Picgo-img@main/img/20220109233629.png
页:
[1]