I\'m trying to change the culture on a ASP.NET Web API 2
but I can\'t figure out which function to override
I have tried ExecuteAsync and <
I figured out the problem.
When you compile a project with resources, it creates a folder for each culture with a .dll
So I had to copy those folders too. Not only resources.dll because this is only the default language. That's why no matter what was the culture, my resources were in English.
So to use resources.dll
.dllNote: you don't have to add a reference for each culture, only your default one.