Threading: does c# have an equivalent of the Java Runnable interface?

前端 未结 7 1209
礼貌的吻别
礼貌的吻别 2021-01-31 15:44

Does c# have an equivalent of the Java Runnable interface?

If not how could this be implemented or is it simply not needed?

thanks.

7条回答
  •  甜味超标
    2021-01-31 16:16

    .Net uses the ThreadStart and ParameterizedThreadStart delegates to bootstrap Threads.

    Delegates being first-class citizens in .Net, you can keep a reference around if you need to.

提交回复
热议问题