makeratplay / VirtualMeetingMonitor

C# app to monitor UDP traffic to detect a Zoom, WebEx, or MS Teams Meeting then automatically turn on an On Air sign I built.
http://www.makeratplay.com/projects/43
19 stars 7 forks source link

Use of depricated asynchronous pattern #3

Open JesHansen opened 3 years ago

JesHansen commented 3 years ago

The use of the old asynchronous BeginX/EndX pattern is best avoided. Especially in code meant to teach new or junior programmers. Instead it would be better to teach how to use a Task-based pattern instead, as that is what is going to be used in production code.

Would you be interested in a proof-of-concept implementation of this approach for you to look at?

makeratplay commented 3 years ago

Sure. I am always open to learn new and better ways to code something.