CClash.CompilerCacheBase.SetCompilerEx C# (CSharp) 메소드

SetCompilerEx() 공개 메소드

public SetCompilerEx ( int parentpid, string compiler, string workdir, string>.Dictionary envs ) : ICompiler
parentpid int
compiler string
workdir string
envs string>.Dictionary
리턴 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;
        }