Bello il quiz di Andrea! Questo è il mio :-)
class Q1: System.NullReferenceException
{
static int Main()
{
try
{
return 0 + (Q1)null;
}
catch(Q1 q)
{
throw;
}
}
public static int operator +(int i, Q1 q)
{
return i + q.Message.Length;
}
}
Si ottiene:
- A. NullReferenceException;
- B. Q1;
- C. StackOverflowException.