List<object> ap = new List<object>();
my object classes are the classes that i have created.
for example;
class istanbul
{
public istanbul(string a , int b)
{this.a = a ; this.b = b ; }
public string a ;
public int b ;
}
ap.add(new istanbul("dsklfjsf", 12))
-------------------------------
now how can i reach the value "dsklfjsf" or 12 from ap ?
Problem is that in an object array this is a run time value.