Hello!
Is there an overview of what should be taken when and, above all, how?
I am looking for a good overview with an explanation of why?
Thread
Task.Run
TaskFactory.Run
Await - Async Sample is good async
Thank you in advance for good examples and solutions.
When do I use a new function in Event, when do I use the lambda notation? Are there rules about when what and how?
Serial.Receive += newFunction;
Serial.Receive += (req) => { make something };
There are so many possibilities and variants that I no longer know what to take and when.