Your app is slow in Debug, fast in Release — or the opposite.
Why this happens
Debug disables JIT optimizations, inlining, and adds tracking hooks.
Why it matters
You may “fix” a problem that doesn’t exist in production.
Life-saving rule
Always profile Release build + Attach to Process.
