private void IncreaseCallCounter(string method) { if (!CallCounter.ContainsKey(method)) { CallCounter[method] = 0; } ++CallCounter[method]; }