Skip to content

Instantly share code, notes, and snippets.

@ionoy
Created May 29, 2014 07:06
Show Gist options
  • Save ionoy/b68f76d2b934d56e1bb6 to your computer and use it in GitHub Desktop.
Save ionoy/b68f76d2b934d56e1bb6 to your computer and use it in GitHub Desktop.
public static string Translate(int commandId)
{
string ret;
if (Translations.TryGetValue(commandId, out ret))
return ret;
return "unknown";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment