Understanding the difference and implications of the /MT and /MD compiler options
In Visual Studio, I can compile my code using /MT or /MD [MSDN]. I think I don’t understand all the implications that those options have.
MSVS 2022 Professional, dll development
I have two instances of Microsoft Visual Studio 2022 Professional open, one contains the DLL
I’m working on in c# the other contains the application that is using the DLL
.
Get all used methods in a project from an external *.dll
I need to analyze the usage of a specific library across 29 C# projects. This library is included via a *.dll file. The analysis should identify which methods from the library are used in each project.