class Program { static void Main(string[] args) { Program t = new Program(); int y = t.aaa(); List<string> list = t.GetList(); Console.ReadLine(); } public int aaa() { int x = 1; try { return ++x; } catch (Exception e) { } finally { ++x; } return x; } public List<string> GetList() { var list = new List<string>() { "aaa" }; try { list.Add("bbb"); return list; } catch (Exception) { } finally { list.Add("ccc"); } return list; } }
如果按照原作者的逻辑,GetList()这个方法返回的应该是包含“aaa”,“bbb”两个字符串的list,但是结果却返回了“aaa”“bbb”“ccc”三个数据的list,而且最变态的是,如果我将这个方法改为返回list.Count,返回的结果是2,希望大神能帮我解释一下原因?