Profiler.Start C# (CSharp) Method

Start() public method

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

Usage Example

コード例 #1
0
        public void DoubleStartTest()
        {
            var profiler = new Profiler();

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