Login
Remember
Register
Ask a Question
What is Thread in C#?
0
votes
asked
Oct 18, 2019
in
C Sharp
by
Robin
What is Thread in C#?
thread-in-c#
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 18, 2019
by
rajeshsharma
Thread is an execution path of a program. Thread is used to define the different or unique flow of control. If our application involves some time consuming processes then it’s better to use Multithreading., which involves multiple threads.
...