作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有人拥有或知道了解如何缩进/取消缩进并能够设置缩进级别的控制台 TextWriter。
最佳答案
System.CodeDom.Compiler.IndentedTextWriter
这是内置于 .Net Framework 的 system.dll 中,但它不是 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();
}
关于了解 Indent/Unindent/IndentLevel 的 .NET 控制台 TextWriter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6629423/
是否有人拥有或知道了解如何缩进/取消缩进并能够设置缩进级别的控制台 TextWriter。 最佳答案 System.CodeDom.Compiler.IndentedTextWriter 这是内置于
我是一名优秀的程序员,十分优秀!