Expression-bodied Member and Field Declaration
A significant difference between the two declarations in C#:
1. Expression-bodied Member:
public string Name => "C#";
This defines a read-only property called Name.
It uses an expression-bodied member syntax, meaning you can only get its value, no...
techkeys.hashnode.dev1 min read