Poma
Poma

Reputation: 8484

Does Assembly.Load loads same assembly every time?

If I call Assembly.Load("Example"); 10 times does it load that assembly every time or just once?

Upvotes: 1

Views: 213

Answers (1)

Mehrdad Afshari
Mehrdad Afshari

Reputation: 422182

It's loaded just once.

For more detailed information about loading assemblies in different contexts see Best Practices for Assembly Loading.

Upvotes: 4

Related Questions