Using Smart Assemble but application performance degrading after obfuscating the application

We are working on a project where data is queried from a database and written to a text file. We use an MSMQ-based approach, where the data is first enqueued from a datatable in a winform application and then dequeued in a console application to be written to a text file. The issue we are encountering is a significant performance degradation when building the code with obfuscation. For example, when running a trade generator at 100 trades per second for 30 minutes, the obfuscated build results in a 14 minute delay to write approximately 1 lakh trades. In contrast, with the same code built without obfuscation, the delay is only 2 minutes for writing around 2 lakh trades over the same duration. Could you please provide insight into why the application's performance is significantly slower when using the obfuscated release compared to the normal release. How can we solve this issue?
Sign In or Register to comment.