Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 Fody 或其他框架以非虚拟方法更改代码?我不想模拟它,而是在编译时更改生成的程序集中的代码。
前任。我想改:
private int SomeInt() { return 1; }
至
private int SomeInt() { return 42; }
在没有嘲笑它的情况下组装。