简体   繁体   中英

System.Reflection

let us consider im having an application AAA. From my application im loaded an assembly named as BBB.When im in BBB path, i need to get the AAA Assembly name at run time. how to accomplish this? Thanks in advance

The call to:

Assembly.GetExecutingAssembly()

will return the assembly it's written in (the currently executing assembly). Or in your case, maybe you'll need:

Assembly.GetEntryAssembly()

to get the executable assembly (the assembly that the application was started with).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM