Boo.BooLangProject.BooProjectSources.GetCompiledProject C# (CSharp) Метод

GetCompiledProject() публичный Метод

Gets the compiled output for the current project, compiling it if needed.
public GetCompiledProject ( ) : CompiledProject
Результат CompiledProject
        public CompiledProject GetCompiledProject()
        {
            if (RequiresRecompilation)
                Compile();

            return compiledProject;
        }