Last active
November 20, 2020 21:19
-
-
Save dtaylorus/b1d76215850647eb1da7bb45a7fc94f7 to your computer and use it in GitHub Desktop.
LocalizableString members
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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