show/hide this revision's text 2 add multi threaded version

Assuming you are not multi threaded then this should be

// cached somewhere
var perf2 = new PerformanceCounter("Cat", "CallTime", "Instance", false);
var sw = new Stopwatch();

// where ever you are setting init_call_time
sw.Start();

// then when the task has finished
sw.Stop();
perf2.RawValue = sw.ElapsedMilliseconds; // or tick, whatever you want to use

If you are in a multi threaded situation then:

// cached somewhere
var perf2 = new PerformanceCounter("Cat", "CallTime", "Instance", false);

[ThreadStatic]
Stopwatch sw;

// where ever you are setting init_call_time
if (sw == null)
    sw = new Stopwatch();
sw.Start();

// then when the task has finished
sw.Stop();
perf2.IncrementBy(sw.ElapsedMilliseconds); // or tick, whatever you want to use
sw.Reset();
show/hide this revision's text 1

Assuming you are not multi threaded then this should be

// cached somewhere
var perf2 = new PerformanceCounter("Cat", "CallTime", "Instance", false);
var sw = new Stopwatch();

// where ever you are setting init_call_time
sw.Start();

// then when the task has finished
sw.Stop();
perf2.RawValue = sw.ElapsedMilliseconds; // or tick, whatever you want to use