C# Call by Value/Call by Reference 차이
Call by Value Call by Reference - 값에 의한 호출 - 함수에서 값에 영향을 주지 않는다 - 일반 함수 - void swap(int a, int b) - 주소에 의한 호출 - 함수에서 값에 영향을 준다 - ref 키워드를 가지는 함수 - void swap(ref int a, ref int b) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _062_FuncSwap { class Program { static public void ValueSwap(int a, int b) { int temp = a; a ..