Mosa.Compiler.Trace.CompilerTrace.UpdatedCompilerProgress C# (CSharp) 메소드

UpdatedCompilerProgress() 공개 메소드

public UpdatedCompilerProgress ( int totalMethods, int completedMethods ) : void
totalMethods int
completedMethods int
리턴 void
        public void UpdatedCompilerProgress(int totalMethods, int completedMethods)
        {
            if (TraceListener == null)
                return;

            TraceListener.OnUpdatedCompilerProgress(totalMethods, completedMethods);
        }