Inheritance: SystemFunction
Exemplo n.º 1
0
        /// <summary>
        /// Loads the workspace from the given file.
        /// </summary>
        /// <param name="fromFileName">The path to the file.</param>
        public static void Load(this ParseContext context, String fromFileName)
        {
            var lf = new LoadFunction(context);

            lf.Function(new StringValue(fromFileName));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Loads the workspace from the given file.
 /// </summary>
 /// <param name="fromFileName">The path to the file.</param>
 public static void Load(this ParseContext context, String fromFileName)
 {
     var lf = new LoadFunction(context);
     lf.Function(new StringValue(fromFileName));
 }