What does ("{0,1} ", num); mean?

Viewed 1624

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?

1 Answers
Related