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
Post a Comment