Total() public method

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