Profiler.Start C# (CSharp) Méthode

Start() public méthode

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

Usage Example

Exemple #1
0
        public void DoubleStartTest()
        {
            var profiler = new Profiler();

            profiler.Start();
            profiler.Start();
        }
All Usage Examples Of Profiler::Start