You need the `get()` because an extension property...
# stdlib
k
You need the
get()
because an extension property can't create a backing field. If you think about how this is implemented it makes sense. This just turns into a static function that accepts
this
as a parameter. You can't add any state to the receiver that it doesn't already support
👍 3