【C#学习笔记】函数调用

using System;

namespace ConsoleApplication
{
    class Program
    {
        static int Add(int a, int b)
        {
            return a + b;
        }

        static void Main(string[] args)
        {
            int a = 1,b = 2;
            int c = Add(a, b);
            Console.Write(c);
            Console.Read();
        }      
    }
}

 

posted @ 2017-08-27 15:02  Dsp Tian  阅读(672)  评论(0编辑  收藏  举报