Skip to content

Instantly share code, notes, and snippets.

@johnnyjr
Last active December 13, 2015 17:19
Show Gist options
  • Save johnnyjr/4946732 to your computer and use it in GitHub Desktop.
Save johnnyjr/4946732 to your computer and use it in GitHub Desktop.
Extension method for MonoTouch to translate a string
public static class StringExtensions
{
public static string Translate(this string str) {
return NSBundle.MainBundle.LocalizedString(str,"");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment