Simplifying your MAUI Styles with StyleClass

Styles classes enables you to have multiple styles applied to a control, in simple words it allows you to apply the concept of multiple inheritance to your styles. It gives you the flexibility to avoid creating a lot of styles that will be inherited from. How we usually do it?  Imagine the scenario were we […]

Continue Reading

Using Guard Clauses in .NET

A guard clause, is a check of integrity preconditions used to avoid errors during execution. It helps you to simplify code by removing useless nested branching conditions and returning meaningful errors. To achieve it in .NET you can do it using a library or writing your own defensive code, in this article I’ll show you […]

Continue Reading
1 2 3 13