Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 4 gru 2021 · If you want that you need to use a for-loop or Enumerable.Range: foreach (var index in Enumerable.Range(0, 3)) { var pet = pets[index]; var owner = owners[index]; Console.WriteLine($"{owner} owns a {pet}"); } If all you want is to get the items of two collections at the same index use Enumerable.Zip as Dmitry has shown.

  2. 8 lis 2021 · I want to count the elements in a list that are greater than element x. Is it correct to use this for loop in C# in order to search through the list: for (int i=0; i < list.length; i++) { ...

  3. 14 lis 2023 · Instrukcje iteracji języka C# (for, foreach, do i while) wielokrotnie wykonują blok kodu. Te instrukcje służą do tworzenia pętli lub iterowania przez kolekcję.

  4. 14 lis 2023 · In this tutorial, you'll learn how to: Use the syntax for ranges in a sequence. Implicitly define a Range. Understand the design decisions for the start and end of each sequence. Learn scenarios for the Indexand Rangetypes. Language support for indices and ranges.

  5. C# iteration statements (for, foreach, do, and while) repeatedly execute a block of code. You use those statements to create loops or iterate through a collection.

  6. 11 sty 2024 · Understanding foreach loops in C# is a fundamental skill for developers. By using foreach loops, you can save time, write cleaner and more concise code, and avoid common pitfalls associated with traditional for loops.

  7. 23 lip 2024 · In C#, loop ranges are commonly used in for loops to iterate over a sequence of numbers. The basic syntax for a loop range is as follows: for (int i = startValue; i < endValue; i++) {. // Code block to be executed. }

  1. Ludzie szukają również