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