Concept Flow - Readonly class properties
Define class with readonly property
Create instance of class
Try to modify readonly property
Error: Cannot assign
End
This flow shows defining a class with a readonly property, creating an instance, and what happens when you try to change that property.