Answer the question
In order to leave comments, you need to log in
Return value from using statement with data loss and inaccurate notation?
Why is the file being written with data loss
when exiting or returning a value from a using statement.
For example, here is the archiving code, in 1 case everything is OK and for example the compressed archive is 100kb and can be restored back, and in the second case the compressed archive is 80 and damaged.
Why is that.
public MemoryStream GZipCompress(MemoryStream memoryStream)
{
var newStream = new MemoryStream((int)memoryStream.Length / 2); //set to estimate of compression ratio
using (GZipStream compress = new GZipStream(newStream, CompressionMode.Compress,true))
{
memoryStream.CopyTo(compress);
}
// Вот так все отлично
newStream.Position = 0;
return newStream;
}
public MemoryStream GZipCompress(MemoryStream memoryStream)
{
var newStream = new MemoryStream((int)memoryStream.Length / 2);
using (GZipStream compress = new GZipStream(newStream, CompressionMode.Compress,true))
{
memoryStream.CopyTo(compress);
// а вот так сжатие ошибочное
newStream.Position = 0;
return newStream;
}
}
Answer the question
In order to leave comments, you need to log in
using expands into a block like this.
var reader = new StringReader(manyLines);
try {
string? item;
do {
item = reader.ReadLine();
Console.WriteLine(item);
} while(item != null);
} finally
{
reader?.Dispose();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question