views:

73

answers:

2

C#

What type of winforms or controls implement "Invoke/BeginInvoke" functions

+4  A: 

Control itself implements ISynchronizeInvoke, which is where the Invoke/BeginInvoke methods come from.

Jon Skeet
+1  A: 

Anything that inherits Control. Form and UserControl are the two classes where you'll use them the most.

Aidan Ryan