Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 기타 연주
- pandas
- C
- C++
- ubuntu
- JSON
- Docker
- mysql
- 오류
- 컨테이너
- OpenCV
- LIST
- 핑거스타일
- SSH
- paramiko
- Linux
- Python
- 채보
- pytorch
- 프로그래머스
- label
- VS Code
- YOLO
- error
- C#
- Selenium
- pip
- Numpy
- Visual Studio
- windows forms
Archives
- Today
- Total
목록매개변수 (1)
기계는 거짓말하지 않는다
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cinLIx/btrzyt0Z8l1/JRe2Xi0pt6S7Q7DVZOxFK1/img.png)
System.Threading.Thread Class 스레드를 만들고 제어할 수 있다. Critical Section에 대한 관리는 신중해야 하며 Mutex, Semaphore를 사용할 수 있다. 매개변수가 없는 함수 스레드 실행 using System; using System.Threading; public class ThreadExample { public static void PrintNum() { for (int i = 0; i < 10; i++) { Console.WriteLine("Thread {0}", i); Thread.Sleep(100); } } public static void Main() { Console.WriteLine("Thread Start"); Thread t = new Th..
C#
2022. 4. 16. 00:44