3

在 C# 中,我可以在定义类或函数之前添加 /// 开始的注释,这些会影响我编写使用该类型或函数的代码时显示的智能感知提示。但它不适用于 Javascript。我可以获得这些特别的评论和额外的提示吗?

4

2 回答 2

0

不远,但注释应该在js函数中。

这是一个例子:

function getArea(radius)
  {
      /// <summary>Determines the area of a circle that has the specified radius parameter </summary>
      /// <param name="radius" type="Number">The radius of the circle.</param>
      /// <returns type="Number">The area.</returns>
      var areaVal;
      areaVal = Math.PI * radius * radius;
      return areaVal;
  }

您还可以在 MSDN 中找到HowTodoc 。

于 2012-10-04T07:56:16.907 回答
0

对于截至本评论当前日期的 VS 2017+,您需要使用 JSDoc for TypeScript。本例中的“{string}”表示 param1 是字符串类型。

/**
 * A description for myFunction.
 * @param {string} param1 - The first argument to this function
 */
function myFunction(param1) {
...
}
于 2022-03-01T21:32:49.180 回答