Use a generic list of the class, then as them as you need to:
List<ClassA> lstInstances = new List<ClassA>();
lstInstances.Add(new ClassA()); //do this as much as you need to
Then you the "instance number" is the index to the list:
lstInstances[x]
-Peter
|