I want to build the structure of skills and those skills areas. For example: skill multiplication in the maths area.
My areas have some properties (name or weight), and my skills also have properties (name, weight, rank and so on).
I would like to use the following syntax:
Areas(1).Skills(2).Name = "solving equations"
Is it possible? Thanks to your help I can now use Areas(1).Name
in my code and now I'm looking for help with the next step.
I suppose if I have Areas(1).Skill.Name
syntax, I can handle with adding that index for skills, so the problem is exactly how to create a "subobject" of a class (using Area.Skill.Name
still having the Area as an object)?