zmcy2003 发表于 2022-1-9 12:58

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))这种样式,谢谢赐教!!

正己 发表于 2022-1-9 23:37

右键选择编辑方法
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]
查看完整版本: dnspy如何改逻辑运算符