當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。