Why does C # StreamWriter. Close () cause the program to be closed on windows?

Source: Internet
Author: User

When I use c #, I wrote a class to save logs. The general practice is:

[Csharp]
// Write logs to file
Public class LogInfo
{
Static public LogInfo getInstance (){
If (pLogInfo = null)
PLogInfo = new LogInfo ();
 
Return pLogInfo;
}
 
Private LogInfo ()
{
ILine = 0;
LogFile = new StreamWriter (@ "Gobang. log", true );
LogFile. AutoFlush = true;
}
 
~ LogInfo ()
{
// Why this operation can cause something that Windows regards as a problem?
LogFile. Close ();
}
 
Public void WriteLog (string strInfo)
{
LogFile. WriteLine (iLine + "" + strInfo );
ILine ++;
}
Public void WriteLogFlush (string strInfo)
{
WriteLog (strInfo );
}
 
Private static int iLine;
Private StreamWriter logFile;
 
Static private LogInfo pLogInfo;
}

Because the StreamWriter operation is disabled during the analysis, every time the windows form program is closed, windows prompts that the program is being closed, and calls "find a solution to the problem... "processing mechanism. Does anyone know why?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.