* "Robert Conde" <conde@ai-solutions.com> scripsit:
> I'm calling my ui from a thread which is different from the ui thread.
> Accordingly I need to use the BeginInvoke or Invoke functions. Now I'd
[quoted text clipped - 4 lines]
> result and call EndInvoke somehow. It seems to be working without calling
> EndInvoke, but I don't want it creeping up on me later.
Currently, you don't need to call 'EndInvoke', but maybe there will be
problems/leaks if you don't call it in future versions of .NET.

Signature
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
<URL:http://dotnet.mvps.org/dotnet/faqs/
Jon Skeet [C# MVP] - 19 Jul 2004 17:58 GMT
> * "Robert Conde" <conde@ai-solutions.com> scripsit:
> > I'm calling my ui from a thread which is different from the ui thread.
[quoted text clipped - 8 lines]
> Currently, you don't need to call 'EndInvoke', but maybe there will be
> problems/leaks if you don't call it in future versions of .NET.
Not for UI calls - I believe the WinForms team has basically guaranteed
that EndInvoke isn't required for UI calls. For all other async
Begin/EndXXX pairs, you should call EndXXX.

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too