c# - Programmatically To check dll exists in Gac or not.If so display it in grid -


I have a list of DLLs in a folder, whether I want to check a DLL for an application. If so, then I want to add that app's name to the grid. Anyone can tell how to program it in advance thanks

Do an assembly. Load and check GlobalAssemblyCache

  TestAssembly = assembly. Loadfrum (dllname); If (! TestAssembly.GlobalAssemblyCache) is not in {// gac}  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -