Esempio n. 1
0
        //---------------------------------------------------------------------

        public static string ReplaceTemplateVars(string template,
                                                 int timestep)
        {
            varValues[TimestepVar] = timestep.ToString();
            return(FilePath.ReplaceTemplateVars(template, varValues));
        }
Esempio n. 2
0
        //---------------------------------------------------------------------

        public static void CheckTemplateVars(string template)
        {
            FilePath.CheckTemplateVars(template, knownVars);
        }