Total() 공개 메소드

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