Click here to Skip to main content
15,893,814 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Actually i am very confused that what is the use of foreach and for loop in array while using Array.Sort and Array.Reverse method.
What is the concept behind using for each and for loop.

Eg
C#
 int[] arr={2,4,6,1,3,9};
 int a=arr.Length;
 foreach(int i in arr)
{
   Console.WriteLine(i);
   Array.Sort(arr);
}
Posted
Updated 13-Jan-13 0:29am
v2

 
Share this answer
 
If you're wondering the difference between for and foreach, you can think the for as looping a counter whereas foreach loops through elemenents in a collection.

Please refer to:
- for[^]
- foreach[^]

About the code block, it's unclear why you have the variable a which stores the length of your array. You don't seem to use it anywhere.

Also the sorting of the array is done in each iteration but the contents of the array never changes, why?

What actually happens, in the first iteration you print the first element in the array which is 2. After that you sort the array and print the second element which after sorting is again 2. This means that you don't print all the elements since 1 is never printed.

Should the sort be before the iteration?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900