C# Tip: Raise synchronous events using Timer (and not a While loop)
When you need to fire synchronous events, don’t use a while(true) loop: use a Timer! Continue readingC# Tip: use the @ prefix when a name is reserved
C#, as every other language, has several reserved keywords. Did you know that you can use them if you use the@
prefix?
Continue reading