Anti Tamper

This protection will encrypt all method bodies in your Assembly so that the method code is unreadable. Any tampering detected will automatically remove your file from the disk.

Before Obfuscation
protected override void Dispose(bool disposing)
		{
			bool flag = disposing && this.components != null;
			if (flag)
			{
				this.components.Dispose();
			}
			base.Dispose(disposing);
		}
After Obfuscation
protected override void Dispose(bool disposing)
		{
		}

Last updated

Was this helpful?