Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get C#.Net Assembly by name?

Tags:

c#

assemblies

Is there something like:

AppDomain.CurrentDomain.GetAssemblyByName("TheAssemblyName") 

so instead of looping through AppDomain.CurrentDomain.GetAssemblies(), we could just get the specific assembly directly.

like image 714
Jronny Avatar asked Dec 16 '09 08:12

Jronny


People also ask

Is C+ difficult to learn?

Which programming language is easy to learn? C and C++ are both somewhat difficult to learn to program well. However, in many respects, they share many similarities with many other popular languages. In that sense they're just as easy (or as difficult) to learn, at first, as anything other programming language.


1 Answers

Have you tried looking at Assembly.Load(...)?

like image 110
cyberzed Avatar answered Oct 25 '22 06:10

cyberzed