您的位置:首页 > 其它

Visual Studio.Net使用技巧手册---笔记

2011-09-08 17:05 381 查看
《Visual Studio.Net使用技巧手册》这本书可以提高日常的工作效率,有很多技巧的和便捷的操作可控参考,嘿嘿。(例如:……>> )
================================================================================================================================
/// <summary>
/// Create XML note 添加XML注释:“///”
/// </summary>
/// <example>例子:XML各种标签</example>
/// <exception cref="标签">除</exception>
/// <include file='很多' path='[@name=""]'/>
/// <remarks >see, value, permission and so on </remarks>
public class Class1
{
#region 注释:区域 (提供折叠)
/* 段落注释
// TODO: 注释标记 -- 可在“Task lisk”中查看标记处
for (int i = 0; i < 100; i++)
{
//...

}
*/
#endregion

/// <summary>
/// 方法
/// </summary>
public static void DoAlgorithm()
{
for (int i = 0; i < 100; i++)
{
//矩形选区:按住Alt键拖动鼠标
}
/*还有很多技巧希望去书中去了解,*/
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: