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鍵拖動鼠標
            }
            /*還有很多技巧希望去書中去了解,*/
        }
    }
}


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