Profiler.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
    public void Stop()
    {
        Watch.Stop ();
    }

Usage Example

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