top of page

Technology Insights & Software Development News


C# tips and tricks – part 5
yield in C# The yield keyword in C# simplifies the creation of iterators. It allows you to return elements one by one from a collection without having to manually manage the internal state of iteration or build complex data structures. How does yield work? When a method uses yield return, it pauses execution and returns an element in the sequence. The next time the method is iterated, the execution resumes from where it was paused, creating an efficient mechanism for producin
Nov 7, 20241 min read


C# tips and tricks – part 4
Primary Constructors in C# C# is continuously evolving to offer more convenient ways to write clean and readable code. One of the upcoming features planned for future versions is the primary constructor , which aims to simplify object initialization by allowing class members to be initialized directly within the class definition itself. What are Primary Constructors? A primary constructor is a form of constructor that is defined at the class level, instead of being defined in
Oct 17, 20242 min read


The Guide to Becoming a Microsoft-Certified Developer: How to Pass Your AZ-204 Exam
Have you ever wondered if an Azure Developer associate-level certificate ( AZ-204 ) is worth obtaining or perhaps you have already...
Oct 10, 20243 min read
bottom of page