/// <summary>
 /// Copies the collection into the Array.
 /// For more details, see <see cref="System.Windows.Media.VisualCollection" />
 /// </summary>
 public void CopyTo(Array array, int index) => _visualChildren.CopyTo(array, index);
 public override void CopyTo(Array array, int index)
 {
     visualChildren.CopyTo(array, index);
 }