{0,-12} is the part i’m curious about..
I’m looking at this example
Console.WriteLine("{0,-12} {1}", sqlReader.GetName(0),
sqlReader.GetName(1));
Cheers 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The “0” part of “{0,-12}” says to take the first argument (sqlReader.GetName(0)). The “-12” part indicates that the string should be left-aligned, and that it should use 12 spaces (the field width). If the data doesn’t use all 12 spaces, it will fill in the remaining spaces to make the string a total width of 12.
You can see all the options here: http://msdn.microsoft.com/en-us/library/txafckwd.aspx