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

《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键拖动鼠标
            }
            /*还有很多技巧希望去书中去了解,*/
        }
    }
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章