Hello
I'm using NetReactor to obfuscate a Windows Service made witch C#, the Project is obfuscate very good but with the Properties dosen't work.
Properties
public int ID { Get; Set; }
The name of the Properties is not obfuscate
Any ideas
Thanks
Hello
I'm using NetReactor to obfuscate a Windows Service made witch C#, the Project is obfuscate very good but with the Properties dosen't work.
Properties
public int ID { Get; Set; }
The name of the Properties is not obfuscate
Any ideas
Thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Emily FosterPosted Apr 30, 2025, 4:56 AM
Hello! It sounds like you are encountering an issue with the obfuscation of properties in your Windows Service project using Net Reactor. Let's delve into this matter.
In C#, properties, such as the "public int ID { get; set; }," are essential for encapsulating and accessing data within classes. When obfuscating your code, it's crucial that these properties are properly handled to maintain the functionality of your application.
One common reason why property names may not be obfuscated could be due to how Net Reactor treats properties. In some cases, obfuscation tools may not obfuscate the actual property names but instead focus on renaming the underlying methods that make up the property (e.g., the getter and setter methods). This can sometimes lead to the property names remaining in a more readable form to maintain code functionality.
To address this issue, you may want to explore additional configuration settings in Net Reactor or consider renaming your properties in a way that aligns with the obfuscation process. Ensuring that the getter and setter methods are properly obfuscated can also enhance the overall protection of your code.
If you have specific requirements or constraints related to property obfuscation, adjusting the obfuscation settings or seeking support from the Net Reactor documentation or community forums could provide further insights or solutions.
I hope this sheds some light on the property obfuscation issue you are facing. If you have any more details or questions, feel free to share. I'm here to help!