분류 전체보기280 [ C# 9일차 ] 람다 연습 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { //생성자 public App() { Console.WriteLine("App"); this.LoadFile(() => //문람다(익명 메서드). { Console.WriteLine("출력"); }); } private void LoadFile(Action calback) //매개변수에 대리자 인스턴스 { calback(); } } } using System; using System.Collections.Generic; using System... 2023. 1. 11. [ C# 9일차 ] Func, Action 대리자 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { delegate void MyDel(); //생성자 public App() { Console.WriteLine("App"); Func func = () => { return 0; }; Func func1 = (a, b) => { return a+b; }; Action act = (a) => { Console.WriteLine(a); }; Action act1 = (name) => Console.WriteLine(name); } } } 2023. 1. 11. [ C# 9일차 ] 익명메소드와 람다1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { //2. 대리자 형식 정의 delegate int MyDel(int a, int b); //생성자 public App() { Console.WriteLine("App"); //1. 메서드 생각 (두 수의 합을 반환하는 메서드) //3. 대리자 변수 정의 MyDel del; //4. 대리자 인스턴스화 (메서드), 익명메서드 (람다) //람다 안썼을 경우 del = delegate (int a, int b) { return a + b; }; //람.. 2023. 1. 11. [ C# 9일차 ] 대리자 delegate 연습2 대리자 사용 x using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { //생성자 public App() { Console.WriteLine("App"); string contents = this.LoadFile(); this.Print(contents); } private string LoadFile() { //파일 읽기 return "hello world!"; } private void Print(string contents) { //출력 Console.WriteLine(contents); } .. 2023. 1. 11. [ C# 9일차 ] 대리자 delegate 연습1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { //2. 대리자 정의: 클래스 안 (밖도 가능) --->클래스와 관련있다면 안에 //주의사항: 대리자 인스턴스에 연결할(할당할) 메서드의 시그니처와 동일해야 함 --->메서드 정의부터! private delegate int MyDelegate(int a, int b); //생성자 public App() { Console.WriteLine("App"); //3. 변수 정의 MyDelegate del; //4. 대리자 인스턴스화하고 변수에 할당 d.. 2023. 1. 11. [ C# 9일차 ] char using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study10 { class App { //생성자 public App() { Console.WriteLine("App"); //문자형식(char) 변수 a를 정의 //char형식의 기본값은 \0 (null문자) char a; //값을 할당 문자형식 값은 작은 따옴표를 사용 ' ' a = 'a'; Console.WriteLine(a); Console.WriteLine(a++); Console.WriteLine(a +1); //65+1 Console.WriteLine(a - 1); Co.. 2023. 1. 11. 이전 1 ··· 39 40 41 42 43 44 45 ··· 47 다음