Re: Arraylist.remove problem?? Please help.



ok this is prolly kinda rough but I am just learning how to use these.
This is the code that I have figured out to at least see each header in
the group list so far. Can prolly work out how to do the rest in a
bit. I have to figure a way to get the array for each one though so
taht the number that it has for the segment is the index of it and also
start doing the rest. But a good start for not knowing anything about
it.

RelatedHeaders[] t = new RelatedHeaders[master.Count];
master.Values.CopyTo(t,0);
for (int s = 0; s < t.Length; s++)
{
RelatedHeaders temp = t[s];
ArrayList p = temp.GetList();
for (int y = p.Count - 1; y >= 0; y--)
{
Header test = (Header)p[y];
Console.WriteLine(test.Subject);
}
}

.