Programming/c# & winform
Dispatcher / Control BeginInvoke()
구차니
2021. 10. 20. 12:21
Control.BeginInvoke()는 .net 1.1 이후에 추가 되었고
Dispatcher.BeginInvoke()는 .net 3.x 이후에 추가 되었다고 하는데
코드에 넣고 빌드해보니
Control.BeginInvoke()는 using System.Threading;을 끌어오고
Dispatcherl.BeginInvoke()는 using System.Windows.Threading 를 끌어온다.
어우 길다 -_-
[링크 : https://stackoverflow.com/questions/10211096/thread-runs-slow-when-invoke-ui-element]