top of page

Technology Insights & Software Development News


Amexathon Kicks Off!
🚀 Innovation is in the air! Today marks the start of our exciting Amexathon - internal hackathon, where four dynamic teams have...
Feb 20, 20252 min read


Amexathon 2025
🚀 Exciting News: Amexathon 2025 is Taking Off! We're thrilled to announce our first-ever internal hackathon - Amexathon 2025 : Think...
Feb 13, 20251 min read


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
bottom of page