Mono.CSharp.InteractiveBase.LoadAssembly C# (CSharp) Method

LoadAssembly() public static method

Loads the assembly
Loads the specified assembly and makes its types available to the evaluator. This is equivalent to passing the -pkg: command line flag to the C# compiler on the command line.
public static LoadAssembly ( string assembly ) : void
assembly string
return void
        public static void LoadAssembly(string assembly)
        {
            Evaluator.LoadAssembly (assembly);
        }