Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Collection to loop through by a named reference

Status
Not open for further replies.

slobad23

IS-IT--Management
Jun 30, 2006
90
GB
What I currently have is a list of strings like this:

Code:
string first = string.Empty;
string second = string.Empty;

//Do something with first

//Do something with second

What I really want to be able to do is loop through a whole set of these strings, carrying out the same operation on each one. What I need to be able to do through the rest of the code is be able to reference it by something a little more meaningful than ARRAY[index] and would prefer something like javascript where I could say:

OBJECT[name]

and use those new values after the loop by name in the rest of the code.

Any help would be much appreciated.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top