Profiler.Stop C# (CSharp) 메소드

Stop() 공개 메소드

public Stop ( ) : void
리턴 void
    public void Stop()
    {
        Watch.Stop ();
    }

Usage Example

 public static void Stop(Profiler profiler)
 {
     if (Active)
     {
         profiler?.Stop();
     }
 }
All Usage Examples Of Profiler::Stop