C # Skillfully control controls with a foreach statement

Source: Internet
Author: User
Tags foreach

The foreach statement is used to iterate over each item in the collection, and its syntax is as follows:

foreach (type identifier in expression)

In this example, using a foreach statement to empty the text value of all the textbox on the current form, you can also use a foreach statement to control the same set of controls in the same container, which greatly increases the efficiency of the program's personnel. The code is as follows:

private void Cleartext ()
{
foreach (Control cont in This.gbLogin.Controls)
{
if (cont. GetType (). ToString () = = "System.Windows.Forms.TextBox")
{
Cont. Text = string. Empty;
}
}
}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.