Pradeep Vairamani
Pradeep Vairamani

Reputation: 4302

Is there a difference between the following ways of using expression-bodied syntax in c#?

public DateTime Date => DateTime.Now;

public DateTime Date { get => DateTime.Now; }

Is there a difference between the two or is it equivalent code with different syntax?

Upvotes: 1

Views: 150

Answers (2)

tmaj
tmaj

Reputation: 34967

Both ways result in the same IL.

For

using System;
public class Program {
    public DateTime MyDate1 { get => DateTime.UtcNow; }
    public DateTime MyDate2 => DateTime.UtcNow;
    public void Main() {
    }
}

the abbreviated IL for both versions is (I used https://sharplab.io):

    // Methods
    .method public hidebysig specialname 
        instance valuetype [mscorlib]System.DateTime get_MyDate1 () cil managed 
    {
        // Method begins at RVA 0x2050
        // Code size 6 (0x6)
        .maxstack 8

        IL_0000: call valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_UtcNow()
        IL_0005: ret
    } // end of method Program::get_MyDate1

    .method public hidebysig specialname 
        instance valuetype [mscorlib]System.DateTime get_MyDate2 () cil managed 
    {
        // Method begins at RVA 0x2050
        // Code size 6 (0x6)
        .maxstack 8

        IL_0000: call valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_UtcNow()
        IL_0005: ret
    } // end of method Program::get_MyDate2

(...)

// Properties
    .property instance valuetype [mscorlib]System.DateTime MyDate1()
    {
        .get instance valuetype [mscorlib]System.DateTime Program::get_MyDate1()
    }
    .property instance valuetype [mscorlib]System.DateTime MyDate2()
    {
        .get instance valuetype [mscorlib]System.DateTime Program::get_MyDate2()
    }

Upvotes: 3

kkica
kkica

Reputation: 4104

For all intents and purposes they are the same. They are compiled the same. You can use whichever you prefer.

Upvotes: 1

Related Questions