Hi guys
I've got the following list
How will you make the list to only show the B's.
Rules.
No Linq
No new list variable or no use of array
So basically take the list as is, remove all A's
(Just interested in finding out how you guyz will do it)
I've got the following list
Code:
List<string> modelList = new List<string>() { "A", "B", "B", "A", "B", "A", "B" };
Rules.
No Linq
No new list variable or no use of array
So basically take the list as is, remove all A's
(Just interested in finding out how you guyz will do it)
Comment