How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
public static class Profiler { | |
private static List<ProfilerFrame> stack = new List<ProfilerFrame>(); | |
private static Dictionary<string, ProfiledBlock> totals = new Dictionary<string, ProfiledBlock>(); | |
private static Action<string> logger; |