.net - How can I analize Assembly file to get its corflags? -
I need to write code which reads corflags of a .NET assembly without loading through reflection.
It takes a long time to load the assembly relatively, so I am searching for something that opens it as a stream and unlines the binary stream.
Where do I get information about the assembly binary metadata stoop? Is there a code snippet available? According to
thanks Sarah
there are corflags that you get in the .NET Framework SDK , Which is defined in IMHE CORP. You can read through the assembly and choose the information by including the correct type def.
Comments
Post a Comment