I agree with Ansgar Wiechers , but would like to suggest another option.
If immutability is more important than performance, you can put the value directly in Get and use the property to refer to the value instead of the class level variable.
Class customer 'read-only property, so no "Property Let/Set" Public Property Get MaxLength MaxLength = 70 End Property ... End Class
source share