Hi all the bellow code will produce the same out put but I am not sure which is the best method to use in code comming from VB6 we only had the second option open to us. Non of the C# books give much info on this area just thought someone out there could give me a hand.

Code:
int age=28;
string name="Bombdrop";
Console.WriteLine("hello {0} you are {1} years old",name,age.ToString());
Console.WriteLine("hello " + name +" you are " + age.ToString() + " years old");
thanks in advance!!