var variable = TryParse<double>("123.4") switch
{
(true, > 100) => "greater than 100",
(true, _) => "valid",
(false, _) => "you suck",
};