How to bind elements of other types in XML documents for a method?

I have the following segment of an XML document using one of my methods:

/// <summary> /// Calculates the total charge for hours between the <see cref="StartDateTime"/> and <see cref="EndDateTime"/> of all all the <see cref="VehiclePresence"/> records /// included in the date range defined by <paramref name="startDate"/> and <paramref name="endDate"/>. /// </summary> 

The <see cref="StartDateTime"/> displayed as [!:StartDateTime] . I would prefer it to be shown as a link to the documentation for the VehiclePresence.StartDatetTime properties, just as the <see cref="VehiclePresence"/> displayed as a link to the documentation for the VehiclePresence class.

+4
source share
1 answer

you can use

 <see cref="VehiclePresence.StartDateTime"/> 

to reference types in other namespaces

+10
source

All Articles