If you think that each of the lines of the document as one <exception cref=...> </exception> , then the logically correct way to do this is to use the second alternative:
/// <exception cref="ArgumentNullException"> /// <p><paramref name="param1"/> is null. </p> /// <p>- or - </p> /// <p><paramref name="param2"/> is null. </p> /// </exception>
You can use the 'p' elements to indicate strings.
Miguel angelo
source share