Exemple #1
0
 public static void Initialize(string p_strPath)
 {
     try
     {
         instance = new BGLanguage(p_strPath);
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemple #2
0
        private static BGLanguage GetInstance()
        {
            try
            {
                if (instance == null)
                {
                    instance = new BGLanguage("");
                }

                return(instance);
            }
            catch (Exception)
            {
                throw;
            }
        }