using System;
using System.Threading;
class Foo
{
static void Main()
{
try
{
try
{
try
{
Thread.CurrentThread.Abort();
}
catch
{
Console.Write(1);
}
finally
{
Thread.ResetAbort();
}
}
catch
{
Console.Write(2);
}
}
catch
{
Console.Write(3);
}
}
}
Cosa viene visualizzato a console e perché?
- A. niente
- B. errore a run-time
- C. 1
- D. 12
- E. 123
Lasciate le vostre risposte, come al solito, nei commenti.