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