18 Şubat 2016 Perşembe

C# İlk Metot Uygulaması

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication22
{
    class Program
    {
        static int Metod(int a, int b)
        {
            return a + b;
        }
        static void Main(string[] args)
        {
            Console.WriteLine(Metod(3,6));

        }
    }

}

Hiç yorum yok: