関数を書くと:
public static uint FindAUint(double firstParam)
{
}
'///'と入力すると、xmlコメントを生成できます。
/// <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)
{
}
その後、メソッドを次のように更新する必要があると判断した場合:
/// <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)
{
}
Visual Studioに、以前のパラメーターの説明を失うことなく、新しいパラメーターをxmlに追加する方法はありますか?
(私はVisual Studio Expressを使用していることに言及する必要があります。ただし、Expressバージョンの機能を禁止するためにMicrosoftを通過することはありません)