I wrote this class as an example.
class Program
{
public bool A => true;
public bool B { get; } = true;
}
with reflection I decompiled the assembly and got this code
class Program
{
[CompilerGenerated, DebuggerBrowsable(DebuggerBrowsableState.Never)]
private readonly bool <B>k__BackingField = true;
public bool A
{
get
{
return true;
}
}
public bool B
{
[CompilerGenerated]
get
{
return this.<B>k__BackingField;
}
}
}
@Fruchtzwerg , , getter, ture, , true.
, , true, const.