0
list and bitarray
List<string> li = new List<string>(); li .Add("Hi"); Console.Write(li[? ]); help me out with this, I found the first 2 and don't know 3 one help
3 ответов
0
What is you qustion and what is the problem
0
Answer 0
0
First two are correct, and the third should be 0 (zero).
List<string>() li = new List<string>();
li .Add("Hi");
Console.Write(li[ 0 ]);