Category: Uncategorized

IEnumerable vs ICollection
Uncategorized

Understanding IEnumerable vs ICollection in C#

When working with collections in C#, two interfaces are foundational: IEnumerable<T> and ICollection<T>. Knowing the difference between them is crucial for writing efficient, maintainable, and correct code. What is IEnumerable<T>? IEnumerable<T> is the most basic interface for collections in .NET. It allows forward-only iteration over a sequence of items. Key points: Example: Notice: IEnumerable doesn’t […]

Sthembiso Mashiyane 
Uncategorized

Blazor MAUI for Cross-Platform App Development: A POS Developer’s Perspective

Choosing the right framework for cross-platform app development is never easy — especially when building something as real-time and hardware-integrated as a Point of Sale (POS) device. As someone currently developing a custom POS system, I’ve spent the past couple of months working extensively with Blazor MAUI — and I have plenty of insights to […]

Sthembiso Mashiyane