using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
var a = GetList();
foreach (var number in a)
Console.WriteLine(number);
}
public static List<int> GetList()
var test = new List<int>();
try
test.Add(73);
throw new Exception("Shit");
catch (Exception ex)
return test;
finally
test.Add(13975);