Si escribo la función:¿Puedo actualizar un comentario XML en Visual Studio para reflejar los parámetros que han cambiado?
public static uint FindAUint(double firstParam)
{
}
puedo generar los comentarios XML escribiendo '///', da:
/// <summary>
/// *Here I type the summary of the method*
/// </summary>
/// <param name="firstParam">*Summary of param*</param>
/// <returns>*Summary of return*</returns>
public static uint FindAUint(double firstParam)
{
}
si yo decido que necesito para actualizar mi método de ser:
/// <summary>
/// *Here I type the summary of the method*
/// </summary>
/// <param name="firstParam">*Summary of param*</param>
/// <returns>*Summary of return*</returns>
public static uint FindAUint(double firstParam,double newParam, double newParam2)
{
}
¿hay una manera de obtener visual Studio para agregar los nuevos parametros en el XML sin perder las descripciones de las anteriores?
(Debo mencionar que estoy usando Visual Studio Express, yo no lo pondría más allá de Microsoft para no permitir la característica en la versión expreso sin embargo)
AFAIK, si solo está utilizando VS, debe ingresarlos manualmente –
Si escribe ' qJake