ok I have an example of a structure..
I have in C++ made a Linked list with Sports objects, with a side list with League objects. In this there would be an array of team objects and a two dimensional array of matches.
In C# I would try to make an ArrayList called sportsList. Inside would be ArrayLists of leagueList. One such list would have an array of team objects.
How would I setup access to this this array, or individual team objects?
In C++ I would take out each object and make a help-pointer to the object I would be interested in working with, though since there are no pointers in C# I assume there is another way to set a reference to a nested object.
Same goes with executing methods in an object from another object.
regards, xan
|