Clyde Eisenbeis

Clyde Eisenbeis

  • 1.7k
  • 63
  • 11.8k

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)