I need to check if an assembly is loaded when running my code.
I need to check if an assembly is loaded when running my code and to convert it to bool because if the users doesn´t have the .dll installed the application crashes. I need something like that:
if ( // assembly is loaded = true )
{
//run something
}