C#/수업내용38 [ 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. [ C# 8일차 ] 오버라이딩 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); Marine marine = new Marine(); Firebat firebat = new Firebat(); marine.Attack(); firebat.Attack(); } } } TerranUnit Class using System; using System.Collections.Generic.. 2023. 1. 10. [ C# 8일차 ] Collection 연습_List, Queue, Stack // 컬렉션 생성 //Add //Contains //단일 요소값 가져오기 //Remove //Count //for //foreach List using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); // 컬렉션 생성 List weapons = new List(5); //Add Weapon weapon0 = new Weapon("장검"); weapons.Add(weapon0.. 2023. 1. 10. [ C# 8일차 ] Generic 일반화 Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace Study09 { class App { //생성자 public App() { Console.WriteLine("App"); Inventory inventory = new Inventory(10); inventory.AddItem(new Weapon()); Inventory inventory1 = new Inventory(10); inventory1.AddItem(new Armor()); } } } using System; using Sy.. 2023. 1. 10. 이전 1 2 3 4 5 6 7 다음