惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
博客园 - 聂微东
Application and Cybersecurity Blog
Application and Cybersecurity Blog
MyScale Blog
MyScale Blog
罗磊的独立博客
H
Help Net Security
L
LangChain Blog
T
Threat Research - Cisco Blogs
量子位
S
Securelist
Last Week in AI
Last Week in AI
L
Lohrmann on Cybersecurity
T
The Exploit Database - CXSecurity.com
P
Privacy International News Feed
The Hacker News
The Hacker News
Vercel News
Vercel News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
T
Threatpost
Security Latest
Security Latest
P
Palo Alto Networks Blog
Microsoft Security Blog
Microsoft Security Blog
NISL@THU
NISL@THU
F
Full Disclosure
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Heimdal Security Blog
J
Java Code Geeks
Recorded Future
Recorded Future
Hugging Face - Blog
Hugging Face - Blog
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
B
Blog RSS Feed
月光博客
月光博客
C
Cisco Blogs
V
Visual Studio Blog
D
DataBreaches.Net
H
Hacker News: Front Page
博客园 - 叶小钗
N
News and Events Feed by Topic
爱范儿
爱范儿
A
Arctic Wolf

博客园 - 〆o殺殸纨o〆

用户中心 - 博客园 用户中心 - 博客园 面试题集锦(二)【转载】 面试题集锦(一)【转载】 用户中心 - 博客园 用户中心 - 博客园 袁岳:大学生职业准备八指标和36条人情世故【转载】 WITH AS【原创】 ISNULL(expression,replace_value)【原创】 $IDENTITY【原创】 自定义实体类【转载】 高清论坛思路新网址 软件项目开发流程以及人员职责【转载】 启用Code Snippet功能【转载】 DATEDIFF GETDATE DELETE TRANSACTION【转载】 TEXTVALID SET TEXTSIZE DATALENGTH【转载】 READTEXT WRITETEXT UPDATETEXT【转载】 OBJECTPROPERTY OBJECT_ID TEXTPTR【转载】 怎么在绑定后动态改变DataGrid中的内容【转载】
VS2005如何生成注释文档【原创】 - 〆o殺殸纨o〆 - 博客园
〆o殺殸纨o〆 · 2008-11-17 · via 博客园 - 〆o殺殸纨o〆

在VS2005菜单里,依次打开项目—》属性—》生成—》输出—》XML文档文件。设置好之后,当生成项目后,到设置好的输出路径下找到该XML文档,里面的内容既是代码文件当中的文档注释。例如:

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>ConsoleApplication1</name>
    </assembly>
    <members>
        <member name="M:ConsoleApplication1.Program.Main(System.String[])">
            <summary>
            Main方法
            </summary>
            <param name="args"></param>
        </member>
        <member name="P:ConsoleApplication1.Program.MyName">
            <summary>
            私有字段myName的属性
            </summary>
        </member>
    </members>
</doc>