일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MX Component
- 티스토리 초대장
- MSSQL PYTHON
- windows10
- pymssql
- django
- Visual Studio Code
- 딥러닝
- vscode
- sql developer
- 텐서플로우
- 장고
- 크롤링
- MEAN Stack
- matplot
- 오라클
- 자본주의
- tensorflow
- rs422
- oracle
- c#
- M2M
- PYTHON MSSQL
- MSSQL
- 윈도우10
- 파이썬
- rs485
- Serial
- Python
- scrapy
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