c# - which language set for NeutralResourcesLanguageAttribute? -


I am developing Arabic and Urdu apps (in the same application) so that language which I have to set for neutral resources (In collecting information page). Enter image details here

  • Neutral resource files (like MyResources.resx) that are compiled in the main assembly ( MyAssembly.dll )

  • Culture-specific resource files (like MyResources.de-DE.resx) that are compiled in a satellite-specific subfolder in a satellite assembly (e.g., D-Day / MySaDaxide. Resources.dll ).

    You must use neutral resources to culture using neutral resource files.

    If this is a global application, then you will typically use "N-US" for neutral resources, and will put other languages ​​into a satellite assembly, which is a continuation of the .NET Framework. Is for

    In your case, you say that you are using two non-English languages, so choose one of them. Although your example is the text of English in the image, so you can also use it.

Comments