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