当前位置:  开发笔记 > 编程语言 > 正文

是否有用于评论C#代码的标准(如phpdoc或python的docstring)?

如何解决《是否有用于评论C#代码的标准(如phpdoc或python的docstring)?》经验,为你挑选了1个好方法。

是否有标准约定(如phpdoc或python的docstring)用于注释C#代码,以便可以从源代码自动生成类文档?



1> Forgotten Se..:

您可以使用XML样式注释,并使用工具将这些注释提取到API文档中.

以下是评论样式的示例:

/// 
/// Authenticates a user based on a username and password.
/// 
/// The username.
/// The password.
/// 
/// True, if authentication is successful, otherwise False.
/// 
/// 
/// For use with local systems
/// 
public override bool Authenticate(string username, string password)

一些便于此的项目是:

GhostDoc,它提供一个快捷键来自动为类或方法生成注释. Sandcastle,从XML注释生成MSDN样式文档.

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有