这种类型的 C# Docstring 可行吗? f 是的,我怎样才能让 Visual Studio 自动填充它,就像 eclipse 对 java Docstring 所做的那样?
Is this type of C# Docstring viable? f yes, how can i make Visual Studio autofill it, like eclipse does with java Docstring?
我用 java 编码了很长时间,并且习惯了它的 Docstring 格式。我想知道我是否可以对 C# 代码使用完全相同的格式。
假设我得到了这个代码:
/**
* Takes in two integers and multiplies them
* @param a First factor
* @param b Second factor
* @return Product of both factors
*/
int multiply(int a, int b){
return a*b;
}
如果这确实是合法的,我该如何配置 Visual studio
当我键入 /** + Enter 时自动完成文档字符串?
提前致谢:D
在 visual studio 中,您键入 ///
以触发该功能。
我用 java 编码了很长时间,并且习惯了它的 Docstring 格式。我想知道我是否可以对 C# 代码使用完全相同的格式。
假设我得到了这个代码:
/**
* Takes in two integers and multiplies them
* @param a First factor
* @param b Second factor
* @return Product of both factors
*/
int multiply(int a, int b){
return a*b;
}
如果这确实是合法的,我该如何配置 Visual studio
当我键入 /** + Enter 时自动完成文档字符串?
提前致谢:D
在 visual studio 中,您键入 ///
以触发该功能。