Am 09.10.2013 17:40, schrieb Johannes Pfau:
>
> But if someone really wants to strip the GC _completely_ there's a huge
> issue with memory management of Exceptions.
>
I don't agree there. Basically all my catch blocks look like this:
catch(Exception ex)
{
//do something with ex
Delete(ex);
}
I never had problems with this, or memory leaks.