In the code there is a line like this:
Company.Security.Logs.LogEvent myLog = null;
Now in another project I want to do the same but I don’t know which “reference” should I add to my project? So how do I know in which of the references in this project we have this Security class?
Right click on the class name in Visual Studio and Go to Declaration. This will take you either to a DLL view or code view, either of which will tell you which assembly the class lives in.