C# 7.0 – Discards
Sometimes there is a need to ignore a result of a method. It’s straightforward if that’s a return value – just don’t assign it. But what should be done in other cases?
Sometimes there is a need to ignore a result of a method. It’s straightforward if that’s a return value – just don’t assign it. But what should be done in other cases?
The concept of patterns was introduced in C# 7.0. The idea is to check if an object reflects a specified shape.