I have created the following C# program:
namespace dispose_test
{
class Program
{
static void Main(string[] args)
{
using (var disp = new MyDisposable())
{
throw new Exception("Boom");
}
}
}
public class MyDisposable : IDisposable
{
public void Dispose()
{
Console.WriteLine("Disposed");
}
}
}
When I run this using dotnet run
, I see the following behavior:
- Windows: Exception text written to console, "Disposed" printed ~20 second later, program exits.
- Linux: Exception text written to console, program exits immediately. "Disposed" never written.
The delay on Windows is annoying, but the fact that Dispose() isn't called at all on Linux is troubling. Is this expected behavior?
EDITS Clarifications/additions from the conversation below:
- This is not specific to
using/Dispose()
, which is just a special case oftry/finally
. The behavior also occurs generally withtry/finally
- thefinally
block is not run. I have updated the title to reflect this. - I have also checked for the execution of
Dispose()
by writing a file to the filesystem, just to ensure that problem wasn't related to stdout being disconnected from the console beforeDispose()
is run in the case of an unhandled exception. Behavior was the same. Dispose()
does get called if the exception is caught anywhere within the application. It's when it goes completely unhandled by the application that this behavior occurs.- On Windows, the long gap is not due to compilation delay. I started timing when the exception text was written to the console.
- My original experiment was doing
dotnet run
on both platforms, which means separate compilations, but I have also tried by doingdotnet publish
on Windows and directly running the output on both platforms, with the same result. The only difference is that, when run directly on Linux, the text "Aborted (core dumped)" is written after the exception text.
Version details:
dotnet --version
-> 1.0.4.- Compiling to netcoreapp1.1, running on .NET Core 1.1.
lsb-release -d
-> Ubuntu 16.04.1 LTS