New to C# and I am trying to understand a statement
foreach (int num in numQuery)
{
Console.Write("{0,1} ", num);
}
I am confused about what is that {0, 1} doing there. If it is "{0}", then it is pretty clear, but what does {0, 1} mean?