CSI.CsiFunctionContext.Instantiate C# (CSharp) Method

Instantiate() public static method

public static Instantiate ( Assembly a, Hashtable table, string className, string funName ) : void
a System.Reflection.Assembly
table System.Collections.Hashtable
className string
funName string
return void
        public static void Instantiate(Assembly a, Hashtable table, string className, string funName)
        {
            try
            {
                CsiFunctionContext dll = (CsiFunctionContext)a.CreateInstance(className);
                dll.V = table;
                table[className] = dll;
            }
            catch (Exception ex)
            {
                Print(ex.GetType() + " was thrown: " + ex.Message);
            }
        }

Usage Example

        void ExecuteLine(string codeStr)
        {
            // at this point we either have a line to be immediately compiled and evaluated,
            // or a function definition.
            CHash  type = CHash.Expression;
            string className = null, assemblyName = null, funName = null;
            Match  funMatch = funDef.Match(codeStr);

            if (funMatch.Success)
            {
                type = CHash.Function;
            }
            if (type == CHash.Function)
            {
                funName = funMatch.Groups[1].ToString();
                macro.RemoveMacro(funName);
                className    = "Csi" + nextAssembly++;
                assemblyName = className + ".dll";
                codeStr      = codeStr.Insert(funMatch.Groups[1].Index, "_");
            }
            codeStr = macro.ProcessLine(codeStr);
            if (codeStr == "")  // may have been a prepro statement!
            {
                return;
            }
            bool wasAssignment;

            codeStr = MassageInput(codeStr, out wasAssignment);
            if (wasAssignment)
            {
                type = CHash.Assignment;
            }
            CompilerResults cr = CompileLine(codeStr.TrimStart(), type, assemblyName, className);

            if (cr != null)
            {
                Assembly ass = cr.CompiledAssembly;
                if (type != CHash.Function)
                {
                    CodeChunk.Instantiate(ass, this);
                }
                else
                {
                    CsiFunctionContext.Instantiate(ass, varTable, className, funName);
                    string prefix = mustDeclare ? "" : "$";
                    macro.AddMacro(funName, prefix + className + "._" + funName, null);
                    AddReference(Path.GetFullPath(assemblyName));
                }
            }
        }
CsiFunctionContext