Code Inlining
Before Inlining:
public static void MyMethod(string parameter) {
var number = Sum(3, 2);
}
public static int Sum(int a, int b) {
return a + b;
}After Inlining:
public static void MyMethod(string parameter) {
var number = 3 + 2;
}🤔 When to use Inlining on obfuscation?
⚠️ Is it fine to inline everything?
Last updated