Reputation: 1240
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
Reputation: 82136
Yep, they are loaded in with the AppDomain on start up once.
AppDomain
Upvotes: 1