Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

foreach วนซ้ำใน C #


foreach loop ดำเนินการคำสั่งหรือกลุ่มคำสั่งสำหรับแต่ละองค์ประกอบในอินสแตนซ์ของประเภทที่ใช้อินเทอร์เฟซ System.Collections.IEnumerable หรือ System.Collections.Generic.IEnumerable

ตัวอย่าง

เรามาดูตัวอย่าง foreach loop กัน −

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      LinkedList<int> linkedList = new LinkedList<int>();
      linkedList.AddLast(25);
      linkedList.AddLast(50);
      linkedList.AddLast(100);
      linkedList.AddLast(200);
      linkedList.AddLast(400);
      linkedList.AddLast(500);
      linkedList.AddLast(550);
      linkedList.AddLast(600);
      linkedList.AddLast(800);
      linkedList.AddLast(1200);
      Console.WriteLine("Count of nodes = " + linkedList.Count);
      foreach(int val in linkedList){
         Console.WriteLine(val);
      }
      Console.WriteLine("Does the LinkedList has node 800? "+linkedList.Contains(800));
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Count of nodes = 10
25
50
100
200
400
500
550
600
800
1200
Does the LinkedList has node 800? True