Programming
Standalone C# Discards For Argument Null Checking
Microsoft introduced discards in C# 7.0 These are variables that are intentionally unused in code, commonly used when you have to provide a variable but you never actually need it. One of my go-to...