Profiler.Stop C# (CSharp) Method

Stop() public method

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

Usage Example

コード例 #1
0
 public static void Stop(Profiler profiler)
 {
     if (Active)
     {
         profiler?.Stop();
     }
 }
All Usage Examples Of Profiler::Stop