当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Console.SetError()用法及代码示例


Console.SetError(TextWriter)方法设置指定StreamWriter的Error属性,即,它将标准错误流重定向到文件。由于使用此StreamWriter对象设置了控制台,因此可以调用WriteLine()方法将错误写入文件中。

用法: public static void SetError (System.IO.StreamWriter newError);

参数:
newError:这是一个流,它是新的标准错误输出。


异常:如果传递的参数为null,则此方法将引发ArgumentNullException。另外,由于它使用StreamWriter对象,因此还应注意其例外情况。

例:在此示例中,使用SetError()方法将StreamWriter对象设置为控制台,并且错误消息将从控制台写入日志文件。

// C# program to demonstrate  
// the SetError() method 
using System; 
using System.IO; 
  
class GFG { 
  
    // Main Method 
    static void Main() 
    { 
        // Define file to receive error stream. 
        string fn = "F:\\gfg_error.log"; 
  
        // Define the new error StreamWriter object 
        StreamWriter errStream = new StreamWriter(fn); 
  
        // Redirect standard error stream to file. 
        Console.SetError(errStream); 
  
        // Write the error message into the Log file 
        Console.Error.WriteLine("Error line is written into the log file."); 
        Console.Error.WriteLine("Keep coding geeks!"); 
  
        // Close redirected error stream. 
        Console.Error.Close(); 
    } 
}

输出:gfg_error.log文件现在将包含错误消息。

参考:



相关用法


注:本文由纯净天空筛选整理自MukkeshMckenzie大神的英文原创作品 Console.SetError() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。