Write a statement that will set the first element in an ArrayList of Strings named names to "Liam". ASAP?
Answers
Chris
names[0] = "Liam";
Whiskey Tango Foxtrot Actual: What language? In C# it is this
What language? In C# it is this: names[0] = "Liam";
Was this article helpful?