C# 使用IntelliSense为C代码提供Typescript样式的注释

C# 使用IntelliSense为C代码提供Typescript样式的注释,c#,typescript,comments,intellisense,C#,Typescript,Comments,Intellisense,我正在VSCode中使用C,希望在我的类、属性和方法中使用intelliSense。我习惯于用Typescript编写它,它看起来像这样: /** * // TODO: do not forget to comment "someMethod" * Brief description of this method * @param nameOfParam1 description of this parameter's purpose * @returns

我正在VSCode中使用C,希望在我的类、属性和方法中使用intelliSense。我习惯于用Typescript编写它,它看起来像这样:

  /**
  * // TODO: do not forget to comment "someMethod"
  * Brief description of this method
  * @param nameOfParam1 description of this parameter's purpose
  * @returns describe what is returning
  */
  someMethod(nameOfParam1 : string): string { ... }
使用VisualStudio代码,我甚至可以为这些注释自动获得一些好的颜色。我发现C XML注释非常丑陋和臃肿

有没有一种方法可以在C语言中使用同样的注释风格,并且让intelliSense也可以工作

我发现C XML注释非常丑陋和臃肿


没有其他选择-XML注释是语言标准的一部分

您检查过这一点吗?是的,我在VSCode中搜索了有帮助的扩展。有很多,但没有一个允许我在C上使用intellisense和其他类型的注释。我还访问了C文档,了解XML注释有哪些替代方法。没有找到任何适合我的:/。好的,谢谢你的回答。