Thread: Array question
View Single Post
Old Jan 4th, 2007, 3:57 PM   #8
ChiHappens
Programmer
 
ChiHappens's Avatar
 
Join Date: Sep 2005
Location: Brevard, NC
Posts: 35
Rep Power: 0 ChiHappens is an unknown quantity at this point
Send a message via MSN to ChiHappens
Maybe you are looking for a structure.

public struct MyStruct
{
  public int ID;
  public string Name;
  public double Value;
}
public MyStruct[] MyStructArray = new MyStruct[10]; // using array
or
public System.Collections.ArrayList MyStructArray = new System.Collections.ArrayList();
__________________
http://www.starshipcombatsimulator.com
They mostly come at night...mostly.
ChiHappens is offline   Reply With Quote