Skip to content

Instantly share code, notes, and snippets.

@dtaylorus
Last active November 20, 2020 21:19
Show Gist options
  • Save dtaylorus/b1d76215850647eb1da7bb45a7fc94f7 to your computer and use it in GitHub Desktop.
Save dtaylorus/b1d76215850647eb1da7bb45a7fc94f7 to your computer and use it in GitHub Desktop.
LocalizableString members
internal static class LocalizableString
{
internal static CultureInfo CurrentCulture { get; }
internal static LineBreakMode LineBreakMode { get; }
internal static string Localize(
this string localizable);
internal static string WillLocalize(
this string localizable);
internal static string FormatPlural(
string singular,
string plural,
int count);
internal static string Formattable(
FormattableString formattable);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment