Clyde Eisenbeis

Clyde Eisenbeis

  • 1.6k
  • 54
  • 6.7k

Number of items in a List<string> that contain the word "blue"?

Feb 20 2024 4:38 PM

How do I cound the number of items in a List<string> that contain the word "blue"?

List<string> liststCarColors= new List<string>().

Perhaps something similar to -> liststCarColors.FindAll("Blue")?

 


Answers (4)