C#语言注释有几种形式

2024-12-17 12:05:20
推荐回答(1个)
回答1:

C#语言注释有三种形式

第一种是多行注释:

/** */

例如:

/** int a = 0;
    int b = 1;
    int c = 2;
*/

第二种是单行注释:

// 

例如:

//int d =0;

第三种是文档注释

///  

例如:

/// This method changes the point's location by
/// the given x- and y-offsets.
/// For example:
/// 
/// Point p = new Point(3,5);
/// p.Translate(-1,3);
/// 

/// results in p's having the value (2,8).
/// 

/// 

用于类的前面注释或者方法、属性前面注释

希望我的回答对你有帮助!