Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

index in foreach c#

foreach (var item in Model.Select((value, i) => new { i, value }))
{
    var value = item.value;
    var index = item.i;
}

//or 

foreach ((MyType val, Int32 i) in Model.Select((value, i) => ( value, i )))
{
    Console.WriteLine("I am at index" + i + " and I can find the value on val");
}
Comment

foreach index start from at 1 in c#

int i = -1;
foreach (Widget w in widgets)
{
   i++;
   // do something
}
Comment

index in foreach in c#

foreach (var item in Model.Select((value, i) => new { i, value }))
{
    var value = item.value;
    var index = item.i;
}

//or 

foreach ((MyType val, Int32 i) in Model.Select((value, i) => ( value, i )))
{
    Console.WriteLine("I am at index" + i + " and I can find the value on val");
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: is it possible to be palindrome 
Csharp :: draw table in console c# 
Csharp :: using c# 
Csharp :: c# datagridview count value 
Csharp :: how to round in c# 
Csharp :: c# datagridview filter 
Csharp :: c# loop array backwards 
Csharp :: swagger skip endpoint .net core 
Csharp :: assetfinder 
Csharp :: csharp nullable types 
Csharp :: c# for loop last iteration 
Csharp :: Selecting item from listview in C# 
Csharp :: how to add colider in obj in unity 2020 
Csharp :: hva er bukser på amerikansk 
Csharp :: use different database with entitymanagerfactory 
Csharp :: enemy turret one direction ahooting script unity 2d 
Html :: qs cdn 
Html :: espacio html 
Html :: accept only image files upload html 
Html :: html input box no border 
Html :: Javascript getelementbyid hide element 
Html :: bootstrap col-md-5 center 
Html :: a href mail 
Html :: html entities for space 
Html :: image drive inside html 
Html :: script src tag in html 
Html :: share to twitter html link 
Html :: how to use google drive image in html 
Html :: less than symbol html 
Html :: html link tag 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =