
3.15.2002
Simple Performance Counter
PerformanceCounter pc = new PerformanceCounter(
"CategoryName", "CounterName", "InstanceName", false );
pc.IncrementBy( 1 );
Comments:
Post a Comment
PerformanceCounter pc = new PerformanceCounter(
"CategoryName", "CounterName", "InstanceName", false );
pc.IncrementBy( 1 );