How do I correct specify the XML Comments for a 2D array of nullable doubles? The following gives me syntax error.
/// <returns>The <see cref="double[,]"/>.</returns>
public double?[,] Get2DArray()
{
...
}
If it was just a 2D array of doubles I'd use:
/// <returns>The <see cref="double{T,T}]"/>.</returns>
public double[,] Get2DArray()
{
...
}
and if was just a single value I'd use:
/// <returns>The <see cref="Nullable{Double}"/>.</returns>
public static double? GetNullableDouble()
{
I can't seem to combine these two concepts to get the correct comments.