C
Crirus
I have some question related to the other post about iteration on a class
members.
I had found a way to figure out when a member of my class is array so I can
pull out it's elements to iterate on that classes members, recursively
I designed a Strong type class, inherited from CollectionBase.
My class have a member of that type, so it contain lots of references fo
objects of that strong type.
Is there a general way to figure out that a class member is in fact a bunch
of another references, not a primitive type or a single type?
What are all the types that can hold multiple references in NET?
How MS do serialise on this kind of members, that are in fact references on
another objects, bundled together in a collection?
Thanks
members.
I had found a way to figure out when a member of my class is array so I can
pull out it's elements to iterate on that classes members, recursively
I designed a Strong type class, inherited from CollectionBase.
My class have a member of that type, so it contain lots of references fo
objects of that strong type.
Is there a general way to figure out that a class member is in fact a bunch
of another references, not a primitive type or a single type?
What are all the types that can hold multiple references in NET?
How MS do serialise on this kind of members, that are in fact references on
another objects, bundled together in a collection?
Thanks