How to create ///summary

前端 未结 9 817
面向向阳花
面向向阳花 2021-02-01 00:13

How do I generate these kind of summaries in Visual Studio?

/// 
///  Returns a number
/// 
///          


        
9条回答
  •  自闭症患者
    2021-02-01 01:00

    For Controllers: Use 3 forward slash before Methods i.e. /// which will generate summary tag like this,

         /// 
         /// 
         /// 
         /// 
         /// 
    

    For Models: Use 3 forward slash before an auto-property i.e. /// which will generate summary tag like this,

         /// 
         /// 
         /// 
    

提交回复
热议问题