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 139433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:26:03+00:00 2026-05-11T07:26:03+00:00

Surely there has to be many ways to optimize the following code, where I

  • 0

Surely there has to be many ways to optimize the following code, where I basically have to make sure that a lot of textboxes aren’t empty and then read their values:

if (foo1.Text.Length != 0 & bar1.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo1.Text + ' / ' + bar1.Text; }  if (foo2.Text.Length != 0 & bar2.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo2.Text + ' / ' + bar2.Text; }  if (foo3.Text.Length != 0 & bar3.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo3.Text + ' / ' + bar3.Text; }  if (foo4.Text.Length != 0 & bar4.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo4.Text + ' / ' + bar4.Text; }  if (foo5.Text.Length != 0 & bar5.Text.Length != 0)  {     output.Text += myStrings[i] + ' / ' + foo5.Text + ' / ' + bar5.Text; }  if (foo6.Text.Length != 0 & bar6.Text.Length != 0)     output.Text += myStrings[i] + ' / ' + foo6.Text + ' / ' + bar6.Text;  if (foo7.Text.Length != 0 & bar7.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo7.Text + ' / ' + bar7.Text; }  if (foo8.Text.Length != 0 & bar8.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo8.Text + ' / ' + bar8.Text; }  if (foo9.Text.Length != 0 & bar9.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo9.Text + ' / ' + bar9.Text; }  if (foo10.Text.Length != 0 & bar10.Text.Length != 0) {     output.Text += myStrings[i] + ' / ' + foo10.Text + ' / ' + bar10.Text; } 
  • 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. 2026-05-11T07:26:03+00:00Added an answer on May 11, 2026 at 7:26 am

    I would put the repeated elements in arrays and then loop over them.

    TextBox[] foos = new TextBox[] { foo1, foo2, foo3, /* etc */ }; TextBox[] bars = new TextBox[] { bar1, bar2, bar3, /* etc */ };  for (int i = 0; i <= 10; i++)     if (foos[i].Text.Length != 0 && bars[i].Text.Length != 0)         output.Text += myStrings[i] + '/' + foos[i].Text + bars[i].Text; 

    Of course, if the elements are really named sequentially you can fill the arrays by looking up the controls from the form’s Controls collection, with the name ‘foo’ + number.ToString().

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

Sidebar

Related Questions

I have coded the next function. But surely someone has a more elegant way
I'm using NetBeans as my IDE. Whenever I have some code that uses another
I have two tables: Table 1 has Episode and Code, with Episode as distinct.
I have a MySQL database table that has a VARCHAR field storing a date
Surely, this shouldn't be so hard? I have a <select> , which has, of
I have some complicated object, such as a Cat, which has many properties, such
I have what must surely be a fairly common documentation need... I'm implementing a
I've looked around and tried many suggestions but none have worked. I recently migrated
I have the following integer type values in a SQL script: @year , @month
Many of us have been indoctrinated in using XML for storing data. It's benefits

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.