vote up 1 vote down star

I have an object with the following structure: (pseudocode)

class Client
{
- int ID
- int? ParentID
- string Name
- datetime CreateDate
- int ACClientID
- List <Client> Clients }

I want to loop through the whole nested structure using a recursive foreach, to set the ACClientID of ALL to a value.

I know that the enumerator in a foreach is immutable so the following doesn't work:

 private static bool AssignToChildren(ref ATBusiness.Objects.Client client, int ACClientID)
        {
            client.ACClientID = ACClientID;

            foreach (ATBusiness.Objects.Client child in client.Clients)
            {
                AssignToChildren(ref child, ACClientID);
            }
        }

What would be the most efficient way of achieving my goal?

PS: I will not be adding or removing from the structure, merely setting one attribute for every nested Client object.

[edit] I've looked at http://stackoverflow.com/questions/759966/what-is-the-best-way-to-modify-a-list-in-a-foreach but it does not provide me with the answer I need.

flag

59% accept rate

5 Answers

vote up 11 vote down check

Since you never assign to the parameter client you need not pass it using ref.

Since you are not modifing the List<T> object themselves there is no reason you can't modify the ACCClientID property even during an enumeration. Its only when you try to tamper with the list membership that is behind the enumeration that you will get an exception.

link|flag
Gonna test with a unit test BRB. – callisto Sep 28 at 13:03
Tested, works as expected. Thank you! – callisto Sep 28 at 15:49
vote up 0 vote down

Can I suggest a specific property for this?

class Client
{
    public Client()
    {
        Clients = new List<Client>();
    }

    public List<Client> Clients { get; private set; }

    private int aCClientID;

    public int ACClientID
    {
        get { return aCClientID; }
        set { aCClientID = value; }
    }

    public int ACClientIDRecursive
    {
        get
        {
            return aCClientID;
        }
        set
        {
            aCClientID = value;
            foreach (var c in Clients)
            {
                c.ACClientIDRecursive = value;
            }
        }
    }
}
link|flag
vote up 1 vote down
    private static bool AssignToChildren(ATBusiness.Objects.Client client, int ACClientID)
    {
        client.ACClientID = ACClientID;

        foreach (ATBusiness.Objects.Client child in client.Clients)
        {
            AssignToChildren(child, ACClientID);
        }
    }
link|flag
vote up -2 vote down

Try this:

private static bool AssignToChildren(ref ATBusiness.Objects.Client client, int ACClientID)
{
  client.ACClientID = ACClientID;
  for (int i = client.Clients.Count - 1; i >= 0; i--) 
  {
    AssignToChildren(ref client.Clients[i], ACClientID);
  }
}
link|flag
The compiler still does not allow this: Error 5 "A property or indexer may not be passed as an out or ref parameter" – callisto Sep 28 at 12:50
vote up -1 vote down

You should be able to loop the list using indexers. Get the count, loop the list.

for(int i = 0; i < list.count; i++)
{
 ClientObject client = list[i];
 //change vlaue here
}
link|flag
the -1 was not from me, but you got it because the foreach and for work the same way. If you have a problem with one, the problem also happens on the other. – Sergio Sep 28 at 12:58
@Sergio: astander's code doesn't solve the problem, for the record, the for and foreach do not perform the same way. You actually can modify the content of a list from a for loop foreach utilizes the lists enumerator (which is where the modification check lies). the For loop does not. Here's a small snippet that reverses the content of a List<T> using a for loop: codepaste.net/7gk5wm – JMarsch Sep 28 at 15:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.