ストリームを別のストリームに割り当てて以下のように破棄しようとしているときに、例外に遭遇しました
Stream str = new FileStream(somefile, FileMode.OpenOrCreate);
Stream newstr = str;
str.Dispose(); // I disposed only str and not new str
byte[] b = new byte[newstr.Length];// got exception here stating unable to access closed stream...
どうして......?私は C# が初めてで、Stream
whereStream
は namespace にありますSystem.IO
。