Didar_Uranov
Didar_Uranov

Reputation: 1240

Does ASP.NET reads assemblies only once at startup?

When asp.net application starts is it true that it reads the assemblies only once?

I mean no disk IO operations are made for website assemblies after startup?

Upvotes: 0

Views: 43

Answers (1)

James
James

Reputation: 82136

Yep, they are loaded in with the AppDomain on start up once.

Upvotes: 1

Related Questions