在本博客中,可以找到一篇《输出的字符靠右对齐》http://www.cnblogs.com/insus/p/7953304.html
它有教大家怎样实现字符串输出进行左齐或者是右对齐。
本篇的方法,超简单,是使用string.Format()对本进行格式化输出即可。
class="code_img_closed" src="/Upload/Images/2017120615/0015B68B3C38AA5B.gif" alt="" />
class Ad { private string[] myVar; public Ad(string[] myValue) { this.myVar = myValue; } public void PadLeft() { foreach (string s in this.myVar) { string s2 = String.Format("{0,13}", s); Console.WriteLine(s2); } } }Source Code
上面的数字“13”就是占位符,正数是靠右对齐,反之,负数是靠左对齐: