일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Serial
- oracle
- 티스토리 초대장
- sql developer
- 오라클
- tensorflow
- 장고
- scrapy
- Python
- pymssql
- rs485
- django
- 크롤링
- windows10
- 텐서플로우
- vscode
- matplot
- c#
- 윈도우10
- 딥러닝
- MEAN Stack
- rs422
- MSSQL
- MX Component
- Visual Studio Code
- M2M
- 파이썬
- PYTHON MSSQL
- MSSQL PYTHON
- 자본주의
Archives
- Today
- Total
목록delegate Event Thread CallBack (1)
안까먹을라고 쓰는 블로그
[C#] delegate / Event / Thread
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading; namespace Event_Test{ // 일종의 CallBack함수의 함수포인터로 이벤트 발생시 호출 할 Method의 타입에 맞추어 선언 delegate void EventDelegate(); // Delegate 선언 class clsEvent { public event EventDelegate _EventDelegate;..
Language/C#
2012. 12. 26. 17:21