C#语言注释有几种形式
1个回答
展开全部
C#语言注释有三种形式
第一种是多行注释:
/** */
例如:
/** int a = 0;
int b = 1;
int c = 2;
*/
第二种是单行注释:
//
例如:
//int d =0;
第三种是文档注释
///
例如:
/// <summary>This method changes the point's location by
/// the given x- and y-offsets.
/// <example>For example:
/// <code>
/// Point p = new Point(3,5);
/// p.Translate(-1,3);
/// </code>
/// results in <c>p</c>'s having the value (2,8).
/// </example>
/// </summary>
用于类的前面注释或者方法、属性前面注释
希望我的回答对你有帮助!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询