Is there a way to easily find assemblies?
How to programmatically determine if a file is an assemblyCall the GetAssemblyName method, passing the full path to the file and the name of the file you are testing.If a BadImageFormatException is thrown, the file is not an assembly.
How to programmatically determine if a file is an assembly
Call the GetAssemblyName method, passing the full path to the file and the name of the file you are testing.
If a BadImageFormatException is thrown, the file is not an assembly.
http://msdn.microsoft.com/en-us/library/ms173100.aspx
In addition to Jeff's suggestion, there seems to be a method for checking assembly compatibility without excluding an excluded document: http://www.codeguru.com/forum/showthread.php?t=424454
, .NET/ , , ASCI "BSJB" Framework, DLL/EXE., , / , Framework.
, .NET/ , , ASCI "BSJB" Framework, DLL/EXE.
, , / , Framework.
Call AssemblyName.GetAssemblyNameand see if it throws an exception.
AssemblyName.GetAssemblyName
Source: https://habr.com/ru/post/1722504/More articles:Interoperability between C # and Java using web services without Java EE application server? - javaWhy does SQL Update Top seem to reduce locks even when no records are updated? - sqlA few PHP warnings in XSLTProcessor :: importStylesheet () - xmlsizeof (* this) in the header constructor implementation only - c ++What is a good and easy way to back up SVN repo to an FTP server? - svnHow to relate the height of the Flex component to the height of the browser window? - user-interfaceIn PowerPoint VBA, how to push all existing shapes in a window (not just one)? - setie7 and ie8 ignore "margin: 0px auto;" - internet-explorer-8Lazy stream for C # /. NET - c #SQL row not breaking rows in gridview - sql-serverAll Articles