Beispiel #1
0
 /// <summary>
 /// Begins timing the block with the given name.
 /// </summary>
 /// <param name="name">The name of the block to start timing.</param>
 public static void BeginBlock(string name)
 {
     currentBlock = currentBlock.GetChild(name);
     currentBlock.Begin();
 }