User1276892267 posted
My application consists of 3 project:
- A website project (presentation layer)
- A business logic project (business layer)
- A data access project (data layer)
I got a requirement to support multi-lingual for my application. I intended to use the resource files for the website project (resource files are put in App_GlobalResources directory). However, since some classes in the business logic project also contain
messages (e.g: error message, warning message, etc.), I'm going to put the resource files into a separated class library instead.
My question is that is there any comparison about performance between using "website" resource files and "class library" resource file? Is my solution the best in this case? Could you please give me advice?
Many Thanks!