I want to get resource key values from resource file specified culture info. Here is the code;
CultureInfo languageInfo = CultureInfo.CurrentUICulture;
ResourceSet rset = myresourceClass.ResourceManager.GetResourceSet(languageInfo, true, false);
Third parameter of GetResourceSet is false because if it's true, it loads the default resource file. I want the specified one. But if so it returns null. Why this is so?