22 Kasım 2015 Pazar

Expression Bodied Definition

C# 6.0 ile gelen yeni bir özellik. Property ve Method için kullanılabilir.

Property
Field şöyle yazılabiliyor.
private static float Width => 0.012f;
getter yazmakla aynı şey.
private static float Width
{
    get
    {
        return 0.012f;
    }
}

Method
Method ise şöyle yazılabiliyor.
public int Multiply(int x) => x * x;


Hiç yorum yok:

Yorum Gönder