C# - 참조 (ref), out, try catch
·
C#
참조 ref참조하기 위해서는 ref 를 사용해야 합니다.using System;using static System.Console;namespace SwapByRef{ class MainApp { static void Swap(ref int a, ref int b) { int tmp = b; b = a; a = tmp; } static void Main(string[] args) { int x = 3; int y = 4; WriteLine($"바꾸기 전 값: {x}, {y}"); Swap(ref x, r..
ytw_developer
'Out' 태그의 글 목록