为什么这不起作用?
string myString = "test";
int i = myString.Length; // i = 4
myString.PadLeft(5, '_'); // "myString" is should be equal to "_test", but it still "test"
i = myString.Length; // i = 4 (should be 5)
Run Code Online (Sandbox Code Playgroud) 在Win7主题中它运行良好,但在赢得经典主题它看起来很奇怪.
在Win 7主题中:

在Win Classic主题中:

有没有机会解决这个问题?