在本博客中,可以找到一篇《c#实现输出的字符靠右对齐的示例》 它有教大家怎样实现字符串输出进行左齐或者是右对齐。 本篇的方法,超简单,是使用string.Format()对本进行格式化输出即可。 Source Code class Ad { private string[] myVar; public Ad(string[] myValue) { this.myVar = myValue; } public void PadLeft() { foreach (string s in this.myVar) { string s2 = St