why that?
System.PlatformNotSupportedException: Operation is not supported on this platform.
at System.Func`2.BeginInvoke(T arg, AsyncCallback callback, Object object)
8 Replies
because BeginInvoke is not supported anymore
why they did that? it's good and useful
no, it is using deprecated technology, which is why it was removed in new versions of .NET
you should use
Task.Run
instead, it is a better replacement and it integrates with await
which is the reccomended patternok, if it is deprecated ,why they still found, and i can reach to it
because the .NET assembly format requires that it exists
Same reason non-generic collections and
WebClient
are still a thing
Backwards compatibility to a faultu mean no way to use it?
No, no way to use it