Hi,
For log purpose, I would like to call the .ToString() method of every object on an object[] array. How can I do this in the simpliest way ?
Say I have :
myArray = new Object[]{"astring",1, Customer}
Log(????);
How can I pass un string such as its value is equals to "astring".ToString()+1.ToString()+Customer.ToString()
Or better, with coma beetween each value.