using System;
using NUglify;
public class Program
{
public static void Main()
Trying();
}
static void Trying(){
try {
ThrowEx();
}catch {
Console.WriteLine("catch");
return;
finally{
Console.WriteLine("finaly");
static int ThrowEx()
throw new Exception("asda");