How to make an empty default case in switch expression in C#?
I am talking about this language feature.
Here is what I am trying:
using System;
public class Program
{
public static void Main()
{
int i = -2;
var ignore = i switch {
-1 => Console.WriteLine("foo"),
-2 => Console.WriteLine("bar"),
_ => ,
};
}
}
Also, I tried without the comma:
using System;
public class Program
{
public static void Main()
{
int i = -2;
var ignore = i switch {
-1 => Console.WriteLine("foo"),
-2 => Console.WriteLine("bar"),
_ =>
};
}
}
Still it does not want to compile. So, I tried to put an empty function:
using System;
public class Program
{
public static void Main()
{
int i = -2;
var ignore = i switch {
-1 => Console.WriteLine("foo"),
-2 => Console.WriteLine("bar"),
_ => {}
};
}
}
And it still does not work.
You are studing expressions
switch
expressions to be exact. All expressions must return a value; whileConsole.WriteLine
being of typevoid
returns nothing.To fiddle with
switch
expressions you can tryOr putting expression into
WriteLine
: