Skip to content

Instantly share code, notes, and snippets.

@diegobersano
Created June 20, 2016 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegobersano/088a70b5a4f74e78433a8fcc5e099a70 to your computer and use it in GitHub Desktop.
Save diegobersano/088a70b5a4f74e78433a8fcc5e099a70 to your computer and use it in GitHub Desktop.
private static string GetCulture(IReadOnlyList<string> cultureDefinition)
{
return cultureDefinition[0] == SupportedCulture.English
? SupportedCulture.English
: cultureDefinition[0] == SupportedCulture.Arabic
? SupportedCulture.Arabic
: SupportedCulture.Spanish;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment