Метод | Описание | |
---|---|---|
AddLog ( string s ) : void |
Adds a line to the log
|
|
Flush ( ) : void |
Flushes profiling log on disk
|
|
Profile ( string message ) : void |
Outputs time difference between previous time mark and now to the profiling log
|
|
Profiler ( ) : System.IO |
|
|
Profiler ( string filename, bool append ) : System.IO |
Creates a profiler object
|
|
Start ( string message ) : void |
Starts measuring time
|
public Profile ( string message ) : void | ||
message | string | description of the time interval |
Результат | void |
public Profiler ( string filename, bool append ) : System.IO | ||
filename | string | Name of file to save profiling log to |
append | bool | True if the file should not be overwritten |
Результат | System.IO |
public Start ( string message ) : void | ||
message | string | a message to associate with these measure |
Результат | void |