Im new to C# programming. Can someone please explain the following code:
Console.WriteLine( \"{0}{1,10}\", \"Face\", \"Frequency\" ); //Headings Console.Writ
When you see {x,y}, x represents the argument's index and y the alignment, as specified here. The complete syntax is the following:
{x,y}
x
y
{index[,alignment][:formatString]}