Gets the List<(Of <(<'T>)>)> of IndexEntry objects related to the current index entry. In the generated index, those entries will be listed as "See also" cross-references from the current to other entries.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public List<IndexEntry> SeeAlso { get; }
Visual Basic
Public ReadOnly Property SeeAlso As List(Of IndexEntry)
	Get

Remarks

This method always returns a non-nullList<(Of <(<'T>)>)>, creating it if it did not exist. To test whether an index entry already contains any "See also" references without creating the SeeAlso collection, use the HasSeeAlso property.

See Also