P
PL
I want to translate this VB statement to C#:
Me.Invoke(CType(AddressOf Me.AddTextToTextBox, MethodInvoker))
What is the equivalent in C#?
Me.Invoke(CType(AddressOf Me.AddTextToTextBox, MethodInvoker))
What is the equivalent in C#?