Out1 [C#]함수(Method), ref, out Method 코드를 기능별로 묶어서 사용한다. ex) WriteLine() 또한 하나의 메서드이다. 함수 형태 /* 한정자 반환형식 이름(매개변수목록) { } */ static HelloWorld() { } 예제(더하기 함수) using System; namespace CSharp { class Program { // 덧셈 함수 static int Add(int a, int b) { int result = a + b; return result; } static void Main(string[] args) { // 4, 5 => 9 int result = Program.Add(4, 5); Console.WriteLine(result); } } } +오늘 알게된 팁. vs에서 cw - tab - tab 을하.. 2021. 4. 7. 이전 1 다음