I’m using Eazfuscator.NET to obfuscate my code..
Now i want to make sure my strings are really impossible to understand by humans.
here is what it shows for me strings:
private static string \u0002 = \u0006.\u0002(107107532);
private static string \u0003 = \u0006.\u0002(107107553);
Can someone understand what this means?
Maybe it’s Hexdecimal values or something?
\u000#is an encoded unicode character.\u0002\is a static class and\u0002after that is one of it’s methods.There’s no surefire way to fully obfuscate your code. Anyone determined enough to access it will spend as much time needed to decompile it.