Profiler.Total C# (CSharp) Method

Total() public method

public Total ( string message ) : void
message string
return 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");
 }