What\'s the easiest way to check programmatically if an assembly is registered in the GAC (Global Assembly Cache) on the local machine? Is there some easy to use .NET API w
Check if CodeBase is null
if (asm.CodeBase == null) { // IN GAC }