TIL capitalising letters with regex
Fixing a code analysis auto-fix which made acronyms less clear
Jun 3, 20262 min read

Search for a command to run...
Articles tagged with #til
Fixing a code analysis auto-fix which made acronyms less clear

I was recently working with an EF Core entity which contained a C# Point property representing a geolocation. This was stored in a single column in a SQL Server database. (I think this uses NetTopolog

I recently hit an interesting gotcha with some code in a C# codebase i was working with. It baffled me because I didn’t understand how this could compile. MyClass.Foo has a getter but no setter, yet an instantiated MyClass can have the Foo property s...
