✅ How to call base implementation in abstract class?
I have following abstract class:
Usage:
The problem: I want to do
I know that I can call
Usage:
The problem: I want to do
schemaItem.ParsecMetadata.Group = Group; in all attributes that inherit UIControlAttributeI know that I can call
base.FillSchema( schemaItem, property, culture ); but maybe there is better way to do the same?