Example #1
0
 public void Dispose()
 {
     m_stopwatch.Stop();
     ChipstarLog.Log($"{m_tag} == {m_stopwatch.ElapsedMilliseconds * 0.001f} sec");
 }
Example #2
0
 private StopWatchScope(string tag)
 {
     m_tag = tag;
     m_stopwatch.Start();
     ChipstarLog.Log($"{m_tag} Start");
 }