- Jan 12, 2004
- 20,133
- 1
- 0
The Collection object only has a Contains method, an Add method (which adds an object at the end of the Collection), and a Remove (by index) method.
So for example, if my Collection contains:
125
224
529
489
and I want to replace 529 with 5299, what would be the easiest way to do this? I really don't want to use a loop.
So for example, if my Collection contains:
125
224
529
489
and I want to replace 529 with 5299, what would be the easiest way to do this? I really don't want to use a loop.
