Is there any difference between writing the following two? The code is for C#
String S1 = "The " + Item.Name + " is made of " + Item.Property + " and is at " + Item.Durability + "% durability."
against
String S2 = "The {0} is made of {1} and is at {2} % durability.", Item.Name, Item.Property, Item.Durability
? Assuming that item is populated with, for instance, name of Axe, property of Steel, and durability of 50 as a string.