我爱Aspx >> Asp.Net >> Visual Studio Add-Ins Every Developer Should DownlFor instance consider the method shown here:
private void SavePerson(Person person) { } After installing GhostDoc, you can right-click on the method declaration and choose Document this. The following comments will then be added to your document: /// <summary> /// Saves the person. /// </summary> /// <param name="person">Person.</param> private void SavePerson(Person person) { } As you can see, GhostDoc has automatically generated a summary based on how the method was named and has also populated the parameter comments. Don't stop hereyou should add additional comments stating where the person is being saved to or perhaps give an example of creating and saving a person. Here is my comment after adding some additional information by hand: /// <summary> /// Saves a person using the configured persistence provider. /// </summary> /// <param name="person">The Person to be saved</param> private void SavePerson(Person person) { }
Ҷƪл˵?
ASP通用分页类[05-20]
XML 如何推动下一代信息共享应用..[05-20]
基于XML的三层C/S模型[05-20]
用Asp.net实现简单的文字水印[05-20]
用浏览器来接收C# 的程序返回的时..[05-20]
使用C# 编写扩展存储过程[05-20]
C#正则表达式应用范例[05-20]
ASP生成静态网页的方法[05-20]
用ASP动态生成JavaScript的表单验..[05-20]
使用ASP实现http://xx@xx.xx虚拟..[05-20]