I would like to add a cref for the expression Bars[0].Name
Here is the code but it generates 2 warnings

using System.Collections.Generic;
namespace MyProject
{
class IFoo
{
public Bars Bars { get; } = new Bars();
/// <summary>
/// Returns true if <see cref="Bars[0].Name"/> is empty or null.
/// </summary>
/// <value>Indicates if name is empty or null</value>
public bool IsFirstBarChildNameEmptyOrNull() =>
Bars.Count == 0 || string.IsNullOrEmpty(Bars[0].Name);
}
class Bars
{
private List<Child> _children = new List<Child>();
public Child this[int index] => _children[index];
public int Count => _children.Count;
}
class Child
{
public string Name { get; set; }
}
}
How can I add this cref without generating a warning?