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
- mysql
- html5
- android 효과음
- 안드로이드 푸시
- C#
- javascript
- dovecot
- php 시큐어코딩
- Mail Server
- php 취약점
- chart.js
- PHP
- curl
- 안드로이드 gcm
- 설치
- 안드로이드 푸쉬
- not working
- 자바스크립트
- 자동 생성
- WebView
- xe
- soundpool
- Android
- 안드로이드
- roundcube
- C# IO
- 폼메일
- UML
- FCM
- 우분투
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