C#控制台窗体(Console Window)内容输出到文本文件
C#控制台窗体(Console Window)内容输出到文本文件C#控制台窗体(Console Window)内容输出到文本文件
//设置控制台输出
Console.SetOut(sw);
扫一扫加作者微信
//设置控制台输出
Console.SetOut(sw);
//输出Console内容到文本文件
public void WriteConsoleText()
{
StringWriter sw = new StringWriter();
//Sets the System.Console.Out property to the specified System.IO.TextWriter object.
//设置控制台窗体输出
Console.SetOut(sw);
Console.WriteLine("输出内容1");
Console.WriteLine("输出内容2");
Console.WriteLine("测试1");
File.WriteAllText(@"c:\aaa.txt", sw.ToString());
}
public void WriteConsoleText()
{
StringWriter sw = new StringWriter();
//Sets the System.Console.Out property to the specified System.IO.TextWriter object.
//设置控制台窗体输出
Console.SetOut(sw);
Console.WriteLine("输出内容1");
Console.WriteLine("输出内容2");
Console.WriteLine("测试1");
File.WriteAllText(@"c:\aaa.txt", sw.ToString());
}
扫一扫加作者微信
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
NewDoc C/S框架网