Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

void switch expression #5951

Closed
natilivni opened this issue Mar 24, 2022 · 2 comments
Closed

void switch expression #5951

natilivni opened this issue Mar 24, 2022 · 2 comments

Comments

@natilivni
Copy link

The switch expression syntax introduced in c# 8 is fantastic for writing readable and compact switch statements which are not unnecessarily verbose.

However, one limitation of this syntax is the assumption that the statement must return a value.

I propose that we allow the switch expression to call void methods as follows:

i switch {
  1 => method1(), 
  2 => method2(), 
  _ => method3()
};
@ufcpp
Copy link

ufcpp commented Mar 24, 2022

#2181

@333fred
Copy link
Member

333fred commented Mar 24, 2022

Duplicate of #2632.

@333fred 333fred closed this as completed Mar 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants