vote up 0 vote down star
1

How would one use .net reflection to determine the type of the executing assembly, by type I mean dll or exe. Currently its possible to do something like:

Assembly.GetExecutingAssembly().CodeBase.ToLower.EndsWith(".exe")

But it seems like something better could exist that does not need to do a string comparison, i.e. comparing the assemblies module name would also fall into this category.

flag

1 Answer

vote up 0 vote down check

Not 100% sure about that, but I think that Assembly.EntryPoint is null for DLLs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.