In your ".svc" file, if you write your service as embedded code or embed the service in the App_Code folder "and enable debug mode, this will affect performance.
As a general rule, always set debug="false" before deploying to production. If debugging mode is enabled, application performance may be reduced.
In release mode, debugging symbols are not baked into the assembly, so you cannot debug it using Visual Studio.NET or other source code debuggers. What is great is that the code is also optimized during this build operation.
Min min
source share