Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Creating and Using Threads | Threading
Advanced C# with .NET
course content

Conteúdo do Curso

Advanced C# with .NET

Advanced C# with .NET

1. Introduction to Desktop Development with .NET
2. Interactive GUI
3. Threading
4. Generics & Reflection

bookCreating and Using Threads

Important Points:

  • We use the Thread class to create a new thread;
  • In order to pass a parameterless method into the thread class, we encapsulate it into a ThreadStart object.
  • A method with parameters can be executed by passing it into the Tread class after encapsulating it into a ParameterizedThreadStart object.
1. What constructor or method is used for creating a new method?
2. Which Thread constructor accepts a method with no parameters?
3. Which Thread constructor accepts a method with parameters?
What constructor or method is used for creating a new method?

What constructor or method is used for creating a new method?

Selecione a resposta correta

Which Thread constructor accepts a method with no parameters?

Which Thread constructor accepts a method with no parameters?

Selecione a resposta correta

Which Thread constructor accepts a method with parameters?

Which Thread constructor accepts a method with parameters?

Selecione a resposta correta

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 3. Capítulo 2
some-alt