FileStream instance reuse take care

Source: Internet
Author: User

Just look at the wrong place in the source code.

Using system;using system.collections.generic;using system.linq;using system.text;using System.IO;namespace Filestreamtest{class Program {static void Main (string[] args) {string file = @ "D:\temp.t            XT ";            FileStream FileStream;            if (file.exists (file)) {FileStream = File.openread (file);            } else {fileStream = File.create (File); }//Use of the StreamWriter is used here, which causes the flow of the FileStream to be closed using (StreamWriter writer=new StreamWriter (f) After the end of the domain Ilestream)) {writer.            WriteLine ("Test some plain text!");            }//The file stream that was passed in to FileStream has been closed, so it will run the Times wrong using (StreamReader reader=new StreamReader (FileStream)) {Console.WriteLine (reader).            ReadLine ());            } filestream.close ();        Filestream.dispose (); }    }}

The solution is to reuse the stream, instead of using a using block, or passing the file name to StreamWriter, StreamReader constructs, rather than the previous FileStream.

FileStream instance reuse take care

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.