Nuclei release - V0.7.0.0

Wednesday, December 4, 2013 | Posted in

Version V0.7.0.0 of the Nuclei library has been released. This release adds support for grouping timing results based on their logical area.

var group1 = new TimingGroup();
using (Profiler.Measure(group1, "My first timing group"))
{
    var group2 = new TimingGroup();
    using (Profiler.Measure(
        group2,
        "This timing is not a child of the first one"))
    {
        // Do stuff here ...
    }

    using (Profiler.Measure(
        group1,
        "This timing is a child of the first one"))
    {
        // Do stuff here ...
    }
}
comments powered by Disqus