Profiler.Total C# (CSharp) 메소드

Total() 공개 메소드

public Total ( string message ) : void
message string
리턴 void
    public void Total(string message)
    {
        PrintTime (message, TotalElapsed, "Total: ");
    }

Same methods

Profiler::Total ( string format, object o1 ) : void
Profiler::Total ( string format, object o1, object o2 ) : void

Usage Example

예제 #1
0
파일: filezoo.cs 프로젝트: kig/filezoo
 /** FAST */
 void DrawToolbars(Context cr, uint width, uint height)
 {
     Profiler p = new Profiler ();
     cr.Save ();
       cr.Translate (BreadcrumbMarginLeft, BreadcrumbMarginTop);
       DrawBreadcrumb (cr, width);
       cr.Translate (0, ToolbarY);
       DrawSortBar (cr);
       DrawSizeBar (cr);
     cr.Restore ();
     p.Total ("DrawToolbars");
 }