Can you keep a StreamReader from disposing the underlying stream?

前端 未结 9 2058
小鲜肉
小鲜肉 2020-11-30 09:22

Is there a way to do this:

this.logFile = File.Open(\"what_r_u_doing.log\", FileMode.OpenOrCreate, FileAccess.ReadWrite);

using(var sr = new StreamReader(th         


        
9条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 10:15

    You could use the NonClosingStreamWrapper class from Jon Skeet's MiscUtil library, it serves exactly that purpose

提交回复
热议问题