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

จะตรวจสอบว่ารายการ C # ว่างเปล่าได้อย่างไร


ใช้วิธีใดก็ได้เพื่อค้นหาว่ารายการว่างหรือไม่

ตั้งค่ารายการ −

var subjects = new List<string>();
subjects.Add("Maths");
subjects.Add("Java");
subjects.Add("English");
subjects.Add("Science");
subjects.Add("Physics");
subjects.Add("Chemistry");

ตอนนี้ให้ตั้งค่าเงื่อนไขต่อไปนี้เพื่อตรวจสอบว่ารายการว่างหรือไม่ -

bool isEmpty = !subjects.Any();
if(isEmpty) {
      Console.WriteLine("Empty");
   }else {
      Console.WriteLine("List is not empty");
   }

ต่อไปนี้เป็นรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;

public class Demo {
   public static void Main(string[] args) {
      var subjects = new List<string>();
      subjects.Add("Maths");
      subjects.Add("Java");
      subjects.Add("English");
      subjects.Add("Science");
      subjects.Add("Physics");
      subjects.Add("Chemistry");

      foreach (var sub in subjects) {
         Console.WriteLine(sub);
      }

      bool isEmpty = !subjects.Any();
      if(isEmpty) {
         Console.WriteLine("Empty");
      } else {
         Console.WriteLine("List is not empty");
      }
   }
}