重複字串進行縮排
根據項目的深度縮排字串時,有一種有效的方法傳回字串是很有效的方法回傳字串是很方便的重複指定次數。
使用字串建構子
如果只想重複相同的字符,可以使用接受字符和重複次數的String 建構子:
string indent = new String(char c, int count);
例如,建立五個連字符的縮排字串:
string indent = new String('-', 5);
這將傳回字串"-----"。
用法範例
您可以使用此方法根據專案的深度輕鬆產生縮排:
int depth = 2; string indent = new String('-', depth); Console.WriteLine(indent + "Item at depth " + depth); Output: --Item at depth 2
以上是如何在 C# 中高效率地重複字串字元進行縮排?的詳細內容。更多資訊請關注PHP中文網其他相關文章!