vendredi 6 mars 2015

How to comment code using a generic class of a specific type


Vote count:

0




I'm trying to document my code in a proper way.


I have a method that can throw a FaultException of a specific type. When I view the documentation for the method it doesn't show the specific type of the FaultException.



///<summary>
/// Description of method
///</summary>
/// <exception cref="FaultException{ValidationFault}">Description here</exception>
OrganizationDto Update(UpdateOrganizationRequest organizationDto);


Documentation shows: FaultException<TDetail> : Description here


I want it to show: FaultException<ValidationFault> :Description here


How can I achieve this?



asked 36 secs ago







How to comment code using a generic class of a specific type

Aucun commentaire:

Enregistrer un commentaire