list and bitarray | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

3rd Jan 2021, 6:34 PM
Pradeep kumar V
Pradeep kumar V - avatar
3 Answers
0
What is you qustion and what is the problem
4th Jan 2021, 2:48 PM
Julian Bents
Julian Bents - avatar
0
Answer 0
12th Jan 2021, 2:07 PM
holdmad
holdmad - avatar
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 ]);
19th Apr 2021, 7:39 PM
Mihael Bedeniković
Mihael Bedeniković - avatar