Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자동 생성
- xe
- 폼메일
- roundcube
- 안드로이드 푸시
- curl
- WebView
- chart.js
- dovecot
- html5
- android 효과음
- UML
- javascript
- 안드로이드 gcm
- soundpool
- Mail Server
- PHP
- 설치
- C#
- C# IO
- php 취약점
- not working
- php 시큐어코딩
- mysql
- 자바스크립트
- 안드로이드 푸쉬
- FCM
- 우분투
- Android
- 안드로이드
Archives
- Today
- Total
목록델리게이트(delegate) 활용_1 (1)
그러냐
델리게이트(delegate) 활용_1
using System; using System.Collections; namespace FirstCon { class Program { public static int Add(int a, int b) { return a+b; } public static int Mul(int a, int b) { return a*b; } static void Main() { int a = 3, b = 5; int o; Console.Write("어떤 연산을 하고 싶습니까? (1: 덧셈, 2: 곱셈) " ); o = Convert.ToInt32(Console.ReadLine()); switch(o) { case 1: Console.WriteLine("결과는 {0} 입니다.", Add(a, b)); break; case 2..
c#
2016. 1. 28. 11:23