Resource (resx) from external resource assembly - disk or IO memory?
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 to share