try { // Do stuff } catch (Exception e) { throw; } finally { // Clean up }
在上面的块中,finally块是什么时候调用的?在抛出e之前或者最后被召唤然后赶上?
c#
c# ×1