Systems | Development | Analytics | API | Testing

November 2023

C# Sleep: A Detailed Guide

Ah, the sweet allure of a well-rested application. No, I’m not talking about kicking back and letting your software take a nap. I’m diving deep into C# and its Sleep method. Have you ever wondered, “Is there a Sleep function in C#?” We’ve got answers. By the end of this post, you’ll know all about the ins, outs and potential pitfalls of using Sleep in C#. So, grab your favorite beverage, and let’s get into it!

Log4net for .NET Logging: The Only Tutorial and 14 Tips You Need to Know

If you’ve been writing code for any reasonable amount of time, then it’s virtually impossible that you haven’t handled logging in any way, since it’s one of the most essential parts of modern, “real life” app development. If you’re a.NET developer, then you’ve probably used some of the many famous logging frameworks available for use on this platform. Today’s post will cover one of these frameworks: log4net.

C# Delegates: Definition, Types & Examples

The C# delegate is an essential “construct” in the C# programming language. Delegates are essential for event handling, LINQ queries, asynchronous programming and more. And you can, of course, make use of delegates to make your code simpler and more concise. This post offers you a guide to this incredibly useful tool in C#. By the end of the post, you’ll have learned: Let’s get started.