CSharp_Compiler manages the compilation of source code to an assembly. This class is thread safe, so multiple threads are capable to utilize it simultaneously.
        /// <summary>
        /// Constructor.
        /// </summary>
        public Indicator_Compilation_Manager()
        {
            compiler = new CSharp_Compiler();

            foreach (Assembly assembly in GetReferencedAndInitialAssembly(Assembly.GetEntryAssembly()))
            {
                compiler.AddReferencedAssembly(assembly);
            }
        }
        /// <summary>
        /// Constructor.
        /// </summary>
        public Indicator_Compilation_Manager()
        {
            compiler = new CSharp_Compiler();

            foreach (Assembly assembly in GetReferencedAndInitialAssembly(Assembly.GetEntryAssembly()))
            {
                compiler.AddReferencedAssembly(assembly);
            }
        }