示例#1
0
    public string UpdateLanguageFiles()
    {
        string RetVal = string.Empty;
        PatchInstaller ObjInstallPatch = null;
        try
        {

            ObjInstallPatch = new PatchInstaller();
            RetVal = ObjInstallPatch.UpdateLanguageFiles().ToString();
        }
        catch (Exception Ex)
        {
            RetVal = string.Empty;
            Global.CreateExceptionString(Ex, null);
        }
        return RetVal;
    }