Kimono.KLocale.SplitLocale C# (CSharp) Method

SplitLocale() public static method

Parses locale string into distinct parts. The format of locale is [email protected] name="locale" the locale string to split name="language" set to the language part of the locale name="country" set to the country part of the locale name="modifier" set to the modifer part of the locale name="charset" set to the charset part of the locale
public static SplitLocale ( string locale, StringBuilder language, StringBuilder country, StringBuilder modifier, StringBuilder charset ) : void
locale string
language StringBuilder
country StringBuilder
modifier StringBuilder
charset StringBuilder
return void
        public static void SplitLocale(string locale, StringBuilder language, StringBuilder country, StringBuilder modifier, StringBuilder charset)
        {
            staticInterceptor.Invoke("splitLocale$$$$$", "splitLocale(const QString&, QString&, QString&, QString&, QString&)", typeof(void), typeof(string), locale, typeof(StringBuilder), language, typeof(StringBuilder), country, typeof(StringBuilder), modifier, typeof(StringBuilder), charset);
        }