In some article I found this:
public interface ICargo {
int FoodStorage { get => 100; }
}
What does the part => 100
mean?
From the context it looks like a default value. But as I know this is not how the default value is set. At least, I've never seen this kind of syntax in this context.
I've tried googling, it didn't help.