Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 609197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:32:24+00:00 2026-05-13T17:32:24+00:00

I am using WCf service in my windowsApplication… I got the exception in my

  • 0

I am using WCf service in my windowsApplication… I got the exception in my client When i am trying to add items in Listbox by using ForEach Loop… The exception is “Collection was modified enumuration may not execute”.
How shall i solve this exception….

And my code is,

            foreach (ClsPC pc in iclsobj.GetPC())
            {
            if (listBox1.Items.Count == 0)
            {
            listBox1.Items.Add(pc.IPAddress);
             }
            else
            {
            for (int i = 0; i < listBox1.Items.Count; i++)
            {
            if (!listBox1.Items[i].ToString().Contains(pc.IPAddress))
            {
            listBox1.Items.Add(pc.IPAddress);
             }
          }
        }
       }
 client.Close();

client = null;

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:32:25+00:00Added an answer on May 13, 2026 at 5:32 pm

    You’re trying to modify the collection in you list box while looping through it (the inner loop), which isn’t really such a hot idea. You’d be better performing this in your data select (i.e. a get distinct PC), or limiting the returned list, possibly something like:

    var pcs = iclsobj.GetPC().Select(pc => new { IPAddress = pc.IPAddress}).Distinct();
    

    And then just binding your listbox to this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Having successfully got a WCF service and client to talk to one another using
We are using WCF service on the client side we are planning to explicitly
I am using a WCF service and a Silverlight Client sending data to the
I am using calling web services and using WCF generated service-reference on the client.
I've got an app which is using a WCF service. Now I'd like to
I'm developing a web-service using WCF, which I want to access using a client
i have a client & server application which communicate using WCF. To add some
I am trying to create a report using a wcf service as a datasource.
i have using WCF service in my code that the client(WindowsFormsApplication1) capturing desktop view
I am using WCF service in my client-server application and I am facing following

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.