gpt4 book ai didi

理解缩进/取消缩进/IndentLevel的.NET控制台TextWriter

转载 作者:行者123 更新时间:2023-12-04 16:30:28 26 4
gpt4 key购买 nike

是否有人拥有或知道控制台的 TextWriter,它了解如何缩进/取消缩进并能够设置缩进级别。

最佳答案

System.CodeDom.Compiler.IndentedTextWriter
它内置在 system.dll 中的 .Net Framework 中,但它不是 super 健壮的。它应该在受限使用下工作(比如在字符串中没有换行符)。

    static void Main(string[] args)
{
using (System.CodeDom.Compiler.IndentedTextWriter writer = new System.CodeDom.Compiler.IndentedTextWriter(Console.Out, " "))
{
Console.SetOut(writer);
writer.Indent = 0;
writer.WriteLine("test");
writer.Indent = 1;
writer.WriteLine("What happens\nif there are line-\nbreak in the middle?");
writer.Indent = 2;
writer.WriteLine("another test");
writer.Indent = 3;
writer.WriteLine("and another test");
writer.Indent = 0;
writer.WriteLine("hello");
}
Console.ReadLine();
}

关于理解缩进/取消缩进/IndentLevel的.NET控制台TextWriter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2547428/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com