折叠 收纳代码,对代码进行分组,让代码容易阅读
#region add(x,y) public static void Add(int x, int y) { Console.WriteLine("{0} + {1} = {2}", x, y, x + y); } #endregion
效果