CClash.CompilerCacheBase.SetCompilerEx C# (CSharp) Method

SetCompilerEx() public method

public SetCompilerEx ( int parentpid, string compiler, string workdir, string>.Dictionary envs ) : ICompiler
parentpid int
compiler string
workdir string
envs string>.Dictionary
return ICompiler
        public ICompiler SetCompilerEx(int parentpid, string compiler, string workdir, Dictionary<string, string> envs)
        {
            var comp = SetCompiler(compiler, workdir, envs);
            comp.ParentPid = parentpid;
            return comp;
        }