The garbage collector in .net behaves differently when compiling an application using debug or release mode. How does the garbage collector behave when mixing this in an application. For example, the application itself (.exe) is compiled using release mode and some libraries (assemblies) are compiled in debug mode. Does the garbage collector "decide" this on initialization?
Thanks!