Initializing a List<string> in C#
- by Pramodh
how to make the items in a List to zero
I've a list List< String sampleList which contains 10 items.
eg:
1
2
3
4
5
6
7
8
9
0
how to make the list contents into zero like
0
0
0
0
0
0
0
0
0
0
Thanks in advance...