Profiler.Stop C# (CSharp) Méthode

Stop() public méthode

public Stop ( ) : void
Résultat void
    public void Stop()
    {
        Watch.Stop ();
    }

Usage Example

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