|
Encrypt |
Top Previous Next |
|
namespace IntelliProtectorService.attributes { internal class Encrypt : Attribute { } }
Add this attribute to allow IntelliProtector to encrypt the function during protection.
Example
[IntelliProtectorService.attributes.Encrypt] public void SortArray() { int[] array = new int[] { 10, 2, 3, 101, 3, 33, 7, 1 }; Array.Sort(array); MessageBox.Show("Array is sorted"); }
After protection of the application by IntelliProtector code analyzing tools will show such code:
|
| Copyright © 2011 intelliprotector.com |