본문 바로가기
Programming/C#

C# 메소드

by ahhang0k 2021. 4. 29.

메소드 선언

static 자료형 이름(매개변수 리스트)

{

   변수 선언;

   문장;

   return (결과값);

}

 

메소드는 대문자로

 

ex1)

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

namespace ConsoleApp6
{
    class Program
    {
        static void Sum(int a, int b)
        {
            int c;
            c = a + b;
            Console.WriteLine("a+b=" + c);
        }
        static void Main(string[] args)
        {
            int a = 10, b = 20;
            Sum(a, b);
            Sum(4, 5);
        }
    }
}

 

return문

반환해줄 값,

수식,

 

'Programming > C#' 카테고리의 다른 글

C# 예외 처리  (0) 2021.04.30
C# 과제  (0) 2021.04.29
C# 배열 실습(비정방향 배열) 각 행에 값을 넣어 합을 출력  (0) 2021.04.29
C# 반복문, 배열  (0) 2021.04.29
C#  (0) 2021.04.28

댓글