BacktraceTabulator.SortRecursive C# (CSharp) Method

SortRecursive() static private method

static private SortRecursive ( ArrayList ar ) : void
ar ArrayList
return void
    static void SortRecursive(ArrayList ar)
    {
        if (ar == null)
            return;

        ar.Sort ();

        foreach (AllocNode an in ar)
            SortRecursive (an.Children);
    }