标签: .net string .net-3.5 .net-4.0
我需要获得带有8'*'符号的字符串。我怎么能在.NET 3.5中做到这一点? .NET 4.0?
感谢。
答案 0 :(得分:11)
尝试:
string str = new string('*', 8);
答案 1 :(得分:1)
我自己的快速解决方法:
"".PadLeft(Password.Length,'*')
:)
但我想这应该是更好的解决方案。