Does c# have an equivalent of the Java Runnable interface?
If not how could this be implemented or is it simply not needed?
thanks.
.Net uses the ThreadStart and ParameterizedThreadStart delegates to bootstrap Threads.
ThreadStart
ParameterizedThreadStart
Delegates being first-class citizens in .Net, you can keep a reference around if you need to.