Kimono.KLocale.SetMainCatalog C# (CSharp) Method

SetMainCatalog() public static method

Use this as main catalog for all KLocales, if not the appname will be used. This function is best to be the very first instruction in your program's main function as it only has an effect before the first KLocale object is created. name="catalog" Catalog to override all other main Catalogs.
public static SetMainCatalog ( string catalog ) : void
catalog string
return void
        public static void SetMainCatalog(string catalog)
        {
            staticInterceptor.Invoke("setMainCatalog$", "setMainCatalog(const char*)", typeof(void), typeof(string), catalog);
        }