How can i format the StringBuilder for the output below to be aligned in a manner that it’s properly padded, Right now it’s just a mess!.I am using String Builder to make string in a manner :Stra.append(),Stra.append(” “)

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.
You could use
stringBuilder.AppendFormat("{0,16}", number). This will make your number right-aligned with a width of 16.