예제 #1
0
파일: Interpret.cs 프로젝트: angellcq/src
 /// <summary>
 /// Load scripts from the XML file
 /// </summary>
 /// <param name="configFile">Name of the xml file</param>
 /// <returns>true on success</returns>
 public bool LoadScripts(String configFile)
 {
     _scripts = new Scripts();
     return(_scripts.Load(configFile));
 }
예제 #2
0
파일: Interpret.cs 프로젝트: glwu/acat
 /// <summary>
 /// Loads scripts from the XML file
 /// </summary>
 /// <param name="configFile">Name of the xml file</param>
 /// <returns>true on success</returns>
 public bool LoadScripts(String configFile)
 {
     _scripts = new Scripts();
     return _scripts.Load(configFile);
 }