C Sharp (C#) - Collections
What will be the output of this C# code?
var items = new List{"a", "b", "c"};
items.RemoveAt(1);
Console.WriteLine(items[1]);
var items = new List{"a", "b", "c"};
items.RemoveAt(1);
Console.WriteLine(items[1]);
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions