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

  • Home
  • SEARCH
  • 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 874261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:04:38+00:00 2026-05-15T11:04:38+00:00

So i want to remove empty items in listbox like whitespace so Far I

  • 0

So i want to remove empty items in listbox like whitespace so Far I have this code. But the compiler is giving me an error

for (int i = 0; i < listBox2.Items.Count; i++)
{
    if (listBox2.Items[i].ToString = " "){//ERROR*
        listBox2.Items.RemoveAt(i);
    }
}

*Cannot convert method group ‘ToString’ to non-delegate type ‘bool’. Did you intend to invoke the method?

  • 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-15T11:04:39+00:00Added an answer on May 15, 2026 at 11:04 am

    ToString is a method, so you need it to be ToString(), and equality comparisons are performed with two equals signs ==, not one. One equals sign is for assignment.

    With that said, to iterate over your collection and remove items by their index, you’ll want to go in reverse. You’ll notice that as you remove items, your item count will obviously drop, so your loop will not behave like you think it will. So go for something like this:

    int count = listBox2.Items.Count;
    for (int i = count - 1; i >= 0; i--)
    {
        if (listBox2.Items[i].ToString() == " ")
        {
            listBox2.Items.RemoveAt(i);
        }
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want remove "Language" querystring from my url. How can I do this? (using
I have an datetime object that I want to remove one hour to display
I have a bunch of java files from which I want to remove the
Imagine I have String in C#: I Don’t see ya.. I want to remove
have downloaded Orca to edit an MSI file. I want to remove some banner
I have an ArrayList<String> , and I want to remove repeated strings from it.
I want to remove empty paragraphs from an HTML document using simple_html_dom.php . I
I thought that wasn't that hard to do, but I want to remove all
I want to remove the paging buttons on the grid, but I want to
I want to remove a UIView from a superview and add it again at

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.