标签: c#
我有计算在文本文件中添加空格。 例如: 12作为计数意味着需要在现有文本文件中添加12个空格。 有什么可能吗?
答案 0 :(得分:1)
你可以使用带有一个字符的string constructor来重复那个字符:
string
string twelveSpaces = new string(' ', 12);
然后将字符串写入您的文件。
答案 1 :(得分:0)
// Init a string containing 12 whitespaces. var str = new string(' ', 12); // Append string to file File.AppendAllText("myfile.txt", str);