C#表达式体方法 (expression-bodied method ) - 0023
2021-01-08 00:29
标签:声明 csharp height width div 运算 运算符 turn arp 如果方法的实现只有一条语句,可以使用一个简化的语法:表达式体方法。 列如方法: 和: 可以写成: 和: 注意: C#表达式体方法 (expression-bodied method ) - 0023 标签:声明 csharp height width div 运算 运算符 turn arp 原文地址:https://www.cnblogs.com/codesee/p/13138069.htmlpublic bool IsSquare(Rectangle rect)
{
return (rect.Height == rect.Width);
}
public int Sum(int x, int y)
{
return x + y;
}
public bool IsSquare(Rectangle rect) => rect.Height == rect.Width;
public int Sum(int x, int y) => x + y;
下一篇:C#中的除法运算
文章标题:C#表达式体方法 (expression-bodied method ) - 0023
文章链接:http://soscw.com/index.php/essay/40820.html