Constant Encryption
⏩Performance: Medium 🔐Potency: High 🧠Resilience: High
Understanding the protection
Before Obfuscation:
public static void Main(string[] args) {
int i, sum = 0, n;
Console.Write("Enter the Nth Number : ");
n = int.Parse(Console.ReadLine());
for (i = 0; i <= n; i++) {
sum = sum + i;
}
Console.WriteLine("\nSum of N Numbers : " + sum);
Console.ReadLine();
}After Obfuscation:
Last updated