How to get indexed index in C # foreach

Source: Internet
Author: User

In C # development, a Foreach Loop statement is often used instead of a for loop statement. foreach is more concise and efficient than for.

foreach: foreach (var item in arr)         { item ... ..                }For : For (int i = 0; I                 { arr[i] .....                } Obviously the for statement has an index variable directly, and gets the value by index. In practice, however, using foreach sometimes requires an index. to get the index value of a foreach, because there is no direct index value, the easiest solution is to define an index variable outside the foreach statement and then add it to the foreach statement to get the index. For example: int i = 0; foreach (var item in arr)         { i++; item ....         } This is achieved, but the index value can be obtained simply by using the IndexOf function, for example: foreach (var item in arr)         { int index = arr.indexof (item);//index is the index value item ....         } This article is only for the development and growth of the footprints, and provided to the developers in need.

How to get indexed index in C # foreach

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.