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);
        }