156
1
using System;
2
using System.Collections.Generic;
3
using System.Diagnostics;
4
using System.Linq;
5
using System.Runtime.CompilerServices;
6
using System.Threading.Tasks;
7
8
class Program
9
{
10
static void Main(string[] args)
11
{
12
Exception exception = null;
13
try
14
{
15
new Program();
16
}
17
catch (Exception ex)
18
{
19
Console.WriteLine(ex);
20
exception = ex.Demystify();
21
}
22
23
Console.WriteLine();
24
Console.WriteLine(exception);
Cached Result