Question
Check if value tuple is default
How to check if a System.ValueTuple is default? Rough example:
(string foo, string bar) MyMethod() => default;
// Later
var result = MyMethod();
if (result is default){ } // doesnt work
I can return a default value in MyMethod
using default
syntax of C# 7.2. I cannot check for default case back? These are what I tried:
result is default
result == default
result is default(string, string)
result == default(string, string)
46 26457
46