Example #1
0
 /// <summary>
 /// </summary>
 /// <param name="scriptPath">The path to the script to be compiled into an object</param>
 /// <returns>DynValue.String representing the data requested</returns>
 public DynValue LoadObject(DynValue scriptPath)
 {
     // Check scriptPath first? Nah.
     return(ScriptingEngine.CompileObject(scriptPath.String));
 }