4
Answers

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

Photo of Clyde Eisenbeis

Clyde Eisenbeis

1y
623
1

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)