Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2. What is wrong with the following code? C# List collection = new List (); // do some work to put a lot of items
2. What is wrong with the following code?
C#
Listcollection = new List (); // do some work to put a lot of items into the list string valueToWrite; for(int loopCounter = 0; loopCounter <= collection.Count; loopCounter++) { valueToWrite += collection[loop]; // do some more work }
VB
Dim collection As New List(Of String) ' do some work to put a lot of items into the list Dim valueToWrite as String For loopCounter As Integer = 0 To collection.Count valueToWrite += collection(loop) ' do some more work Next
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started