Differences came from debug and release
C#
4
Posts
3
Posters
0
Views
1
Watching
-
When you compile in debug mode, it creates debug information so that you can use the debugger. Also you get more information in the error messages. --- b { font-weight: normal; }
-
Additionally to the debug information no optimizations are done. Some optimizations would make it hard to debug your code (i.E. inlining, removal of unused variables, loop-unwinding etc.). In release mode those optimizations make your program run faster (not always notable, depends on your design and what your program does.) /cadi 24 hours is not enough