1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ProgramRunDemo 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 double sum = AddSum(10.5, 9.5); 14 Console.WriteLine("sum={0}", sum); 15 Console.Read(); 16 } 17 public static double AddSum(double a,double b) 18 { 19 return a + b; 20 } 21 } 22 }
【APS.NET 框架系列】浅谈ASP.NET 框架 (2)
内容版权声明:除非注明,否则皆为本站原创文章。