C# Tip: Format Interpolated Strings
Interpolated strings are those built with the$
symbol, that you can use to create strings using existing variables or properties. Did you know that you can apply custom formattings to such values?
Continue reading
Davide's Code and Architecture Notes - Postel's law for API Robustness
A system should be robust: it should be able to resist change and, well, not generate regressions. Postel’s law helps define a mindset to create robust APIs. Continue readingC# Tip: Access items from the end of the array using the ^ operator
Shorter code is often easier to read. Not always, but often. And the^
operator can make your code easier to read and less error-prone
Continue reading