Am I crazy or is there a way, in C#, to set a variable to a switch's result? Something like:
var a = switch(b)
{
case c:
d;
case e:
f;
default:
g;
};
Is it possible in any other language? I just thought it was, but I'm not getting anything to compile. Thanks in advance.
If you weren't especially concerned about efficiency, it would be pretty easy to cook up a little class using generics that allowed you to use a "fluent" chain of method calls such as this:
or, if you prefer, the more compact
If this interests you, I'd be happy to cook up an example
I wanted the same thing because I use Ruby quite a lot, and that allows you to do that kind of thing. So I created a nuget package called FluentSwitch.
You can do it since c# 8.0, it is called "Switch expressions":
a
will contain value 4c
ande
should be constants as per switch syntax,_
corresponds to the default switch branchswitch
in C# is a statement that doesn't have a "return" value. If you're interested in having a "switch" expression, you can find the little fluent class that I wrote here in order to have code like this:You could go one step further and generalize this even more with function parameters to the
Then
methods.This is not possible in C#.
The closest would be to either move this into a method, or do the assignment in each case individual, ie:
Yes. For example, most functional languages support something similar. For example, F#'s pattern matching provides a (much more powerful) version of this.
From C# 8 onwards:
Yes, switch expressions were introduced in C# 8. In terms of syntax, the example would be:
... where
c
ande
would have to be valid patterns to match againstb
.Before C# 8:
No,
switch
is a statement rather than an expression which can be evaluated.Of course, you can extract it into another method:
Alternatively, you could use a
Dictionary
if it's just a case of simple, constant mappings. If you can give us more information about what you're trying to achieve, we can probably help you work out the most idiomatic way of getting there.