Mosa.Compiler.Trace.CompilerTrace.UpdatedCompilerProgress C# (CSharp) Méthode

UpdatedCompilerProgress() public méthode

public UpdatedCompilerProgress ( int totalMethods, int completedMethods ) : void
totalMethods int
completedMethods int
Résultat void
        public void UpdatedCompilerProgress(int totalMethods, int completedMethods)
        {
            if (TraceListener == null)
                return;

            TraceListener.OnUpdatedCompilerProgress(totalMethods, completedMethods);
        }