WikiFunctions.Profiler.Start C# (CSharp) Method

Start() public method

Starts measuring time
public Start ( string message ) : void
message string a message to associate with these measure
return void
        public void Start(string message)
        {
            AddLog("--------------------------------------");
            Watch = Stopwatch.StartNew();
            AddLog("Started profiling: " + message + " at " + System.DateTime.Now);
        }