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();