/// <summary> /// Delegates to <see cref="Primary"/> then <see cref="Secondary"/> generator. /// </summary> public void NthChild(int a, int b) { Primary.NthChild(a, b); Secondary.NthChild(a, b); }