Dear experts!
..NET 2.0
I'm trying to make an array containg multiple datatypes. This array will
consist of 3 items (string, string, integer):
my first try was this, (of course it fails)
string[] param = new string[3];
param[0] = "2007-08-01";
param[1] = "2007-08-31";
param[2] = "0";
any suggestions on how to create such an array containing items of different
datatypes are most welcome :)
Jeff