20
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
try
8
{
9
int a = 10;
10
int b = 0;
11
int x = a / b;
12
}
13
catch (Exception e) { Console.WriteLine(e); }
14
15
Console.WriteLine("Rest of the code");
16
}
17
18
19
}
20
Cached Result
Compilation error (line 15, col 37): Invalid token '=' in class, struct, or interface member declaration
Compilation error (line 15, col 49): Invalid token '{' in class, struct, or interface member declaration
Compilation error (line 16, col 1): Type or namespace definition, or end-of-file expected
Compilation error (line 15, col 49): Invalid token '{' in class, struct, or interface member declaration
Compilation error (line 16, col 1): Type or namespace definition, or end-of-file expected