Resource (resx) from external resource assembly - disk or IO memory?

In .Net, When I fetch a resource from resx in an external resource assembly - is it related to fetching from disk or memory?

thank

+2


source to share


1 answer


Assemblies are loaded memmapped.

So the first time you access it, it will be disk IO. Subsequent calls to assembly resources will be Memory IO if the corresponding part was not loaded from disk.



BTW: This is a concrete implementation. Therefore, there is no guarantee that this will always be the case. But this is for Mono and for MS.Net.

+1


source







All Articles