Is it possible to read the GUID from the assembly without actually loading it into the current application domain.
Typically, Assembly.Load loads the DLL into the application domain. I just want to read the meaning.
GUID Description
'The following GUID is for the ID of the typelib
' if this project is exposed to COM
<Assembly: Guid("DEDDE61CD-928E-4ACD-8C25-3B8577284819")>
main thing: I do not want to lock the file so that there are no errors. "Another process is accessing the file error."
source
share